From 98ed84ba5cbd8888e8de4a439b8f858147064702 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Mon, 15 Jun 2020 11:00:46 -0300 Subject: [PATCH] [CHORE] Update react-navigation to v5 (#2154) * react-navigation v5 installed * compiling * Outside working * InsideStack compiling * Switch stack * Starting room * RoomView header * SafeAreaView * Slide from right stack animation * stash * Fix params * Create channel * inapp notification * Custom status * Add server working * Refactor appStart * Attachment * in-app notification * AuthLoadingView * Remove compat * Navigation * Outside animations * Fix new server icon * block modal * AttachmentView header * Remove unnecessary code * SelectedUsersView header * StatusView * CreateDiscussionView * RoomInfoView * RoomInfoEditView style * RoomMembersView * RoomsListView header * RoomView header * Share extension * getParam * Focus/blur * Trying to fix inapp * Lint * Simpler app container * Update libs * Revert "Simpler app container" This reverts commit 1e49d80bb49481c34f415831b9da5e9d53e66057. * Load messages faster * Fix safearea on ReactionsModal * Update safe area to v3 * lint * Fix transition * stash - drawer replace working * stash - modal nav * RoomActionsView as tablet modal * RoomStack * Stop showing RoomView header when there's no room * Custom Header and different navigation based on stack * Refactor setHeader * MasterDetailContext * RoomView header * Fix isMasterDetail rule * KeyCommands kind of working * Create channel on tablet * RoomView sCU * Remove withSplit * Settings opening as modal * Settings * StatusView headerLeft * Admin panel * TwoFactor style * DirectoryView * ServerDropdown and SortDropdown animations * ThreadMessagesView * Navigate to empty RoomView on server switch when in master detail * ProfileView header * Fix navigation issues * Nav to any room info on tablet * Room info * Refactoring * Fix rooms search * Roomslist commands * SearchMessagesView close modal * Key commands * Fix undefined subscription * Disallow navigate to focused room * isFocused state on RoomsListView * Blur text inputs when focus is lost * Replace animation * Default nav theme * Refactoring * Always open Attachment with close modal button * ModalContainer backdrop following themes * Screen tracking * Refactor get active route for in-app notification * Only mark room as focused when in master detail layout * Lint * Open modals as fade from bottom on Android * typo * Fixing tests * Fix in-app update * Fixing goRoom issues * Refactor stack names * Fix unreadsCount * Fix stack * Fix header animation * Refactor ShareNavigation * Refactor navigation theme * Make sure title is set * Fix create discussion navigation * Remove unused variable * Create discussions from actions fixed * Layout animation * Screen lock on share extension * Unnecessary change * Admin border * Set header after state callback * Fix key commands on outside stack * Fix back button pressed * Remove layout animations from Android * Tweak animations on Android * Disable swipe gesture to open drawer * Fix current item on RoomsListView * Fix add server * Fix drawer * Fix broadcast * LayoutAnimation instead of Transitions * Fix onboarding back press * Fix assorted tests * Create discussion fix * RoomInfoView header * Drawer active item --- app/AppContainer.js | 117 + app/actions/actionsTypes.js | 2 +- app/actions/app.js | 41 + app/actions/index.js | 41 - app/actions/server.js | 5 +- app/commands.js | 13 +- app/constants/tablet.js | 3 +- app/constants/types.js | 4 - app/containers/FormContainer.js | 4 +- app/containers/Header/index.js | 40 + app/containers/LoginServices.js | 3 +- app/containers/MessageActions.js | 23 +- app/containers/MessageBox/Recording.js | 4 +- app/containers/MessageBox/UploadModal.js | 20 +- app/containers/MessageBox/index.js | 27 +- app/containers/ReactionsModal.js | 8 +- app/containers/SafeAreaView.js | 34 + app/containers/StatusBar.js | 3 +- app/containers/TwoFactor/index.js | 14 +- app/containers/TwoFactor/styles.js | 3 + app/containers/message/Audio.js | 16 +- app/containers/message/Image.js | 22 +- app/containers/message/Reply.js | 13 +- app/containers/message/Urls.js | 26 +- app/containers/message/Video.js | 5 +- app/index.js | 649 +- app/lib/ModalNavigation.js | 21 - app/lib/Navigation.js | 29 +- app/lib/ShareNavigation.js | 22 +- app/lib/methods/loadMessagesForRoom.js | 8 +- app/notifications/inApp/index.js | 46 +- app/presentation/RoomItem/Touchable.js | 7 +- app/presentation/RoomItem/index.js | 41 +- app/reducers/app.js | 10 +- app/reducers/room.js | 2 +- app/reducers/server.js | 9 +- app/sagas/createChannel.js | 10 +- app/sagas/deepLinking.js | 17 +- app/sagas/init.js | 20 +- app/sagas/login.js | 22 +- app/sagas/messages.js | 30 +- app/sagas/room.js | 21 +- app/sagas/selectServer.js | 6 +- app/sagas/state.js | 5 +- app/share.js | 192 +- app/split.js | 19 - app/stacks/InsideStack.js | 335 + .../MasterDetailStack/ModalContainer.js | 34 + app/stacks/MasterDetailStack/index.js | 307 + app/stacks/OutsideStack.js | 101 + app/tablet.js | 222 - app/utils/deviceInfo.js | 9 - app/utils/goRoom.js | 34 +- app/utils/log.js | 5 + app/utils/navigation.js | 50 - app/utils/navigation/animations.js | 96 + app/utils/navigation/conditional.js | 30 + app/utils/navigation/index.js | 59 + app/views/AdminPanelView/index.js | 12 +- app/views/AttachmentView.js | 43 +- app/views/AuthLoadingView.js | 38 +- app/views/AuthenticationWebView.js | 39 +- app/views/AutoTranslateView/index.js | 24 +- app/views/CreateChannelView.js | 42 +- app/views/CreateDiscussionView/index.js | 73 +- app/views/DefaultBrowserView.js | 16 +- app/views/DirectoryView/index.js | 39 +- app/views/DirectoryView/styles.js | 3 - app/views/ForgotPasswordView.js | 11 +- app/views/ForwardLivechatView.js | 7 +- app/views/InviteUsersEditView/index.js | 15 +- app/views/InviteUsersEditView/styles.js | 3 - app/views/InviteUsersView/index.js | 15 +- app/views/InviteUsersView/styles.js | 3 - app/views/JitsiMeetView.js | 9 +- app/views/LanguageView/index.js | 24 +- app/views/LegalView.js | 24 +- app/views/LivechatEditView.js | 15 +- app/views/LoginView.js | 17 +- app/views/MarkdownTableView.js | 14 +- app/views/MessagesView/index.js | 36 +- app/views/ModalBlockView.js | 89 +- app/views/NewMessageView.js | 31 +- app/views/NewServerView.js | 55 +- .../NotificationPreferencesView/index.js | 18 +- app/views/OnboardingView/index.js | 32 +- app/views/PickerView.js | 19 +- app/views/ProfileView/index.js | 27 +- app/views/ReadReceiptView/index.js | 20 +- app/views/ReadReceiptView/styles.js | 3 - app/views/RegisterView.js | 17 +- app/views/RoomActionsView/index.js | 21 +- app/views/RoomInfoEditView/index.js | 34 +- app/views/RoomInfoView/index.js | 142 +- app/views/RoomMembersView/index.js | 73 +- app/views/RoomView/Header/Header.js | 8 +- app/views/RoomView/Header/Icon.js | 2 +- app/views/RoomView/Header/RightButtons.js | 14 +- app/views/RoomView/Header/RoomHeaderLeft.js | 24 +- app/views/RoomView/List.js | 31 +- app/views/RoomView/ReactionPicker.js | 19 +- app/views/RoomView/index.js | 262 +- app/views/RoomsListView/ServerDropdown.js | 61 +- app/views/RoomsListView/SortDropdown/index.js | 22 +- app/views/RoomsListView/index.js | 276 +- app/views/ScreenLockConfigView.js | 16 +- app/views/SearchMessagesView/index.js | 23 +- app/views/SearchMessagesView/styles.js | 3 - app/views/SelectServerView.js | 26 +- app/views/SelectedUsersView.js | 63 +- app/views/SetUsernameView.js | 17 +- app/views/SettingsView/index.js | 41 +- app/views/ShareListView/index.js | 135 +- app/views/ShareView/index.js | 70 +- app/views/SidebarView/index.js | 129 +- app/views/StatusView.js | 66 +- app/views/Styles.js | 22 +- app/views/ThemeView.js | 16 +- app/views/ThreadMessagesView/index.js | 44 +- app/views/VisitorNavigationView.js | 6 +- app/views/WithoutServersView.js | 9 +- app/views/WorkspaceView/index.js | 8 +- e2e/helpers/app.js | 2 +- e2e/tests/assorted/01-changeserver.spec.js | 2 +- e2e/tests/assorted/02-broadcast.spec.js | 2 + e2e/tests/assorted/04-setting.spec.js | 1 + e2e/tests/room/01-createroom.spec.js | 110 +- e2e/tests/room/02-room.spec.js | 181 +- e2e/tests/room/03-roomactions.spec.js | 251 +- e2e/tests/room/04-roominfo.spec.js | 100 +- ios/Podfile.lock | 24 +- .../Private/RNCMaskedView/RNCMaskedView.h | 1 + .../RNCMaskedView/RNCMaskedViewManager.h | 1 + .../RCTView+SafeAreaCompat.h | 1 + .../RNCSafeAreaProvider.h | 1 + .../RNCSafeAreaProviderManager.h | 1 + .../RNCSafeAreaShadowView.h | 1 + .../RNCSafeAreaView.h | 1 + .../RNCSafeAreaViewEdges.h | 1 + .../RNCSafeAreaViewLocalData.h | 1 + .../RNCSafeAreaViewManager.h | 1 + .../RNCSafeAreaViewMode.h | 1 + .../Public/RNCMaskedView/RNCMaskedView.h | 1 + .../RNCMaskedView/RNCMaskedViewManager.h | 1 + .../RCTView+SafeAreaCompat.h | 1 + .../RNCSafeAreaProvider.h | 1 + .../RNCSafeAreaProviderManager.h | 1 + .../RNCSafeAreaShadowView.h | 1 + .../RNCSafeAreaView.h | 1 + .../RNCSafeAreaViewEdges.h | 1 + .../RNCSafeAreaViewLocalData.h | 1 + .../RNCSafeAreaViewManager.h | 1 + .../RNCSafeAreaViewMode.h | 1 + .../RNCAsyncStorage.podspec.json | 6 +- .../Local Podspecs/RNCMaskedView.podspec.json | 22 + .../RNImageCropPicker.podspec.json | 4 +- ...eact-native-safe-area-context.podspec.json | 22 + ios/Pods/Manifest.lock | 24 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 18342 ++++++++-------- ...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 +- .../RNCMaskedView/RNCMaskedView-dummy.m | 5 + .../RNCMaskedView/RNCMaskedView-prefix.pch | 12 + .../RNCMaskedView/RNCMaskedView.xcconfig | 12 + ...QBImagePicker-RNImageCropPicker-Info.plist | 2 +- .../react-native-safe-area-context-dummy.m | 5 + .../react-native-safe-area-context-prefix.pch | 12 + .../react-native-safe-area-context.xcconfig | 12 + ios/RocketChatRN.xcodeproj/project.pbxproj | 4 +- package.json | 14 +- storybook/stories/RoomViewHeader.js | 2 +- yarn.lock | 4417 ++-- 178 files changed, 14168 insertions(+), 15055 deletions(-) create mode 100644 app/AppContainer.js create mode 100644 app/actions/app.js delete mode 100644 app/actions/index.js delete mode 100644 app/constants/types.js create mode 100644 app/containers/Header/index.js create mode 100644 app/containers/SafeAreaView.js delete mode 100644 app/lib/ModalNavigation.js delete mode 100644 app/split.js create mode 100644 app/stacks/InsideStack.js create mode 100644 app/stacks/MasterDetailStack/ModalContainer.js create mode 100644 app/stacks/MasterDetailStack/index.js create mode 100644 app/stacks/OutsideStack.js delete mode 100644 app/tablet.js delete mode 100644 app/utils/navigation.js create mode 100644 app/utils/navigation/animations.js create mode 100644 app/utils/navigation/conditional.js create mode 100644 app/utils/navigation/index.js create mode 120000 ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedView.h create mode 120000 ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedViewManager.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RCTView+SafeAreaCompat.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProvider.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProviderManager.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaShadowView.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewEdges.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewLocalData.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewMode.h create mode 120000 ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedView.h create mode 120000 ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedViewManager.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RCTView+SafeAreaCompat.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProvider.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProviderManager.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaShadowView.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewEdges.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewLocalData.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewMode.h create mode 100644 ios/Pods/Local Podspecs/RNCMaskedView.podspec.json create mode 100644 ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json create mode 100644 ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-dummy.m create mode 100644 ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch create mode 100644 ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView.xcconfig create mode 100644 ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m create mode 100644 ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch create mode 100644 ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig diff --git a/app/AppContainer.js b/app/AppContainer.js new file mode 100644 index 000000000..1d4a89234 --- /dev/null +++ b/app/AppContainer.js @@ -0,0 +1,117 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { NavigationContainer } from '@react-navigation/native'; +import { createStackNavigator } from '@react-navigation/stack'; +import { connect } from 'react-redux'; +import { SafeAreaProvider, initialWindowMetrics } from 'react-native-safe-area-context'; + +import Navigation from './lib/Navigation'; +import { defaultHeader, getActiveRouteName, navigationTheme } from './utils/navigation'; +import { + ROOT_LOADING, ROOT_OUTSIDE, ROOT_NEW_SERVER, ROOT_INSIDE, ROOT_SET_USERNAME, ROOT_BACKGROUND +} from './actions/app'; + +// Stacks +import AuthLoadingView from './views/AuthLoadingView'; + +// SetUsername Stack +import SetUsernameView from './views/SetUsernameView'; + +import OutsideStack from './stacks/OutsideStack'; +import InsideStack from './stacks/InsideStack'; +import MasterDetailStack from './stacks/MasterDetailStack'; +import { ThemeContext } from './theme'; +import { setCurrentScreen } from './utils/log'; + +// SetUsernameStack +const SetUsername = createStackNavigator(); +const SetUsernameStack = () => ( + + + +); + +// App +const Stack = createStackNavigator(); +const App = React.memo(({ root, isMasterDetail }) => { + if (!root) { + return null; + } + + const { theme } = React.useContext(ThemeContext); + const navTheme = navigationTheme(theme); + + React.useEffect(() => { + const state = Navigation.navigationRef.current.getRootState(); + const currentRouteName = getActiveRouteName(state); + Navigation.routeNameRef.current = currentRouteName; + setCurrentScreen(currentRouteName); + }, []); + + return ( + + { + const previousRouteName = Navigation.routeNameRef.current; + const currentRouteName = getActiveRouteName(state); + if (previousRouteName !== currentRouteName) { + setCurrentScreen(currentRouteName); + } + Navigation.routeNameRef.current = currentRouteName; + }} + > + + <> + {root === ROOT_LOADING || root === ROOT_BACKGROUND ? ( + + ) : null} + {root === ROOT_OUTSIDE || root === ROOT_NEW_SERVER ? ( + + ) : null} + {root === ROOT_INSIDE && isMasterDetail ? ( + + ) : null} + {root === ROOT_INSIDE && !isMasterDetail ? ( + + ) : null} + {root === ROOT_SET_USERNAME ? ( + + ) : null} + + + + + ); +}); +const mapStateToProps = state => ({ + root: state.app.root, + isMasterDetail: state.app.isMasterDetail +}); + +App.propTypes = { + root: PropTypes.string, + isMasterDetail: PropTypes.bool +}; + +const AppContainer = connect(mapStateToProps)(App); +export default AppContainer; diff --git a/app/actions/actionsTypes.js b/app/actions/actionsTypes.js index 9505ae373..78bfa4176 100644 --- a/app/actions/actionsTypes.js +++ b/app/actions/actionsTypes.js @@ -33,7 +33,7 @@ export const ROOMS = createRequestTypes('ROOMS', [ 'CLOSE_SEARCH_HEADER' ]); export const ROOM = createRequestTypes('ROOM', ['SUBSCRIBE', 'UNSUBSCRIBE', 'LEAVE', 'DELETE', 'REMOVED', 'CLOSE', 'FORWARD', 'USER_TYPING']); -export const APP = createRequestTypes('APP', ['START', 'READY', 'INIT', 'INIT_LOCAL_SETTINGS']); +export const APP = createRequestTypes('APP', ['START', 'READY', 'INIT', 'INIT_LOCAL_SETTINGS', 'SET_MASTER_DETAIL']); export const MESSAGES = createRequestTypes('MESSAGES', ['REPLY_BROADCAST']); export const CREATE_CHANNEL = createRequestTypes('CREATE_CHANNEL', [...defaultTypes]); export const CREATE_DISCUSSION = createRequestTypes('CREATE_DISCUSSION', [...defaultTypes]); diff --git a/app/actions/app.js b/app/actions/app.js new file mode 100644 index 000000000..f39099d37 --- /dev/null +++ b/app/actions/app.js @@ -0,0 +1,41 @@ +import { APP } from './actionsTypes'; + +export const ROOT_OUTSIDE = 'outside'; +export const ROOT_INSIDE = 'inside'; +export const ROOT_LOADING = 'loading'; +export const ROOT_NEW_SERVER = 'newServer'; +export const ROOT_SET_USERNAME = 'setUsername'; +export const ROOT_BACKGROUND = 'background'; + +export function appStart({ root, ...args }) { + return { + type: APP.START, + root, + ...args + }; +} + +export function appReady() { + return { + type: APP.READY + }; +} + +export function appInit() { + return { + type: APP.INIT + }; +} + +export function appInitLocalSettings() { + return { + type: APP.INIT_LOCAL_SETTINGS + }; +} + +export function setMasterDetail(isMasterDetail) { + return { + type: APP.SET_MASTER_DETAIL, + isMasterDetail + }; +} diff --git a/app/actions/index.js b/app/actions/index.js deleted file mode 100644 index 9527cac88..000000000 --- a/app/actions/index.js +++ /dev/null @@ -1,41 +0,0 @@ -import * as types from '../constants/types'; -import { APP } from './actionsTypes'; - -export function appStart(root, text) { - return { - type: APP.START, - root, - text - }; -} - -export function appReady() { - return { - type: APP.READY - }; -} - -export function appInit() { - return { - type: APP.INIT - }; -} - -export function appInitLocalSettings() { - return { - type: APP.INIT_LOCAL_SETTINGS - }; -} - -export function setCurrentServer(server) { - return { - type: types.SET_CURRENT_SERVER, - payload: server - }; -} - -export function login() { - return { - type: 'LOGIN' - }; -} diff --git a/app/actions/server.js b/app/actions/server.js index a3356d89a..8a50fc4dd 100644 --- a/app/actions/server.js +++ b/app/actions/server.js @@ -44,9 +44,10 @@ export function serverFailure(err) { }; } -export function serverInitAdd() { +export function serverInitAdd(previousServer) { return { - type: SERVER.INIT_ADD + type: SERVER.INIT_ADD, + previousServer }; } diff --git a/app/commands.js b/app/commands.js index 5c0ffd599..c0f4c5575 100644 --- a/app/commands.js +++ b/app/commands.js @@ -1,5 +1,5 @@ /* eslint-disable no-bitwise */ -import { constants } from 'react-native-keycommands'; +import KeyCommands, { constants } from 'react-native-keycommands'; import I18n from './i18n'; @@ -17,7 +17,7 @@ const KEY_ADD_SERVER = __DEV__ ? 'l' : 'n'; const KEY_SEND_MESSAGE = '\r'; const KEY_SELECT = '123456789'; -export const defaultCommands = [ +const keyCommands = [ { // Focus messageBox input: KEY_TYPING, @@ -29,10 +29,7 @@ export const defaultCommands = [ input: KEY_SEND_MESSAGE, modifierFlags: 0, discoverabilityTitle: I18n.t('Send') - } -]; - -export const keyCommands = [ + }, { // Open Preferences Modal input: KEY_PREFERENCES, @@ -139,6 +136,10 @@ export const keyCommands = [ }))) ]; +export const setKeyCommands = () => KeyCommands.setKeyCommands(keyCommands); + +export const deleteKeyCommands = () => KeyCommands.deleteKeyCommands(keyCommands); + export const KEY_COMMAND = 'KEY_COMMAND'; export const commandHandle = (event, key, flags = []) => { diff --git a/app/constants/tablet.js b/app/constants/tablet.js index 93f53d846..ab126d5c1 100644 --- a/app/constants/tablet.js +++ b/app/constants/tablet.js @@ -1,4 +1,3 @@ export const MAX_SIDEBAR_WIDTH = 321; -export const MAX_CONTENT_WIDTH = '90%'; export const MAX_SCREEN_CONTENT_WIDTH = '50%'; -export const MIN_WIDTH_SPLIT_LAYOUT = 700; +export const MIN_WIDTH_MASTER_DETAIL_LAYOUT = 700; diff --git a/app/constants/types.js b/app/constants/types.js deleted file mode 100644 index d6bc3731d..000000000 --- a/app/constants/types.js +++ /dev/null @@ -1,4 +0,0 @@ -export const SET_CURRENT_SERVER = 'SET_CURRENT_SERVER'; -export const SET_CUSTOM_EMOJIS = 'SET_CUSTOM_EMOJIS'; -export const ADD_SETTINGS = 'ADD_SETTINGS'; -export const CLEAR_SETTINGS = 'CLEAR_SETTINGS'; diff --git a/app/containers/FormContainer.js b/app/containers/FormContainer.js index 763e98df6..19b5c189f 100644 --- a/app/containers/FormContainer.js +++ b/app/containers/FormContainer.js @@ -1,7 +1,6 @@ import React from 'react'; import { ScrollView, StyleSheet, View } from 'react-native'; import PropTypes from 'prop-types'; -import { SafeAreaView } from 'react-navigation'; import { themes } from '../constants/colors'; import sharedStyles from '../views/Styles'; @@ -10,6 +9,7 @@ import KeyboardView from '../presentation/KeyboardView'; import StatusBar from './StatusBar'; import AppVersion from './AppVersion'; import { isTablet } from '../utils/deviceInfo'; +import SafeAreaView from './SafeAreaView'; const styles = StyleSheet.create({ scrollView: { @@ -31,7 +31,7 @@ const FormContainer = ({ children, theme, testID }) => ( > - + {children} diff --git a/app/containers/Header/index.js b/app/containers/Header/index.js new file mode 100644 index 000000000..2b61c79dc --- /dev/null +++ b/app/containers/Header/index.js @@ -0,0 +1,40 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { SafeAreaView } from 'react-native-safe-area-context'; +import { View, StyleSheet } from 'react-native'; +import { themes } from '../../constants/colors'; +import { themedHeader } from '../../utils/navigation'; +import { isIOS } from '../../utils/deviceInfo'; + +// Get from https://github.com/react-navigation/react-navigation/blob/master/packages/stack/src/views/Header/HeaderSegment.tsx#L69 +export const headerHeight = isIOS ? 44 : 56; + +const styles = StyleSheet.create({ + container: { + height: headerHeight, + flexDirection: 'row', + justifyContent: 'center', + elevation: 4 + } +}); + +const Header = ({ + theme, headerLeft, headerTitle, headerRight +}) => ( + + + {headerLeft ? headerLeft() : null} + {headerTitle ? headerTitle() : null} + {headerRight ? headerRight() : null} + + +); + +Header.propTypes = { + theme: PropTypes.string, + headerLeft: PropTypes.element, + headerTitle: PropTypes.element, + headerRight: PropTypes.element +}; + +export default Header; diff --git a/app/containers/LoginServices.js b/app/containers/LoginServices.js index 2cf06d327..b56929033 100644 --- a/app/containers/LoginServices.js +++ b/app/containers/LoginServices.js @@ -5,7 +5,6 @@ import { import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; -import { withNavigation } from 'react-navigation'; import { withTheme } from '../theme'; import sharedStyles from '../views/Styles'; @@ -361,4 +360,4 @@ const mapDispatchToProps = dispatch => ({ loginRequest: params => dispatch(loginRequestAction(params)) }); -export default connect(mapStateToProps, mapDispatchToProps)(withTheme(withNavigation(LoginServices))); +export default connect(mapStateToProps, mapDispatchToProps)(withTheme(LoginServices)); diff --git a/app/containers/MessageActions.js b/app/containers/MessageActions.js index 42aa92efa..4e8b126df 100644 --- a/app/containers/MessageActions.js +++ b/app/containers/MessageActions.js @@ -32,7 +32,8 @@ class MessageActions extends React.Component { Message_AllowEditing_BlockEditInMinutes: PropTypes.number, Message_AllowPinning: PropTypes.bool, Message_AllowStarring: PropTypes.bool, - Message_Read_Receipt_Store_Users: PropTypes.bool + Message_Read_Receipt_Store_Users: PropTypes.bool, + isMasterDetail: PropTypes.bool }; constructor(props) { @@ -254,7 +255,7 @@ class MessageActions extends React.Component { } handleUnread = async() => { - const { message, room } = this.props; + const { message, room, isMasterDetail } = this.props; const { id: messageId, ts } = message; const { rid } = room; try { @@ -270,7 +271,11 @@ class MessageActions extends React.Component { // do nothing } }); - Navigation.navigate('RoomsListView'); + if (isMasterDetail) { + Navigation.replace('RoomView'); + } else { + Navigation.navigate('RoomsListView'); + } } } catch (e) { log(e); @@ -376,8 +381,13 @@ class MessageActions extends React.Component { } handleCreateDiscussion = () => { - const { message, room: channel } = this.props; - Navigation.navigate('CreateDiscussionView', { message, channel }); + const { message, room: channel, isMasterDetail } = this.props; + const params = { message, channel, showCloseModal: true }; + if (isMasterDetail) { + Navigation.navigate('ModalStackNavigator', { screen: 'CreateDiscussionView', params }); + } else { + Navigation.navigate('NewMessageStackNavigator', { screen: 'CreateDiscussionView', params }); + } } handleActionPress = (actionIndex) => { @@ -450,7 +460,8 @@ const mapStateToProps = state => ({ Message_AllowEditing_BlockEditInMinutes: state.settings.Message_AllowEditing_BlockEditInMinutes, Message_AllowPinning: state.settings.Message_AllowPinning, Message_AllowStarring: state.settings.Message_AllowStarring, - Message_Read_Receipt_Store_Users: state.settings.Message_Read_Receipt_Store_Users + Message_Read_Receipt_Store_Users: state.settings.Message_Read_Receipt_Store_Users, + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(MessageActions); diff --git a/app/containers/MessageBox/Recording.js b/app/containers/MessageBox/Recording.js index 8b01f1cb7..7611cdc98 100644 --- a/app/containers/MessageBox/Recording.js +++ b/app/containers/MessageBox/Recording.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, SafeAreaView, PermissionsAndroid, Text + View, PermissionsAndroid, Text } from 'react-native'; import { AudioRecorder, AudioUtils } from 'react-native-audio'; import { BorderlessButton } from 'react-native-gesture-handler'; @@ -13,6 +13,7 @@ import I18n from '../../i18n'; import { isIOS, isAndroid } from '../../utils/deviceInfo'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; +import SafeAreaView from '../SafeAreaView'; export const _formatTime = function(seconds) { let minutes = Math.floor(seconds / 60); @@ -134,6 +135,7 @@ export default class extends React.PureComponent { return ( ); + return (); } if (file.mime && file.mime.match(/video/)) { return ( @@ -210,7 +204,7 @@ class UploadModal extends Component { render() { const { - window: { width }, isVisible, close, split, theme + window: { width }, isVisible, close, isMasterDetail, theme } = this.props; const { name, description } = this.state; return ( @@ -225,7 +219,7 @@ class UploadModal extends Component { hideModalContentWhileAnimating avoidKeyboard > - + {I18n.t('Upload_file_question_mark')} @@ -252,4 +246,4 @@ class UploadModal extends Component { } } -export default responsive(withTheme(withSplit(UploadModal))); +export default responsive(withTheme(UploadModal)); diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 39e29dbc7..3620adfce 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -95,6 +95,7 @@ class MessageBox extends Component { typing: PropTypes.func, theme: PropTypes.string, replyCancel: PropTypes.func, + isMasterDetail: PropTypes.bool, navigation: PropTypes.object } @@ -183,11 +184,14 @@ class MessageBox extends Component { EventEmiter.addEventListener(KEY_COMMAND, this.handleCommands); } - this.didFocusListener = navigation.addListener('didFocus', () => { + this.unsubscribeFocus = navigation.addListener('focus', () => { if (this.tracking && this.tracking.resetTracking) { this.tracking.resetTracking(); } }); + this.unsubscribeBlur = navigation.addListener('blur', () => { + this.component?.blur(); + }); } UNSAFE_componentWillReceiveProps(nextProps) { @@ -268,8 +272,11 @@ class MessageBox extends Component { if (this.getSlashCommands && this.getSlashCommands.stop) { this.getSlashCommands.stop(); } - if (this.didFocusListener && this.didFocusListener.remove) { - this.didFocusListener.remove(); + if (this.unsubscribeFocus) { + this.unsubscribeFocus(); + } + if (this.unsubscribeBlur) { + this.unsubscribeBlur(); } if (isTablet) { EventEmiter.removeListener(KEY_COMMAND, this.handleCommands); @@ -592,7 +599,13 @@ class MessageBox extends Component { } createDiscussion = () => { - Navigation.navigate('CreateDiscussionView', { channel: this.room }); + const { isMasterDetail } = this.props; + const params = { channel: this.room, showCloseModal: true }; + if (isMasterDetail) { + Navigation.navigate('ModalStackNavigator', { screen: 'CreateDiscussionView', params }); + } else { + Navigation.navigate('NewMessageStackNavigator', { screen: 'CreateDiscussionView', params }); + } } showUploadModal = (file) => { @@ -875,7 +888,9 @@ class MessageBox extends Component { render() { console.count(`${ this.constructor.name }.render calls`); const { showEmojiKeyboard, file } = this.state; - const { user, baseUrl, theme } = this.props; + const { + user, baseUrl, theme, isMasterDetail + } = this.props; return ( this.setState({ file: {} })} submit={this.sendMediaMessage} + isMasterDetail={isMasterDetail} /> ); @@ -910,6 +926,7 @@ class MessageBox extends Component { } const mapStateToProps = state => ({ + isMasterDetail: state.app.isMasterDetail, baseUrl: state.server.server, threadsEnabled: state.settings.Threads_enabled, user: getUserSelector(state), diff --git a/app/containers/ReactionsModal.js b/app/containers/ReactionsModal.js index a45f855cc..97812d0e7 100644 --- a/app/containers/ReactionsModal.js +++ b/app/containers/ReactionsModal.js @@ -1,6 +1,6 @@ import React from 'react'; import { - View, Text, FlatList, StyleSheet, SafeAreaView + View, Text, FlatList, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import Modal from 'react-native-modal'; @@ -12,8 +12,12 @@ import { CustomIcon } from '../lib/Icons'; import sharedStyles from '../views/Styles'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; +import SafeAreaView from './SafeAreaView'; const styles = StyleSheet.create({ + safeArea: { + backgroundColor: 'transparent' + }, titleContainer: { alignItems: 'center', paddingVertical: 10 @@ -95,7 +99,7 @@ const ModalContent = React.memo(({ }) => { if (message && message.reactions) { return ( - + ( + + {children} + +)); + +SafeAreaView.propTypes = { + testID: PropTypes.string, + theme: PropTypes.string, + vertical: PropTypes.bool, + style: PropTypes.object, + children: PropTypes.element +}; + +export default SafeAreaView; diff --git a/app/containers/StatusBar.js b/app/containers/StatusBar.js index 6fadd6a45..18960eb45 100644 --- a/app/containers/StatusBar.js +++ b/app/containers/StatusBar.js @@ -4,7 +4,6 @@ import PropTypes from 'prop-types'; import { isIOS } from '../utils/deviceInfo'; import { themes } from '../constants/colors'; -import { withTheme } from '../theme'; const StatusBar = React.memo(({ theme }) => { let barStyle = 'light-content'; @@ -18,4 +17,4 @@ StatusBar.propTypes = { theme: PropTypes.string }; -export default withTheme(StatusBar); +export default StatusBar; diff --git a/app/containers/TwoFactor/index.js b/app/containers/TwoFactor/index.js index 0f32d2e2d..e59ed0c1a 100644 --- a/app/containers/TwoFactor/index.js +++ b/app/containers/TwoFactor/index.js @@ -5,12 +5,12 @@ import PropTypes from 'prop-types'; import { sha256 } from 'js-sha256'; import Modal from 'react-native-modal'; import useDeepCompareEffect from 'use-deep-compare-effect'; +import { connect } from 'react-redux'; import TextInput from '../TextInput'; import I18n from '../../i18n'; import EventEmitter from '../../utils/events'; import { withTheme } from '../../theme'; -import { withSplit } from '../../split'; import { themes } from '../../constants/colors'; import Button from '../Button'; import sharedStyles from '../../views/Styles'; @@ -36,7 +36,7 @@ const methods = { } }; -const TwoFactor = React.memo(({ theme, split }) => { +const TwoFactor = React.memo(({ theme, isMasterDetail }) => { const [visible, setVisible] = useState(false); const [data, setData] = useState({}); const [code, setCode] = useState(''); @@ -93,7 +93,7 @@ const TwoFactor = React.memo(({ theme, split }) => { hideModalContentWhileAnimating > - + {I18n.t(method?.title || 'Two_Factor_Authentication')} {method?.text ? {I18n.t(method.text)} : null} { }); TwoFactor.propTypes = { theme: PropTypes.string, - split: PropTypes.bool + isMasterDetail: PropTypes.bool }; -export default withSplit(withTheme(TwoFactor)); +const mapStateToProps = state => ({ + isMasterDetail: state.app.isMasterDetail +}); + +export default connect(mapStateToProps)(withTheme(TwoFactor)); diff --git a/app/containers/TwoFactor/styles.js b/app/containers/TwoFactor/styles.js index c903b131b..36608408a 100644 --- a/app/containers/TwoFactor/styles.js +++ b/app/containers/TwoFactor/styles.js @@ -37,5 +37,8 @@ export default StyleSheet.create({ buttonContainer: { flexDirection: 'row', justifyContent: 'space-between' + }, + tablet: { + height: undefined } }); diff --git a/app/containers/message/Audio.js b/app/containers/message/Audio.js index 5621a8d07..63e990b94 100644 --- a/app/containers/message/Audio.js +++ b/app/containers/message/Audio.js @@ -15,7 +15,6 @@ import { CustomIcon } from '../../lib/Icons'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; import { isAndroid, isIOS } from '../../utils/deviceInfo'; -import { withSplit } from '../../split'; import MessageContext from './Context'; import ActivityIndicator from '../ActivityIndicator'; @@ -98,7 +97,6 @@ class MessageAudio extends React.Component { static propTypes = { file: PropTypes.object.isRequired, theme: PropTypes.string, - split: PropTypes.bool, getCustomEmoji: PropTypes.func } @@ -138,7 +136,7 @@ class MessageAudio extends React.Component { const { currentTime, duration, paused, loading } = this.state; - const { file, split, theme } = this.props; + const { file, theme } = this.props; if (nextProps.theme !== theme) { return true; } @@ -154,9 +152,6 @@ class MessageAudio extends React.Component { if (!equal(nextProps.file, file)) { return true; } - if (nextProps.split !== split) { - return true; - } if (nextState.loading !== loading) { return true; } @@ -248,9 +243,7 @@ class MessageAudio extends React.Component { const { loading, paused, currentTime, duration } = this.state; - const { - file, getCustomEmoji, split, theme - } = this.props; + const { file, getCustomEmoji, theme } = this.props; const { description } = file; const { baseUrl, user } = this.context; @@ -263,8 +256,7 @@ class MessageAudio extends React.Component { ); -}, (prevProps, nextProps) => equal(prevProps.file, nextProps.file) && prevProps.split === nextProps.split && prevProps.theme === nextProps.theme); +}, (prevProps, nextProps) => equal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); ImageContainer.propTypes = { file: PropTypes.object, imageUrl: PropTypes.string, showAttachment: PropTypes.func, theme: PropTypes.string, - getCustomEmoji: PropTypes.func, - split: PropTypes.bool + getCustomEmoji: PropTypes.func }; ImageContainer.displayName = 'MessageImageContainer'; @@ -89,9 +86,8 @@ ImageContainer.displayName = 'MessageImage'; Button.propTypes = { children: PropTypes.node, onPress: PropTypes.func, - theme: PropTypes.string, - split: PropTypes.bool + theme: PropTypes.string }; ImageContainer.displayName = 'MessageButton'; -export default withSplit(ImageContainer); +export default ImageContainer; diff --git a/app/containers/message/Reply.js b/app/containers/message/Reply.js index df99258f9..d67f656bd 100644 --- a/app/containers/message/Reply.js +++ b/app/containers/message/Reply.js @@ -9,7 +9,6 @@ import Markdown from '../markdown'; import openLink from '../../utils/openLink'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; -import { withSplit } from '../../split'; import MessageContext from './Context'; const styles = StyleSheet.create({ @@ -126,7 +125,7 @@ const Fields = React.memo(({ attachment, theme }) => { }, (prevProps, nextProps) => isEqual(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme); const Reply = React.memo(({ - attachment, timeFormat, index, getCustomEmoji, split, theme + attachment, timeFormat, index, getCustomEmoji, theme }) => { if (!attachment) { return null; @@ -156,8 +155,7 @@ const Reply = React.memo(({ { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor - }, - split && sharedStyles.tabletContent + } ]} background={Touchable.Ripple(themes[theme].bannerBackground)} > @@ -173,15 +171,14 @@ const Reply = React.memo(({ ); -}, (prevProps, nextProps) => isEqual(prevProps.attachment, nextProps.attachment) && prevProps.split === nextProps.split && prevProps.theme === nextProps.theme); +}, (prevProps, nextProps) => isEqual(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme); Reply.propTypes = { attachment: PropTypes.object, timeFormat: PropTypes.string, index: PropTypes.number, theme: PropTypes.string, - getCustomEmoji: PropTypes.func, - split: PropTypes.bool + getCustomEmoji: PropTypes.func }; Reply.displayName = 'MessageReply'; @@ -205,4 +202,4 @@ Fields.propTypes = { }; Fields.displayName = 'MessageReplyFields'; -export default withSplit(Reply); +export default Reply; diff --git a/app/containers/message/Urls.js b/app/containers/message/Urls.js index e4a2ac4e5..b5e43bf6d 100644 --- a/app/containers/message/Urls.js +++ b/app/containers/message/Urls.js @@ -11,7 +11,6 @@ import openLink from '../../utils/openLink'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { withSplit } from '../../split'; import { LISTENER } from '../Toast'; import EventEmitter from '../../utils/events'; import I18n from '../../i18n'; @@ -80,9 +79,7 @@ const UrlContent = React.memo(({ title, description, theme }) => ( return true; }); -const Url = React.memo(({ - url, index, split, theme -}) => { +const Url = React.memo(({ url, index, theme }) => { if (!url) { return null; } @@ -105,8 +102,7 @@ const Url = React.memo(({ { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor - }, - split && sharedStyles.tabletContent + } ]} background={Touchable.Ripple(themes[theme].bannerBackground)} > @@ -116,19 +112,17 @@ const Url = React.memo(({ ); -}, (oldProps, newProps) => isEqual(oldProps.url, newProps.url) && oldProps.split === newProps.split && oldProps.theme === newProps.theme); +}, (oldProps, newProps) => isEqual(oldProps.url, newProps.url) && oldProps.theme === newProps.theme); -const Urls = React.memo(({ - urls, split, theme -}) => { +const Urls = React.memo(({ urls, theme }) => { if (!urls || urls.length === 0) { return null; } return urls.map((url, index) => ( - + )); -}, (oldProps, newProps) => isEqual(oldProps.urls, newProps.urls) && oldProps.split === newProps.split && oldProps.theme === newProps.theme); +}, (oldProps, newProps) => isEqual(oldProps.urls, newProps.urls) && oldProps.theme === newProps.theme); UrlImage.propTypes = { image: PropTypes.string @@ -145,16 +139,14 @@ UrlContent.displayName = 'MessageUrlContent'; Url.propTypes = { url: PropTypes.object.isRequired, index: PropTypes.number, - theme: PropTypes.string, - split: PropTypes.bool + theme: PropTypes.string }; Url.displayName = 'MessageUrl'; Urls.propTypes = { urls: PropTypes.array, - theme: PropTypes.string, - split: PropTypes.bool + theme: PropTypes.string }; Urls.displayName = 'MessageUrls'; -export default withTheme(withSplit(Urls)); +export default withTheme(Urls); diff --git a/app/containers/message/Video.js b/app/containers/message/Video.js index c765702e0..3998f2fa0 100644 --- a/app/containers/message/Video.js +++ b/app/containers/message/Video.js @@ -6,11 +6,10 @@ import isEqual from 'deep-equal'; import Touchable from './Touchable'; import Markdown from '../markdown'; import openLink from '../../utils/openLink'; -import { isIOS, isTablet } from '../../utils/deviceInfo'; +import { isIOS } from '../../utils/deviceInfo'; import { CustomIcon } from '../../lib/Icons'; import { formatAttachmentUrl } from '../../lib/utils'; import { themes } from '../../constants/colors'; -import sharedStyles from '../../views/Styles'; import MessageContext from './Context'; const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...(isIOS ? [] : ['video/3gp', 'video/mkv'])]; @@ -46,7 +45,7 @@ const Video = React.memo(({ <> { if (url) { @@ -68,543 +47,12 @@ const parseDeepLinking = (url) => { return null; }; -// Outside -const OutsideStack = createStackNavigator({ - OnboardingView: { - getScreen: () => require('./views/OnboardingView').default, - header: null - }, - NewServerView: { - getScreen: () => require('./views/NewServerView').default - }, - WorkspaceView: { - getScreen: () => require('./views/WorkspaceView').default - }, - LoginView: { - getScreen: () => require('./views/LoginView').default - }, - ForgotPasswordView: { - getScreen: () => require('./views/ForgotPasswordView').default - }, - RegisterView: { - getScreen: () => require('./views/RegisterView').default - }, - LegalView: { - getScreen: () => require('./views/LegalView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const AuthenticationWebViewStack = createStackNavigator({ - AuthenticationWebView: { - getScreen: () => require('./views/AuthenticationWebView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const OutsideStackModal = createStackNavigator({ - OutsideStack, - AuthenticationWebViewStack -}, -{ - mode: 'modal', - headerMode: 'none', - cardStyle -}); - -const RoomRoutes = { - RoomView, - ThreadMessagesView: { - getScreen: () => require('./views/ThreadMessagesView').default - }, - MarkdownTableView: { - getScreen: () => require('./views/MarkdownTableView').default - }, - ReadReceiptsView: { - getScreen: () => require('./views/ReadReceiptView').default - } -}; - -// Inside -const ChatsStack = createStackNavigator({ - RoomsListView, - RoomActionsView: { - getScreen: () => require('./views/RoomActionsView').default - }, - RoomInfoView: { - getScreen: () => require('./views/RoomInfoView').default - }, - RoomInfoEditView: { - getScreen: () => require('./views/RoomInfoEditView').default - }, - RoomMembersView: { - getScreen: () => require('./views/RoomMembersView').default - }, - SearchMessagesView: { - getScreen: () => require('./views/SearchMessagesView').default - }, - SelectedUsersView: { - getScreen: () => require('./views/SelectedUsersView').default - }, - InviteUsersView: { - getScreen: () => require('./views/InviteUsersView').default - }, - InviteUsersEditView: { - getScreen: () => require('./views/InviteUsersEditView').default - }, - MessagesView: { - getScreen: () => require('./views/MessagesView').default - }, - AutoTranslateView: { - getScreen: () => require('./views/AutoTranslateView').default - }, - DirectoryView: { - getScreen: () => require('./views/DirectoryView').default - }, - NotificationPrefView: { - getScreen: () => require('./views/NotificationPreferencesView').default - }, - VisitorNavigationView: { - getScreen: () => require('./views/VisitorNavigationView').default - }, - ForwardLivechatView: { - getScreen: () => require('./views/ForwardLivechatView').default - }, - LivechatEditView: { - getScreen: () => require('./views/LivechatEditView').default - }, - PickerView: { - getScreen: () => require('./views/PickerView').default - }, - ...RoomRoutes -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -// Inside -const RoomStack = createStackNavigator({ - ...RoomRoutes -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -ChatsStack.navigationOptions = ({ navigation }) => { - let drawerLockMode = 'unlocked'; - if (navigation.state.index > 0 || isSplited()) { - drawerLockMode = 'locked-closed'; - } - return { - drawerLockMode - }; -}; - -const ProfileStack = createStackNavigator({ - ProfileView: { - getScreen: () => require('./views/ProfileView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -ProfileStack.navigationOptions = ({ navigation }) => { - let drawerLockMode = 'unlocked'; - if (navigation.state.index > 0) { - drawerLockMode = 'locked-closed'; - } - return { - drawerLockMode - }; -}; - -const SettingsStack = createStackNavigator({ - SettingsView: { - getScreen: () => require('./views/SettingsView').default - }, - LanguageView: { - getScreen: () => require('./views/LanguageView').default - }, - ThemeView: { - getScreen: () => require('./views/ThemeView').default - }, - DefaultBrowserView: { - getScreen: () => require('./views/DefaultBrowserView').default - }, - ScreenLockConfigView: { - getScreen: () => require('./views/ScreenLockConfigView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const AdminPanelStack = createStackNavigator({ - AdminPanelView: { - getScreen: () => require('./views/AdminPanelView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -SettingsStack.navigationOptions = ({ navigation }) => { - let drawerLockMode = 'unlocked'; - if (navigation.state.index > 0) { - drawerLockMode = 'locked-closed'; - } - return { - drawerLockMode - }; -}; - -const ChatsDrawer = createDrawerNavigator({ - ChatsStack, - ProfileStack, - SettingsStack, - AdminPanelStack -}, { - contentComponent: Sidebar, - overlayColor: '#00000090' -}); - -const NewMessageStack = createStackNavigator({ - NewMessageView: { - getScreen: () => require('./views/NewMessageView').default - }, - SelectedUsersViewCreateChannel: { - getScreen: () => require('./views/SelectedUsersView').default - }, - CreateChannelView: { - getScreen: () => require('./views/CreateChannelView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const AttachmentStack = createStackNavigator({ - AttachmentView: { - getScreen: () => require('./views/AttachmentView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const ModalBlockStack = createStackNavigator({ - ModalBlockView: { - getScreen: () => require('./views/ModalBlockView').default - } -}, { - mode: 'modal', - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const CreateDiscussionStack = createStackNavigator({ - CreateDiscussionView: { - getScreen: () => require('./views/CreateDiscussionView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const StatusStack = createStackNavigator({ - StatusView: { - getScreen: () => require('./views/StatusView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const InsideStackModal = createStackNavigator({ - Main: ChatsDrawer, - NewMessageStack, - AttachmentStack, - ModalBlockStack, - StatusStack, - CreateDiscussionStack, - JitsiMeetView: { - getScreen: () => require('./views/JitsiMeetView').default - } -}, -{ - mode: 'modal', - headerMode: 'none', - cardStyle -}); - -const SetUsernameStack = createStackNavigator({ - SetUsernameView: { - getScreen: () => require('./views/SetUsernameView').default - } -}, -{ - cardStyle -}); - -class CustomInsideStack extends React.Component { - static router = InsideStackModal.router; - - static propTypes = { - navigation: PropTypes.object, - screenProps: PropTypes.object - } - - render() { - const { navigation, screenProps } = this.props; - return ( - <> - - { !isTablet ? : null } - { !isTablet ? : null } - - ); - } -} - -class CustomRoomStack extends React.Component { - static router = RoomStack.router; - - static propTypes = { - navigation: PropTypes.object, - screenProps: PropTypes.object - } - - render() { - const { navigation, screenProps } = this.props; - return ( - <> - - - - ); - } -} - -const MessagesStack = createStackNavigator({ - NewMessageView: { - getScreen: () => require('./views/NewMessageView').default - }, - SelectedUsersViewCreateChannel: { - getScreen: () => require('./views/SelectedUsersView').default - }, - CreateChannelView: { - getScreen: () => require('./views/CreateChannelView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const DirectoryStack = createStackNavigator({ - DirectoryView: { - getScreen: () => require('./views/DirectoryView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const SidebarStack = createStackNavigator({ - SettingsView: { - getScreen: () => require('./views/SettingsView').default - }, - ProfileView: { - getScreen: () => require('./views/ProfileView').default - }, - AdminPanelView: { - getScreen: () => require('./views/AdminPanelView').default - }, - StatusView: { - getScreen: () => require('./views/StatusView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - -const RoomActionsStack = createStackNavigator({ - RoomActionsView: { - getScreen: () => require('./views/RoomActionsView').default - }, - RoomInfoView: { - getScreen: () => require('./views/RoomInfoView').default - }, - RoomInfoEditView: { - getScreen: () => require('./views/RoomInfoEditView').default - }, - RoomMembersView: { - getScreen: () => require('./views/RoomMembersView').default - }, - SearchMessagesView: { - getScreen: () => require('./views/SearchMessagesView').default - }, - SelectedUsersView: { - getScreen: () => require('./views/SelectedUsersView').default - }, - MessagesView: { - getScreen: () => require('./views/MessagesView').default - }, - AutoTranslateView: { - getScreen: () => require('./views/AutoTranslateView').default - }, - ReadReceiptsView: { - getScreen: () => require('./views/ReadReceiptView').default - }, - NotificationPrefView: { - getScreen: () => require('./views/NotificationPreferencesView').default - }, - AttachmentView: { - getScreen: () => require('./views/AttachmentView').default - }, - PickerView: { - getScreen: () => require('./views/PickerView').default - } -}, { - defaultNavigationOptions: defaultHeader, - cardStyle -}); - - -const ModalSwitch = createSwitchNavigator({ - MessagesStack, - DirectoryStack, - SidebarStack, - RoomActionsStack, - SettingsStack, - ModalBlockStack, - CreateDiscussionStack, - AuthLoading: () => null -}, -{ - initialRouteName: 'AuthLoading' -}); - -class CustomModalStack extends React.Component { - static router = ModalSwitch.router; - - static propTypes = { - navigation: PropTypes.object, - showModal: PropTypes.bool, - closeModal: PropTypes.func, - screenProps: PropTypes.object - } - - componentDidMount() { - this.backHandler = BackHandler.addEventListener('hardwareBackPress', this.closeModal); - } - - componentWillUnmount() { - this.backHandler.remove(); - } - - closeModal = () => { - const { closeModal, navigation } = this.props; - const { state } = navigation; - if (state && state.routes[state.index] && state.routes[state.index].index === 0) { - closeModal(); - return true; - } - if (state && state.routes[state.index] && state.routes[state.index].routes && state.routes[state.index].routes.length > 1) { - navigation.goBack(); - } - return false; - } - - render() { - const { - navigation, showModal, closeModal, screenProps - } = this.props; - - const pageSheetViews = ['AttachmentView']; - const pageSheet = pageSheetViews.includes(getActiveRouteName(navigation.state)); - - const androidProps = isAndroid && !pageSheet && { - style: { marginBottom: 0 } - }; - - let content = ( - - - - ); - - if (isAndroid && !pageSheet) { - content = ( - - {content} - - ); - } - - return ( - - {content} - - ); - } -} - -class CustomNotificationStack extends React.Component { - static router = InsideStackModal.router; - - static propTypes = { - navigation: PropTypes.object, - screenProps: PropTypes.object - } - - render() { - const { navigation, screenProps } = this.props; - return ; - } -} - -export const App = createAppContainer(createSwitchNavigator( - { - OutsideStack: OutsideStackModal, - InsideStack: CustomInsideStack, - AuthLoading: { - getScreen: () => require('./views/AuthLoadingView').default - }, - SetUsernameStack - }, - { - initialRouteName: 'AuthLoading' - } -)); - -export const RoomContainer = createAppContainer(CustomRoomStack); - -export const ModalContainer = createAppContainer(CustomModalStack); - -export const NotificationContainer = createAppContainer(CustomNotificationStack); - export default class Root extends React.Component { constructor(props) { super(props); this.init(); this.initCrashReport(); this.state = { - split: false, - inside: false, - showModal: false, theme: defaultTheme(), themePreferences: { currentTheme: supportSystemTheme() ? 'automatic' : 'light', @@ -625,22 +73,12 @@ export default class Root extends React.Component { } }); }, 5000); - } - - // eslint-disable-next-line no-unused-vars - componentDidUpdate(_, prevState) { - if (isTablet) { - const { split, inside } = this.state; - if (inside && split !== prevState.split) { - // Reset app on split mode changes - Navigation.navigate('RoomsListView'); - this.closeModal(); - } - } + Dimensions.addEventListener('change', this.onDimensionsChange); } componentWillUnmount() { clearTimeout(this.listenerTimeout); + Dimensions.removeEventListener('change', this.onDimensionsChange); unsubscribeTheme(); @@ -663,6 +101,22 @@ export default class Root extends React.Component { } } + getMasterDetail = (width) => { + if (!isTablet) { + return false; + } + return width > MIN_WIDTH_MASTER_DETAIL_LAYOUT; + } + + setMasterDetail = (width) => { + const isMasterDetail = this.getMasterDetail(width); + store.dispatch(setMasterDetailAction(isMasterDetail)); + }; + + onDimensionsChange = ({ window: { width } }) => { + this.setMasterDetail(width); + } + setTheme = (newTheme = {}) => { // change theme state this.setState(prevState => newThemeState(prevState, newTheme), () => { @@ -672,12 +126,14 @@ export default class Root extends React.Component { }); } - initTablet = async() => { - initTabletNav(args => this.setState(args)); - await KeyCommands.setKeyCommands([]); + initTablet = () => { + const { width } = Dimensions.get('window'); + this.setMasterDetail(width); this.onKeyCommands = KeyCommandsEmitter.addListener( 'onKeyCommand', - command => EventEmitter.emit(KEY_COMMAND, { event: command }) + (command) => { + EventEmitter.emit(KEY_COMMAND, { event: command }); + } ); } @@ -692,45 +148,8 @@ export default class Root extends React.Component { }); } - onLayout = ({ nativeEvent: { layout: { width } } }) => (isTablet ? this.setSplit(width) : null); - - setSplit = (width) => { - this.setState({ split: width > MIN_WIDTH_SPLIT_LAYOUT }); - setWidth(width); - } - - closeModal = () => this.setState({ showModal: false }); - render() { - const { split, themePreferences, theme } = this.state; - - let content = ( - { - Navigation.setTopLevelNavigator(navigatorRef); - }} - screenProps={{ split, theme }} - onNavigationStateChange={onNavigationStateChange} - /> - ); - - if (isTablet) { - const { inside, showModal } = this.state; - content = ( - - - {content} - - - ); - } + const { themePreferences, theme } = this.state; return ( @@ -741,7 +160,7 @@ export default class Root extends React.Component { setTheme: this.setTheme }} > - {content} + diff --git a/app/lib/ModalNavigation.js b/app/lib/ModalNavigation.js deleted file mode 100644 index 3474a7451..000000000 --- a/app/lib/ModalNavigation.js +++ /dev/null @@ -1,21 +0,0 @@ -import { NavigationActions } from 'react-navigation'; - -let _navigatorModal; - -function setTopLevelNavigator(navigatorRef) { - _navigatorModal = navigatorRef; -} - -function navigate(routeName, params) { - _navigatorModal.dispatch( - NavigationActions.navigate({ - routeName, - params - }) - ); -} - -export default { - navigate, - setTopLevelNavigator -}; diff --git a/app/lib/Navigation.js b/app/lib/Navigation.js index 252c6ed95..34aba1769 100644 --- a/app/lib/Navigation.js +++ b/app/lib/Navigation.js @@ -1,28 +1,25 @@ -import { NavigationActions } from 'react-navigation'; +import * as React from 'react'; +import { CommonActions, StackActions } from '@react-navigation/native'; -let _navigator; +const navigationRef = React.createRef(); +const routeNameRef = React.createRef(); -function setTopLevelNavigator(navigatorRef) { - _navigator = navigatorRef; +function navigate(name, params) { + navigationRef.current?.navigate(name, params); } function back() { - _navigator.dispatch( - NavigationActions.back() - ); + navigationRef.current?.dispatch(CommonActions.goBack()); } -function navigate(routeName, params) { - _navigator.dispatch( - NavigationActions.navigate({ - routeName, - params - }) - ); +function replace(name, params) { + navigationRef.current?.dispatch(StackActions.replace(name, params)); } export default { - back, + navigationRef, + routeNameRef, navigate, - setTopLevelNavigator + back, + replace }; diff --git a/app/lib/ShareNavigation.js b/app/lib/ShareNavigation.js index 84bc27908..6cc77eac2 100644 --- a/app/lib/ShareNavigation.js +++ b/app/lib/ShareNavigation.js @@ -1,21 +1,9 @@ -import { NavigationActions } from 'react-navigation'; +import { createRef } from 'react'; -let _shareNavigator; - -function setTopLevelNavigator(navigatorRef) { - _shareNavigator = navigatorRef; -} - -function navigate(routeName, params) { - _shareNavigator.dispatch( - NavigationActions.navigate({ - routeName, - params - }) - ); -} +const navigationRef = createRef(); +const routeNameRef = createRef(); export default { - navigate, - setTopLevelNavigator + navigationRef, + routeNameRef }; diff --git a/app/lib/methods/loadMessagesForRoom.js b/app/lib/methods/loadMessagesForRoom.js index 41fe32161..012e1ea32 100644 --- a/app/lib/methods/loadMessagesForRoom.js +++ b/app/lib/methods/loadMessagesForRoom.js @@ -6,8 +6,14 @@ async function load({ rid: roomId, latest, t }) { if (latest) { params = { ...params, latest: new Date(latest).toISOString() }; } + + const apiType = this.roomTypeToApiType(t); + if (!apiType) { + return []; + } + // RC 0.48.0 - const data = await this.sdk.get(`${ this.roomTypeToApiType(t) }.history`, params); + const data = await this.sdk.get(`${ apiType }.history`, params); if (!data || data.status === 'error') { return []; } diff --git a/app/notifications/inApp/index.js b/app/notifications/inApp/index.js index 1f5198af6..cd77c2f19 100644 --- a/app/notifications/inApp/index.js +++ b/app/notifications/inApp/index.js @@ -17,6 +17,9 @@ import sharedStyles from '../../views/Styles'; import { ROW_HEIGHT } from '../../presentation/RoomItem'; import { withTheme } from '../../theme'; import { getUserSelector } from '../../selectors/login'; +import { getActiveRoute } from '../../utils/navigation'; +import Navigation from '../../lib/Navigation'; +import { goRoom } from '../../utils/goRoom'; const AVATAR_SIZE = 48; const ANIMATION_DURATION = 300; @@ -71,7 +74,7 @@ const styles = StyleSheet.create({ class NotificationBadge extends React.Component { static propTypes = { - navigation: PropTypes.object, + isMasterDetail: PropTypes.bool, baseUrl: PropTypes.string, user: PropTypes.object, notification: PropTypes.object, @@ -102,14 +105,18 @@ class NotificationBadge extends React.Component { return false; } - componentDidUpdate() { - const { notification: { payload }, navigation } = this.props; - const navState = this.getNavState(navigation.state); - if (payload.rid) { - if (navState && navState.routeName === 'RoomView' && navState.params && navState.params.rid === payload.rid) { - return; + componentDidUpdate(prevProps) { + const { notification: { payload } } = this.props; + const { notification: { payload: prevPayload } } = prevProps; + if (!equal(prevPayload, payload)) { + const state = Navigation.navigationRef.current.getRootState(); + const route = getActiveRoute(state); + if (payload.rid) { + if (route?.name === 'RoomView' && route.params?.rid === payload.rid) { + return; + } + this.show(); } - this.show(); } } @@ -150,15 +157,8 @@ class NotificationBadge extends React.Component { } } - getNavState = (routes) => { - if (!routes.routes) { - return routes; - } - return this.getNavState(routes.routes[routes.index]); - } - - goToRoom = async() => { - const { notification, navigation, baseUrl } = this.props; + goToRoom = () => { + const { notification, isMasterDetail, baseUrl } = this.props; const { payload } = notification; const { rid, type, prid } = payload; if (!rid) { @@ -167,10 +167,13 @@ class NotificationBadge extends React.Component { const name = type === 'd' ? payload.sender.username : payload.name; // if sub is not on local database, title will be null, so we use payload from notification const { title = name } = notification; - await navigation.navigate('RoomsListView'); - navigation.navigate('RoomView', { + const item = { rid, name: title, t: type, prid, baseUrl - }); + }; + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } + goRoom({ item, isMasterDetail }); this.hide(); } @@ -234,7 +237,8 @@ class NotificationBadge extends React.Component { const mapStateToProps = state => ({ user: getUserSelector(state), baseUrl: state.server.server, - notification: state.notification + notification: state.notification, + isMasterDetail: PropTypes.bool }); const mapDispatchToProps = dispatch => ({ diff --git a/app/presentation/RoomItem/Touchable.js b/app/presentation/RoomItem/Touchable.js index d4a88c34f..911436fe0 100644 --- a/app/presentation/RoomItem/Touchable.js +++ b/app/presentation/RoomItem/Touchable.js @@ -25,7 +25,8 @@ class Touchable extends React.Component { toggleRead: PropTypes.func, hideChannel: PropTypes.func, children: PropTypes.element, - theme: PropTypes.string + theme: PropTypes.string, + isFocused: PropTypes.bool } constructor(props) { @@ -167,7 +168,7 @@ class Touchable extends React.Component { render() { const { - testID, isRead, width, favorite, children, theme + testID, isRead, width, favorite, children, theme, isFocused } = this.props; return ( @@ -203,7 +204,7 @@ class Touchable extends React.Component { theme={theme} testID={testID} style={{ - backgroundColor: themes[theme].backgroundColor + backgroundColor: isFocused ? themes[theme].chatComponentBackground : themes[theme].backgroundColor }} > {children} diff --git a/app/presentation/RoomItem/index.js b/app/presentation/RoomItem/index.js index 9251717cb..1b3ee93f2 100644 --- a/app/presentation/RoomItem/index.js +++ b/app/presentation/RoomItem/index.js @@ -28,7 +28,8 @@ const attrs = [ 'favorite', 'status', 'connected', - 'theme' + 'theme', + 'isFocused' ]; const arePropsEqual = (oldProps, newProps) => { @@ -41,7 +42,39 @@ const arePropsEqual = (oldProps, newProps) => { }; const RoomItem = React.memo(({ - onPress, width, favorite, toggleFav, isRead, rid, toggleRead, hideChannel, testID, unread, userMentions, name, _updatedAt, alert, type, avatarSize, baseUrl, userId, username, token, id, prid, showLastMessage, hideUnreadStatus, lastMessage, status, avatar, useRealName, getUserPresence, isGroupChat, connected, theme + onPress, + width, + favorite, + toggleFav, + isRead, + rid, + toggleRead, + hideChannel, + testID, + unread, + userMentions, + name, + _updatedAt, + alert, + type, + avatarSize, + baseUrl, + userId, + username, + token, + id, + prid, + showLastMessage, + hideUnreadStatus, + lastMessage, + status, + avatar, + useRealName, + getUserPresence, + isGroupChat, + connected, + theme, + isFocused }) => { useEffect(() => { if (connected && type === 'd' && id) { @@ -79,6 +112,7 @@ const RoomItem = React.memo(({ testID={testID} type={type} theme={theme} + isFocused={isFocused} > room.rid === action.rid) + .filter(rid => rid !== action.rid) }; case ROOM.LEAVE: return { diff --git a/app/reducers/server.js b/app/reducers/server.js index 7eda3767f..96b8d400c 100644 --- a/app/reducers/server.js +++ b/app/reducers/server.js @@ -7,7 +7,8 @@ const initialState = { server: '', version: null, loading: true, - adding: false + adding: false, + previousServer: null }; @@ -54,12 +55,14 @@ export default function server(state = initialState, action) { case SERVER.INIT_ADD: return { ...state, - adding: true + adding: true, + previousServer: action.previousServer }; case SERVER.FINISH_ADD: return { ...state, - adding: false + adding: false, + previousServer: null }; default: return state; diff --git a/app/sagas/createChannel.js b/app/sagas/createChannel.js index 37d249a74..062a0092b 100644 --- a/app/sagas/createChannel.js +++ b/app/sagas/createChannel.js @@ -10,6 +10,7 @@ import RocketChat from '../lib/rocketchat'; import Navigation from '../lib/Navigation'; import database from '../lib/database'; import I18n from '../i18n'; +import { goRoom } from '../utils/goRoom'; const createChannel = function createChannel(data) { return RocketChat.createChannel(data); @@ -55,9 +56,12 @@ const handleRequest = function* handleRequest({ data }) { } }; -const handleSuccess = function handleSuccess({ data }) { - const { rid, t } = data; - Navigation.navigate('RoomView', { rid, t, name: RocketChat.getRoomTitle(data) }); +const handleSuccess = function* handleSuccess({ data }) { + const isMasterDetail = yield select(state => state.app.isMasterDetail); + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } + goRoom({ item: data, isMasterDetail }); }; const handleFailure = function handleFailure({ err }) { diff --git a/app/sagas/deepLinking.js b/app/sagas/deepLinking.js index d5a2b87cc..2069cbd07 100644 --- a/app/sagas/deepLinking.js +++ b/app/sagas/deepLinking.js @@ -10,8 +10,9 @@ import { inviteLinksSetToken, inviteLinksRequest } from '../actions/inviteLinks' import database from '../lib/database'; import RocketChat from '../lib/rocketchat'; import EventEmitter from '../utils/events'; -import { appStart } from '../actions'; +import { appStart, ROOT_INSIDE } from '../actions/app'; import { localAuthenticate } from '../utils/localAuthentication'; +import { goRoom } from '../utils/goRoom'; const roomTypes = { channel: 'c', direct: 'd', group: 'p', channels: 'l' @@ -29,19 +30,25 @@ const handleInviteLink = function* handleInviteLink({ params, requireLogin = fal }; const navigate = function* navigate({ params }) { - yield put(appStart('inside')); + yield put(appStart({ root: ROOT_INSIDE })); if (params.path) { const [type, name] = params.path.split('/'); if (type !== 'invite') { const room = yield RocketChat.canOpenRoom(params); if (room) { - yield Navigation.navigate('RoomsListView'); - Navigation.navigate('RoomView', { + const isMasterDetail = yield select(state => state.app.isMasterDetail); + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } else { + Navigation.navigate('RoomsListView'); + } + const item = { name, t: roomTypes[type], roomUserId: RocketChat.getUidDirectMessage(room), ...room - }); + }; + goRoom({ item, isMasterDetail }); } } else { yield handleInviteLink({ params }); diff --git a/app/sagas/init.js b/app/sagas/init.js index ae47a1430..25c77da04 100644 --- a/app/sagas/init.js +++ b/app/sagas/init.js @@ -4,14 +4,12 @@ import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import RNBootSplash from 'react-native-bootsplash'; import AsyncStorage from '@react-native-community/async-storage'; -import * as actions from '../actions'; import { selectServerRequest } from '../actions/server'; import { setAllPreferences } from '../actions/sortPreferences'; import { toggleCrashReport } from '../actions/crashReport'; import { APP } from '../actions/actionsTypes'; import RocketChat from '../lib/rocketchat'; import log from '../utils/log'; -import Navigation from '../lib/Navigation'; import { SERVERS, SERVER_ICON, SERVER_NAME, SERVER_URL, TOKEN, USER_ID } from '../constants/userDefaults'; @@ -19,6 +17,7 @@ import { isIOS } from '../utils/deviceInfo'; import database from '../lib/database'; import protectedFunction from '../lib/methods/helpers/protectedFunction'; import { localAuthenticate } from '../utils/localAuthentication'; +import { appStart, ROOT_OUTSIDE, appReady } from '../actions/app'; export const initLocalSettings = function* initLocalSettings() { const sortPreferences = yield RocketChat.getSortPreferences(); @@ -96,7 +95,7 @@ const restore = function* restore() { RNUserDefaults.clear(RocketChat.TOKEN_KEY), RNUserDefaults.clear('currentServer') ]); - yield put(actions.appStart('outside')); + yield put(appStart({ root: ROOT_OUTSIDE })); } else { const serversDB = database.servers; const serverCollections = serversDB.collections.get('servers'); @@ -106,23 +105,14 @@ const restore = function* restore() { yield put(selectServerRequest(server, serverObj && serverObj.version)); } - yield put(actions.appReady({})); + yield put(appReady({})); } catch (e) { log(e); - yield put(actions.appStart('outside')); + yield put(appStart({ root: ROOT_OUTSIDE })); } }; -const start = function* start({ root, text }) { - if (root === 'inside') { - yield Navigation.navigate('InsideStack'); - } else if (root === 'setUsername') { - yield Navigation.navigate('SetUsernameStack'); - } else if (root === 'outside') { - yield Navigation.navigate('OutsideStack'); - } else if (root === 'loading') { - yield Navigation.navigate('AuthLoading', { text }); - } +const start = function start() { RNBootSplash.hide(); }; diff --git a/app/sagas/login.js b/app/sagas/login.js index 3e3575f1e..587b9b7ba 100644 --- a/app/sagas/login.js +++ b/app/sagas/login.js @@ -7,7 +7,9 @@ import moment from 'moment'; import 'moment/min/locales'; import * as types from '../actions/actionsTypes'; -import { appStart } from '../actions'; +import { + appStart, ROOT_SET_USERNAME, ROOT_INSIDE, ROOT_LOADING, ROOT_OUTSIDE +} from '../actions/app'; import { serverFinishAdd, selectServerRequest } from '../actions/server'; import { loginFailure, loginSuccess, setUser, logout @@ -40,7 +42,7 @@ const handleLoginRequest = function* handleLoginRequest({ credentials, logoutOnE if (!result.username) { yield put(serverFinishAdd()); yield put(setUser(result)); - yield put(appStart('setUsername')); + yield put(appStart({ root: ROOT_SET_USERNAME })); } else { const server = yield select(getServer); yield localAuthenticate(server); @@ -133,17 +135,17 @@ const handleLoginSuccess = function* handleLoginSuccess({ user }) { let currentRoot; if (adding) { yield put(serverFinishAdd()); - yield put(appStart('inside')); + yield put(appStart({ root: ROOT_INSIDE })); } else { currentRoot = yield select(state => state.app.root); - if (currentRoot !== 'inside') { - yield put(appStart('inside')); + if (currentRoot !== ROOT_INSIDE) { + yield put(appStart({ root: ROOT_INSIDE })); } } // after a successful login, check if it's been invited via invite link currentRoot = yield select(state => state.app.root); - if (currentRoot === 'inside') { + if (currentRoot === ROOT_INSIDE) { const inviteLinkToken = yield select(state => state.inviteLinks.token); if (inviteLinkToken) { yield put(inviteLinksRequest(inviteLinkToken)); @@ -155,7 +157,7 @@ const handleLoginSuccess = function* handleLoginSuccess({ user }) { }; const handleLogout = function* handleLogout({ forcedByServer }) { - yield put(appStart('loading', I18n.t('Logging_out'))); + yield put(appStart({ root: ROOT_LOADING, text: I18n.t('Logging_out') })); const server = yield select(getServer); if (server) { try { @@ -163,7 +165,7 @@ const handleLogout = function* handleLogout({ forcedByServer }) { // if the user was logged out by the server if (forcedByServer) { - yield put(appStart('outside')); + yield put(appStart({ root: ROOT_OUTSIDE })); showErrorAlert(I18n.t('Logged_out_by_server'), I18n.t('Oops')); EventEmitter.emit('NewServer', { server }); } else { @@ -183,10 +185,10 @@ const handleLogout = function* handleLogout({ forcedByServer }) { } } // if there's no servers, go outside - yield put(appStart('outside')); + yield put(appStart({ root: ROOT_OUTSIDE })); } } catch (e) { - yield put(appStart('outside')); + yield put(appStart({ root: ROOT_OUTSIDE })); log(e); } } diff --git a/app/sagas/messages.js b/app/sagas/messages.js index 1b815fd5f..2879b2b64 100644 --- a/app/sagas/messages.js +++ b/app/sagas/messages.js @@ -1,4 +1,4 @@ -import { takeLatest } from 'redux-saga/effects'; +import { takeLatest, select } from 'redux-saga/effects'; import { Q } from '@nozbe/watermelondb'; import Navigation from '../lib/Navigation'; @@ -6,32 +6,28 @@ import { MESSAGES } from '../actions/actionsTypes'; import RocketChat from '../lib/rocketchat'; import database from '../lib/database'; import log from '../utils/log'; - -const goRoom = function goRoom({ - rid, name, fname, message -}) { - Navigation.navigate('RoomsListView'); - Navigation.navigate('RoomView', { - rid, name, fname, t: 'd', message - }); -}; +import { goRoom } from '../utils/goRoom'; const handleReplyBroadcast = function* handleReplyBroadcast({ message }) { try { const db = database.active; - const { username, name } = message.u; + const { username } = message.u; const subsCollection = db.collections.get('subscriptions'); const subscriptions = yield subsCollection.query(Q.where('name', username)).fetch(); + + const isMasterDetail = yield select(state => state.app.isMasterDetail); + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } else { + Navigation.navigate('RoomsListView'); + } + if (subscriptions.length) { - yield goRoom({ - rid: subscriptions[0].rid, name: username, fname: name, message - }); + goRoom({ item: subscriptions[0], isMasterDetail, message }); } else { const result = yield RocketChat.createDirectMessage(username); if (result?.success) { - yield goRoom({ - rid: result?.room.rid, t: 'd', name: username, fname: name, message - }); + goRoom({ item: result?.room, isMasterDetail, message }); } } } catch (e) { diff --git a/app/sagas/room.js b/app/sagas/room.js index 9fab31386..d910af56f 100644 --- a/app/sagas/room.js +++ b/app/sagas/room.js @@ -31,7 +31,12 @@ const watchUserTyping = function* watchUserTyping({ rid, status }) { }; const handleRemovedRoom = function* handleRemovedRoom() { - yield Navigation.navigate('RoomsListView'); + const isMasterDetail = yield select(state => state.app.isMasterDetail); + if (isMasterDetail) { + yield Navigation.navigate('DrawerNavigator'); + } else { + yield Navigation.navigate('RoomsListView'); + } // types.ROOM.REMOVE is triggered by `subscriptions-changed` with `removed` arg const { timeout } = yield race({ deleteFinished: take(types.ROOM.REMOVED), @@ -74,7 +79,12 @@ const handleCloseRoom = function* handleCloseRoom({ rid }) { const closeRoom = async(comment = '') => { try { await RocketChat.closeLivechat(rid, comment); - Navigation.navigate('RoomsListView'); + const isMasterDetail = await select(state => state.app.isMasterDetail); + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } else { + Navigation.navigate('RoomsListView'); + } } catch { // do nothing } @@ -105,7 +115,12 @@ const handleForwardRoom = function* handleForwardRoom({ transferData }) { try { const result = yield RocketChat.forwardLivechat(transferData); if (result === true) { - Navigation.navigate('RoomsListView'); + const isMasterDetail = yield select(state => state.app.isMasterDetail); + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } else { + Navigation.navigate('RoomsListView'); + } } else { showErrorAlert(I18n.t('No_available_agents_to_transfer'), I18n.t('Oops')); } diff --git a/app/sagas/selectServer.js b/app/sagas/selectServer.js index 7596e05d1..429b2642c 100644 --- a/app/sagas/selectServer.js +++ b/app/sagas/selectServer.js @@ -6,7 +6,6 @@ import semver from 'semver'; import Navigation from '../lib/Navigation'; import { SERVER } from '../actions/actionsTypes'; -import * as actions from '../actions'; import { serverFailure, selectServerRequest, selectServerSuccess, selectServerFailure } from '../actions/server'; @@ -19,6 +18,7 @@ import { extractHostname } from '../utils/server'; import I18n from '../i18n'; import { SERVERS, TOKEN, SERVER_URL } from '../constants/userDefaults'; import { BASIC_AUTH_KEY, setBasicAuth } from '../utils/fetch'; +import { appStart, ROOT_INSIDE, ROOT_OUTSIDE } from '../actions/app'; const getServerInfo = function* getServerInfo({ server, raiseError = true }) { try { @@ -103,10 +103,10 @@ const handleSelectServer = function* handleSelectServer({ server, version, fetch yield put(clearSettings()); yield RocketChat.connect({ server, user, logoutOnError: true }); yield put(setUser(user)); - yield put(actions.appStart('inside')); + yield put(appStart({ root: ROOT_INSIDE })); } else { yield RocketChat.connect({ server }); - yield put(actions.appStart('outside')); + yield put(appStart({ root: ROOT_OUTSIDE })); } // We can't use yield here because fetch of Settings & Custom Emojis is slower diff --git a/app/sagas/state.js b/app/sagas/state.js index 727bc6afa..8b072c0a9 100644 --- a/app/sagas/state.js +++ b/app/sagas/state.js @@ -5,10 +5,11 @@ import { setBadgeCount } from '../notifications/push'; import log from '../utils/log'; import { localAuthenticate, saveLastLocalAuthenticationSession } from '../utils/localAuthentication'; import { APP_STATE } from '../actions/actionsTypes'; +import { ROOT_OUTSIDE } from '../actions/app'; const appHasComeBackToForeground = function* appHasComeBackToForeground() { const appRoot = yield select(state => state.app.root); - if (appRoot === 'outside') { + if (appRoot === ROOT_OUTSIDE) { return; } const auth = yield select(state => state.login.isAuthenticated); @@ -27,7 +28,7 @@ const appHasComeBackToForeground = function* appHasComeBackToForeground() { const appHasComeBackToBackground = function* appHasComeBackToBackground() { const appRoot = yield select(state => state.app.root); - if (appRoot === 'outside') { + if (appRoot === ROOT_OUTSIDE) { return; } const auth = yield select(state => state.login.isAuthenticated); diff --git a/app/share.js b/app/share.js index 35e865296..e3a3935e5 100644 --- a/app/share.js +++ b/app/share.js @@ -1,8 +1,8 @@ -import React from 'react'; -import { View } from 'react-native'; -import { createAppContainer, createSwitchNavigator } from 'react-navigation'; +import React, { useContext } from 'react'; +import PropTypes from 'prop-types'; +import { NavigationContainer } from '@react-navigation/native'; import { AppearanceProvider } from 'react-native-appearance'; -import { createStackNavigator } from 'react-navigation-stack'; +import { createStackNavigator } from '@react-navigation/stack'; import { Provider } from 'react-redux'; import RNUserDefaults from 'rn-user-defaults'; @@ -14,61 +14,114 @@ import { } from './utils/theme'; import Navigation from './lib/ShareNavigation'; import store from './lib/createStore'; -import sharedStyles from './views/Styles'; -import { hasNotch, supportSystemTheme } from './utils/deviceInfo'; -import { defaultHeader, onNavigationStateChange, cardStyle } from './utils/navigation'; +import { supportSystemTheme } from './utils/deviceInfo'; +import { + defaultHeader, themedHeader, getActiveRouteName, navigationTheme +} from './utils/navigation'; import RocketChat, { THEME_PREFERENCES_KEY } from './lib/rocketchat'; import { ThemeContext } from './theme'; import { localAuthenticate } from './utils/localAuthentication'; import ScreenLockedView from './views/ScreenLockedView'; -const InsideNavigator = createStackNavigator({ - ShareListView: { - getScreen: () => require('./views/ShareListView').default - }, - ShareView: { - getScreen: () => require('./views/ShareView').default - }, - SelectServerView: { - getScreen: () => require('./views/SelectServerView').default - } -}, { - initialRouteName: 'ShareListView', - defaultNavigationOptions: defaultHeader, - cardStyle -}); +// Outside Stack +import WithoutServersView from './views/WithoutServersView'; -const OutsideNavigator = createStackNavigator({ - WithoutServersView: { - getScreen: () => require('./views/WithoutServersView').default - } -}, { - initialRouteName: 'WithoutServersView', - defaultNavigationOptions: defaultHeader, - cardStyle -}); +// Inside Stack +import ShareListView from './views/ShareListView'; +import ShareView from './views/ShareView'; +import SelectServerView from './views/SelectServerView'; +import { setCurrentScreen } from './utils/log'; +import AuthLoadingView from './views/AuthLoadingView'; -const AppContainer = createAppContainer(createSwitchNavigator({ - OutsideStack: OutsideNavigator, - InsideStack: InsideNavigator, - AuthLoading: { - getScreen: () => require('./views/AuthLoadingView').default - } -}, -{ - initialRouteName: 'AuthLoading' -})); +const Inside = createStackNavigator(); +const InsideStack = () => { + const { theme } = useContext(ThemeContext); + + const screenOptions = { + ...defaultHeader, + ...themedHeader(theme) + }; + screenOptions.headerStyle = { + ...screenOptions.headerStyle, + // TODO: fix on multiple files PR :) + height: 57 + }; + + return ( + + + + + + ); +}; + +const Outside = createStackNavigator(); +const OutsideStack = () => { + const { theme } = useContext(ThemeContext); + + return ( + + + + ); +}; + +// App +const Stack = createStackNavigator(); +export const App = ({ root }) => ( + + <> + {!root ? ( + + ) : null} + {root === 'outside' ? ( + + ) : null} + {root === 'inside' ? ( + + ) : null} + + +); + +App.propTypes = { + root: PropTypes.string +}; class Root extends React.Component { constructor(props) { super(props); this.state = { - isLandscape: false, theme: defaultTheme(), themePreferences: { currentTheme: supportSystemTheme() ? 'automatic' : 'light', darkLevel: 'dark' - } + }, + root: '' }; this.init(); } @@ -85,11 +138,16 @@ class Root extends React.Component { if (currentServer && token) { await localAuthenticate(currentServer); - await Navigation.navigate('InsideStack'); + this.setState({ root: 'inside' }); await RocketChat.shareExtensionInit(currentServer); } else { - await Navigation.navigate('OutsideStack'); + this.setState({ root: 'outside' }); } + + const state = Navigation.navigationRef.current.getRootState(); + const currentRouteName = getActiveRouteName(state); + Navigation.routeNameRef.current = currentRouteName; + setCurrentScreen(currentRouteName); } setTheme = (newTheme = {}) => { @@ -101,32 +159,30 @@ class Root extends React.Component { }); } - handleLayout = (event) => { - const { width, height } = event.nativeEvent.layout; - this.setState({ isLandscape: width > height }); - } - render() { - const { isLandscape, theme } = this.state; + const { theme, root } = this.state; + const navTheme = navigationTheme(theme); return ( - - - - { - Navigation.setTopLevelNavigator(navigatorRef); - }} - onNavigationStateChange={onNavigationStateChange} - screenProps={{ theme }} - /> - - - - + + + { + const previousRouteName = Navigation.routeNameRef.current; + const currentRouteName = getActiveRouteName(state); + if (previousRouteName !== currentRouteName) { + setCurrentScreen(currentRouteName); + } + Navigation.routeNameRef.current = currentRouteName; + }} + > + + + + + ); } diff --git a/app/split.js b/app/split.js deleted file mode 100644 index 44136bbcb..000000000 --- a/app/split.js +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import hoistNonReactStatics from 'hoist-non-react-statics'; - -import { isTablet } from './utils/deviceInfo'; - -export const SplitContext = React.createContext(null); - -export function withSplit(Component) { - if (isTablet) { - const SplitComponent = props => ( - - {contexts => } - - ); - hoistNonReactStatics(SplitComponent, Component); - return SplitComponent; - } - return Component; -} diff --git a/app/stacks/InsideStack.js b/app/stacks/InsideStack.js new file mode 100644 index 000000000..e5d3d7b0c --- /dev/null +++ b/app/stacks/InsideStack.js @@ -0,0 +1,335 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { createStackNavigator } from '@react-navigation/stack'; +import { createDrawerNavigator } from '@react-navigation/drawer'; + +import { ThemeContext } from '../theme'; +import { + defaultHeader, themedHeader, ModalAnimation, StackAnimation +} from '../utils/navigation'; +import Toast from '../containers/Toast'; +import Sidebar from '../views/SidebarView'; +import NotificationBadge from '../notifications/inApp'; + +// Chats Stack +import RoomView from '../views/RoomView'; +import RoomsListView from '../views/RoomsListView'; +import RoomActionsView from '../views/RoomActionsView'; +import RoomInfoView from '../views/RoomInfoView'; +import RoomInfoEditView from '../views/RoomInfoEditView'; +import RoomMembersView from '../views/RoomMembersView'; +import SearchMessagesView from '../views/SearchMessagesView'; +import SelectedUsersView from '../views/SelectedUsersView'; +import InviteUsersView from '../views/InviteUsersView'; +import InviteUsersEditView from '../views/InviteUsersEditView'; +import MessagesView from '../views/MessagesView'; +import AutoTranslateView from '../views/AutoTranslateView'; +import DirectoryView from '../views/DirectoryView'; +import NotificationPrefView from '../views/NotificationPreferencesView'; +import VisitorNavigationView from '../views/VisitorNavigationView'; +import ForwardLivechatView from '../views/ForwardLivechatView'; +import LivechatEditView from '../views/LivechatEditView'; +import PickerView from '../views/PickerView'; +import ThreadMessagesView from '../views/ThreadMessagesView'; +import MarkdownTableView from '../views/MarkdownTableView'; +import ReadReceiptsView from '../views/ReadReceiptView'; + +// Profile Stack +import ProfileView from '../views/ProfileView'; + +// Settings Stack +import SettingsView from '../views/SettingsView'; +import LanguageView from '../views/LanguageView'; +import ThemeView from '../views/ThemeView'; +import DefaultBrowserView from '../views/DefaultBrowserView'; +import ScreenLockConfigView from '../views/ScreenLockConfigView'; + +// Admin Stack +import AdminPanelView from '../views/AdminPanelView'; + +// NewMessage Stack +import NewMessageView from '../views/NewMessageView'; +import CreateChannelView from '../views/CreateChannelView'; + +// InsideStackNavigator +import AttachmentView from '../views/AttachmentView'; +import ModalBlockView from '../views/ModalBlockView'; +import JitsiMeetView from '../views/JitsiMeetView'; +import StatusView from '../views/StatusView'; +import CreateDiscussionView from '../views/CreateDiscussionView'; + +// ChatsStackNavigator +const ChatsStack = createStackNavigator(); +const ChatsStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + return ( + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +// ProfileStackNavigator +const ProfileStack = createStackNavigator(); +const ProfileStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + return ( + + + + ); +}; + +// SettingsStackNavigator +const SettingsStack = createStackNavigator(); +const SettingsStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + + return ( + + + + + + + + ); +}; + +// AdminPanelStackNavigator +const AdminPanelStack = createStackNavigator(); +const AdminPanelStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + + return ( + + + + ); +}; + +// DrawerNavigator +const Drawer = createDrawerNavigator(); +const DrawerNavigator = () => ( + } + screenOptions={{ swipeEnabled: false }} + drawerType='back' + > + + + + + +); + +// NewMessageStackNavigator +const NewMessageStack = createStackNavigator(); +const NewMessageStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + + return ( + + + + + + + ); +}; + +// InsideStackNavigator +const InsideStack = createStackNavigator(); +const InsideStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + + return ( + + + + + + + + + ); +}; + +const RootInsideStack = ({ navigation, route }) => ( + <> + + + + +); +RootInsideStack.propTypes = { + navigation: PropTypes.object, + route: PropTypes.object +}; + +export default RootInsideStack; diff --git a/app/stacks/MasterDetailStack/ModalContainer.js b/app/stacks/MasterDetailStack/ModalContainer.js new file mode 100644 index 000000000..79b572010 --- /dev/null +++ b/app/stacks/MasterDetailStack/ModalContainer.js @@ -0,0 +1,34 @@ +import React from 'react'; +import { TouchableWithoutFeedback, View, StyleSheet } from 'react-native'; +import PropTypes from 'prop-types'; + +import sharedStyles from '../../views/Styles'; +import { themes } from '../../constants/colors'; + +const styles = StyleSheet.create({ + root: { + flex: 1, + alignItems: 'center', + justifyContent: 'center' + }, + backdrop: { + ...StyleSheet.absoluteFill + } +}); + +export const ModalContainer = ({ navigation, children, theme }) => ( + + navigation.pop()}> + + + + {children} + + +); + +ModalContainer.propTypes = { + navigation: PropTypes.object, + children: PropTypes.element, + theme: PropTypes.string +}; diff --git a/app/stacks/MasterDetailStack/index.js b/app/stacks/MasterDetailStack/index.js new file mode 100644 index 000000000..3e2466c5f --- /dev/null +++ b/app/stacks/MasterDetailStack/index.js @@ -0,0 +1,307 @@ +import React, { useEffect } from 'react'; +import PropTypes from 'prop-types'; +import { useIsFocused } from '@react-navigation/native'; +import { createStackNavigator } from '@react-navigation/stack'; +import { createDrawerNavigator } from '@react-navigation/drawer'; + +import { ThemeContext } from '../../theme'; +import { + defaultHeader, themedHeader, StackAnimation, FadeFromCenterModal +} from '../../utils/navigation'; +import Toast from '../../containers/Toast'; +import NotificationBadge from '../../notifications/inApp'; +import { ModalContainer } from './ModalContainer'; + +// Chats Stack +import RoomView from '../../views/RoomView'; +import RoomsListView from '../../views/RoomsListView'; +import RoomActionsView from '../../views/RoomActionsView'; +import RoomInfoView from '../../views/RoomInfoView'; +import RoomInfoEditView from '../../views/RoomInfoEditView'; +import RoomMembersView from '../../views/RoomMembersView'; +import SearchMessagesView from '../../views/SearchMessagesView'; +import SelectedUsersView from '../../views/SelectedUsersView'; +import InviteUsersView from '../../views/InviteUsersView'; +import InviteUsersEditView from '../../views/InviteUsersEditView'; +import MessagesView from '../../views/MessagesView'; +import AutoTranslateView from '../../views/AutoTranslateView'; +import DirectoryView from '../../views/DirectoryView'; +import NotificationPrefView from '../../views/NotificationPreferencesView'; +import VisitorNavigationView from '../../views/VisitorNavigationView'; +import ForwardLivechatView from '../../views/ForwardLivechatView'; +import LivechatEditView from '../../views/LivechatEditView'; +import PickerView from '../../views/PickerView'; +import ThreadMessagesView from '../../views/ThreadMessagesView'; +import MarkdownTableView from '../../views/MarkdownTableView'; +import ReadReceiptsView from '../../views/ReadReceiptView'; +import ProfileView from '../../views/ProfileView'; +import SettingsView from '../../views/SettingsView'; +import LanguageView from '../../views/LanguageView'; +import ThemeView from '../../views/ThemeView'; +import DefaultBrowserView from '../../views/DefaultBrowserView'; +import ScreenLockConfigView from '../../views/ScreenLockConfigView'; +import AdminPanelView from '../../views/AdminPanelView'; +import NewMessageView from '../../views/NewMessageView'; +import CreateChannelView from '../../views/CreateChannelView'; + +// InsideStackNavigator +import AttachmentView from '../../views/AttachmentView'; +import ModalBlockView from '../../views/ModalBlockView'; +import JitsiMeetView from '../../views/JitsiMeetView'; +import StatusView from '../../views/StatusView'; +import CreateDiscussionView from '../../views/CreateDiscussionView'; + +import { setKeyCommands, deleteKeyCommands } from '../../commands'; + +// ChatsStackNavigator +const ChatsStack = createStackNavigator(); +const ChatsStackNavigator = React.memo(() => { + const { theme } = React.useContext(ThemeContext); + + const isFocused = useIsFocused(); + useEffect(() => { + if (isFocused) { + setKeyCommands(); + } else { + deleteKeyCommands(); + } + return () => { + deleteKeyCommands(); + }; + }, [isFocused]); + + return ( + + + + ); +}); + +// DrawerNavigator +const Drawer = createDrawerNavigator(); +const DrawerNavigator = React.memo(() => ( + } + drawerType='permanent' + > + + +)); + +const ModalStack = createStackNavigator(); +const ModalStackNavigator = React.memo(({ navigation }) => { + const { theme } = React.useContext(ThemeContext); + return ( + + + RoomActionsView.navigationOptions({ ...props, isMasterDetail: true })} + /> + + + + + + + + + + DirectoryView.navigationOptions({ ...props, isMasterDetail: true })} + /> + + + + + + ThreadMessagesView.navigationOptions({ ...props, isMasterDetail: true })} + /> + + + SettingsView.navigationOptions({ ...props, isMasterDetail: true })} + /> + + + + + + ProfileView.navigationOptions({ ...props, isMasterDetail: true })} + /> + AdminPanelView.navigationOptions({ ...props, isMasterDetail: true })} + /> + + + + + + + ); +}); + +ModalStackNavigator.propTypes = { + navigation: PropTypes.object +}; + +// InsideStackNavigator +const InsideStack = createStackNavigator(); +const InsideStackNavigator = React.memo(() => { + const { theme } = React.useContext(ThemeContext); + return ( + + + + + + + + ); +}); + +const RootInsideStack = React.memo(({ navigation, route }) => ( + <> + + + + +)); +RootInsideStack.propTypes = { + navigation: PropTypes.object, + route: PropTypes.object +}; + +export default RootInsideStack; diff --git a/app/stacks/OutsideStack.js b/app/stacks/OutsideStack.js new file mode 100644 index 000000000..f66e734fe --- /dev/null +++ b/app/stacks/OutsideStack.js @@ -0,0 +1,101 @@ +import React from 'react'; +import { createStackNavigator } from '@react-navigation/stack'; +import { connect } from 'react-redux'; +import PropTypes from 'prop-types'; + +import { ThemeContext } from '../theme'; +import { + defaultHeader, themedHeader, StackAnimation, ModalAnimation +} from '../utils/navigation'; + +// Outside Stack +import OnboardingView from '../views/OnboardingView'; +import NewServerView from '../views/NewServerView'; +import WorkspaceView from '../views/WorkspaceView'; +import LoginView from '../views/LoginView'; +import ForgotPasswordView from '../views/ForgotPasswordView'; +import RegisterView from '../views/RegisterView'; +import LegalView from '../views/LegalView'; +import AuthenticationWebView from '../views/AuthenticationWebView'; +import { ROOT_OUTSIDE } from '../actions/app'; + +// Outside +const Outside = createStackNavigator(); +const _OutsideStack = ({ root }) => { + const { theme } = React.useContext(ThemeContext); + + return ( + + {root === ROOT_OUTSIDE ? ( + + ) : null} + + + + + + + + ); +}; + +const mapStateToProps = state => ({ + root: state.app.root +}); + +_OutsideStack.propTypes = { + root: PropTypes.string +}; + +const OutsideStack = connect(mapStateToProps)(_OutsideStack); + +// OutsideStackModal +const OutsideModal = createStackNavigator(); +const OutsideStackModal = () => { + const { theme } = React.useContext(ThemeContext); + + return ( + + + + + ); +}; + +export default OutsideStackModal; diff --git a/app/tablet.js b/app/tablet.js deleted file mode 100644 index 89dc9ab74..000000000 --- a/app/tablet.js +++ /dev/null @@ -1,222 +0,0 @@ -import React from 'react'; -import { View } from 'react-native'; -import PropTypes from 'prop-types'; -import { NavigationActions, StackActions } from 'react-navigation'; -import KeyCommands from 'react-native-keycommands'; - -import Navigation from './lib/Navigation'; -import { isSplited } from './utils/deviceInfo'; -import { - App, RoomContainer, ModalContainer, NotificationContainer -} from './index'; -import { MAX_SIDEBAR_WIDTH } from './constants/tablet'; -import ModalNavigation from './lib/ModalNavigation'; -import { keyCommands, defaultCommands } from './commands'; -import { themes } from './constants/colors'; - -import sharedStyles from './views/Styles'; - -let modalRef; -let roomRef; -let notificationRef; - -export const initTabletNav = (setState) => { - let inCall = false; - - const defaultApp = App.router.getStateForAction; - const defaultModal = ModalContainer.router.getStateForAction; - const defaultRoom = RoomContainer.router.getStateForAction; - const defaultNotification = NotificationContainer.router.getStateForAction; - - NotificationContainer.router.getStateForAction = (action, state) => { - if (action.type === NavigationActions.NAVIGATE && isSplited()) { - const { routeName, params } = action; - if (routeName === 'RoomView') { - const resetAction = StackActions.reset({ - index: 0, - actions: [NavigationActions.navigate({ routeName, params })] - }); - roomRef.dispatch(resetAction); - } - } - return defaultNotification(action, state); - }; - - RoomContainer.router.getStateForAction = (action, state) => { - if (action.type === NavigationActions.NAVIGATE && isSplited()) { - const { routeName, params } = action; - if (routeName === 'RoomActionsView') { - modalRef.dispatch(NavigationActions.navigate({ routeName, params })); - setState({ showModal: true }); - return null; - } - if (routeName === 'AttachmentView') { - modalRef.dispatch(NavigationActions.navigate({ routeName, params })); - setState({ showModal: true }); - return null; - } - } - if (action.type === 'Navigation/RESET' && isSplited()) { - const { params } = action.actions[action.index]; - const routes = state.routes[state.index] && state.routes[state.index].params; - if (params && params.rid && routes && routes.rid && params.rid === routes.rid) { - return null; - } - } - return defaultRoom(action, state); - }; - - ModalContainer.router.getStateForAction = (action, state) => { - if (action.type === 'Navigation/POP' && isSplited()) { - modalRef.dispatch(NavigationActions.navigate({ routeName: 'AuthLoading' })); - setState({ showModal: false }); - } - if (action.type === NavigationActions.NAVIGATE && isSplited()) { - const { routeName, params } = action; - if (routeName === 'RoomView') { - Navigation.navigate(routeName, params); - } - } - return defaultModal(action, state); - }; - - App.router.getStateForAction = (action, state) => { - if (action.type === NavigationActions.NAVIGATE) { - const { routeName, params } = action; - - if (routeName === 'InsideStack') { - let commands = defaultCommands; - let newState = { inside: true }; - if (isSplited()) { - commands = [...commands, ...keyCommands]; - newState = { ...newState, showModal: false }; - } - KeyCommands.setKeyCommands(commands); - setState(newState); - } - if (isSplited()) { - if (routeName === 'ReadReceiptsView') { - roomRef.dispatch(NavigationActions.navigate({ routeName, params })); - return null; - } - if (routeName === 'OutsideStack') { - KeyCommands.deleteKeyCommands([...defaultCommands, ...keyCommands]); - setState({ inside: false, showModal: false }); - } - if (routeName === 'JitsiMeetView') { - inCall = true; - KeyCommands.deleteKeyCommands([...defaultCommands, ...keyCommands]); - setState({ inside: false, showModal: false }); - } - if (routeName === 'OnboardingView' || routeName === 'NewServerView') { - KeyCommands.deleteKeyCommands([...defaultCommands, ...keyCommands]); - setState({ inside: false, showModal: false }); - } - if (routeName === 'ModalBlockView' || routeName === 'StatusView' || routeName === 'CreateDiscussionView') { - modalRef.dispatch(NavigationActions.navigate({ routeName, params })); - setState({ showModal: true }); - return null; - } - if (routeName === 'RoomView') { - const resetAction = StackActions.reset({ - index: 0, - actions: [NavigationActions.navigate({ routeName, params })] - }); - roomRef.dispatch(resetAction); - notificationRef.dispatch(resetAction); - setState({ showModal: false }); - return null; - } - - if (routeName === 'RoomsListView') { - const resetAction = StackActions.reset({ - index: 0, - actions: [NavigationActions.navigate({ routeName: 'RoomView', params: {} })] - }); - roomRef.dispatch(resetAction); - notificationRef.dispatch(resetAction); - setState({ showModal: false }); - return null; - } - - if (routeName === 'NewMessageView') { - modalRef.dispatch(NavigationActions.navigate({ routeName, params })); - setState({ showModal: true }); - return null; - } - if (routeName === 'DirectoryView') { - modalRef.dispatch(NavigationActions.navigate({ routeName })); - setState({ showModal: true }); - return null; - } - } - } - if (action.type === 'Navigation/TOGGLE_DRAWER' && isSplited()) { - modalRef.dispatch(NavigationActions.navigate({ routeName: 'SettingsView' })); - setState({ showModal: true }); - return null; - } - if (action.type === 'Navigation/POP' && inCall) { - KeyCommands.setKeyCommands([...defaultCommands, ...keyCommands]); - setState({ inside: true, showModal: false }); - } - return defaultApp(action, state); - }; -}; - -const Split = ({ - split, tablet, showModal, closeModal, setModalRef, theme -}) => { - if (split) { - return ( - <> - - roomRef = ref} screenProps={{ split: tablet, theme }} /> - - - - ); - } - return null; -}; - -const Tablet = ({ - children, tablet, theme, inside, showModal, closeModal, onLayout -}) => { - const setModalRef = (ref) => { - modalRef = ref; - ModalNavigation.setTopLevelNavigator(modalRef); - }; - - const split = tablet && inside; - return ( - - - {children} - - - notificationRef = ref} screenProps={{ theme }} /> - - ); -}; - -Split.propTypes = { - split: PropTypes.bool, - tablet: PropTypes.bool, - showModal: PropTypes.bool, - closeModal: PropTypes.func, - setModalRef: PropTypes.func, - theme: PropTypes.string -}; - -Tablet.propTypes = { - children: PropTypes.node, - tablet: PropTypes.bool, - inside: PropTypes.bool, - showModal: PropTypes.bool, - closeModal: PropTypes.func, - onLayout: PropTypes.func, - theme: PropTypes.string -}; - -export default Tablet; diff --git a/app/utils/deviceInfo.js b/app/utils/deviceInfo.js index a7ba16794..7961b440a 100644 --- a/app/utils/deviceInfo.js +++ b/app/utils/deviceInfo.js @@ -1,8 +1,6 @@ import { Platform } from 'react-native'; import DeviceInfo from 'react-native-device-info'; -import { MIN_WIDTH_SPLIT_LAYOUT } from '../constants/tablet'; - export const hasNotch = DeviceInfo.hasNotch(); export const isIOS = Platform.OS === 'ios'; export const isAndroid = !isIOS; @@ -18,10 +16,3 @@ export const supportSystemTheme = () => { // Tablet info export const isTablet = DeviceInfo.isTablet(); - -// We need to use this when app is used on splitview with another app -// to handle cases on app view not-larger sufficient to show splited views (room list/room) -// https://github.com/RocketChat/Rocket.Chat.ReactNative/pull/1300#discussion_r341405245 -let _width = null; -export const setWidth = width => _width = width; -export const isSplited = () => isTablet && _width > MIN_WIDTH_SPLIT_LAYOUT; diff --git a/app/utils/goRoom.js b/app/utils/goRoom.js index 70a4fe013..f12630951 100644 --- a/app/utils/goRoom.js +++ b/app/utils/goRoom.js @@ -1,8 +1,14 @@ import Navigation from '../lib/Navigation'; import RocketChat from '../lib/rocketchat'; -const navigate = (item) => { - Navigation.navigate('RoomView', { +const navigate = ({ item, isMasterDetail, ...props }) => { + let navigationMethod = Navigation.navigate; + + if (isMasterDetail) { + navigationMethod = Navigation.replace; + } + + navigationMethod('RoomView', { rid: item.rid, name: RocketChat.getRoomTitle(item), t: item.t, @@ -10,30 +16,32 @@ const navigate = (item) => { room: item, search: item.search, visitor: item.visitor, - roomUserId: RocketChat.getUidDirectMessage(item) + roomUserId: RocketChat.getUidDirectMessage(item), + ...props }); }; -export const goRoom = async(item = {}) => { - if (!item.search) { - return navigate(item); - } - if (item.t === 'd') { +export const goRoom = async({ item = {}, isMasterDetail = false, ...props }) => { + if (item.t === 'd' && item.search) { // if user is using the search we need first to join/create room try { const { username } = item; const result = await RocketChat.createDirectMessage(username); if (result.success) { return navigate({ - rid: result.room._id, - name: username, - t: 'd' + item: { + rid: result.room._id, + name: username, + t: 'd' + }, + isMasterDetail, + ...props }); } } catch { // Do nothing } - } else { - return navigate(item); } + + return navigate({ item, isMasterDetail, ...props }); }; diff --git a/app/utils/log.js b/app/utils/log.js index 47b2ddc4f..f2d0fe2f6 100644 --- a/app/utils/log.js +++ b/app/utils/log.js @@ -16,6 +16,11 @@ export const logServerVersion = (serverVersion) => { }; }; +export const setCurrentScreen = (currentScreen) => { + analytics().setCurrentScreen(currentScreen); + leaveBreadcrumb(currentScreen, { type: 'navigation' }); +}; + export default (e) => { if (e instanceof Error && e.message !== 'Aborted' && !__DEV__) { bugsnag.notify(e, (report) => { diff --git a/app/utils/navigation.js b/app/utils/navigation.js deleted file mode 100644 index 729ea5202..000000000 --- a/app/utils/navigation.js +++ /dev/null @@ -1,50 +0,0 @@ -import { StyleSheet } from 'react-native'; - -import { analytics, leaveBreadcrumb } from './log'; -import { themes } from '../constants/colors'; - -export const defaultHeader = { - headerBackTitle: null -}; - -export const cardStyle = { - backgroundColor: 'rgba(0,0,0,0)' -}; - -const borderBottom = theme => ({ - borderBottomWidth: StyleSheet.hairlineWidth, - borderBottomColor: themes[theme].headerBorder, - elevation: 0 -}); - -export const themedHeader = theme => ({ - headerStyle: { - ...borderBottom(theme), - backgroundColor: themes[theme].headerBackground - }, - headerTintColor: themes[theme].headerTintColor, - headerTitleStyle: { color: themes[theme].headerTitleColor } -}); - -// gets the current screen from navigation state -export const getActiveRouteName = (navigationState) => { - if (!navigationState) { - return null; - } - const route = navigationState.routes[navigationState.index]; - // dive into nested navigators - if (route.routes) { - return getActiveRouteName(route); - } - return route.routeName; -}; - -export const onNavigationStateChange = (prevState, currentState) => { - const currentScreen = getActiveRouteName(currentState); - const prevScreen = getActiveRouteName(prevState); - - if (prevScreen !== currentScreen) { - analytics().setCurrentScreen(currentScreen); - leaveBreadcrumb(currentScreen, { type: 'navigation' }); - } -}; diff --git a/app/utils/navigation/animations.js b/app/utils/navigation/animations.js new file mode 100644 index 000000000..13526ff77 --- /dev/null +++ b/app/utils/navigation/animations.js @@ -0,0 +1,96 @@ +import { Easing, Animated } from 'react-native'; +import { TransitionPresets, HeaderStyleInterpolators } from '@react-navigation/stack'; + +import { isAndroid } from '../deviceInfo'; +import conditional from './conditional'; + +const { multiply } = Animated; + +const forFadeFromCenter = ({ + current, + closing +}) => { + const opacity = conditional( + closing, + current.progress, + current.progress.interpolate({ + inputRange: [0, 0.5, 0.9, 1], + outputRange: [0, 0.25, 0.7, 1] + }) + ); + + return { + cardStyle: { + opacity + } + }; +}; + +const FadeIn = { + animation: 'timing', + config: { + duration: 250, + easing: Easing.out(Easing.poly(5)) + } +}; + +const FadeOut = { + animation: 'timing', + config: { + duration: 150, + easing: Easing.in(Easing.poly(5)) + } +}; + +export const FadeFromCenterModal = { + gestureDirection: 'vertical', + transitionSpec: { + open: FadeIn, + close: FadeOut + }, + cardStyleInterpolator: forFadeFromCenter +}; + +const forStackAndroid = ({ + current, + inverted, + layouts: { screen }, + closing +}) => { + const translateX = multiply( + current.progress.interpolate({ + inputRange: [0, 1], + outputRange: [screen.width, 0] + }), + inverted + ); + + const opacity = conditional( + closing, + current.progress, + current.progress.interpolate({ + inputRange: [0, 1], + outputRange: [0, 1] + }) + ); + + return { + cardStyle: { + opacity, + transform: [{ translateX }] + } + }; +}; + +const StackAndroid = { + gestureDirection: 'horizontal', + transitionSpec: { + open: FadeIn, + close: FadeOut + }, + cardStyleInterpolator: forStackAndroid, + headerStyleInterpolator: HeaderStyleInterpolators.forFade +}; + +export const StackAnimation = isAndroid ? StackAndroid : TransitionPresets.SlideFromRightIOS; +export const ModalAnimation = TransitionPresets.ModalTransition; diff --git a/app/utils/navigation/conditional.js b/app/utils/navigation/conditional.js new file mode 100644 index 000000000..015c52ae1 --- /dev/null +++ b/app/utils/navigation/conditional.js @@ -0,0 +1,30 @@ +// Taken from https://github.com/react-navigation/react-navigation/blob/master/packages/stack/src/utils/conditional.tsx +import { Animated } from 'react-native'; + +const { add, multiply } = Animated; + +/** + * Use an Animated Node based on a condition. Similar to Reanimated's `cond`. + * + * @param condition Animated Node representing the condition, must be 0 or 1, 1 means `true`, 0 means `false` + * @param main Animated Node to use if the condition is `true` + * @param fallback Animated Node to use if the condition is `false` + */ +export default function conditional(condition, main, fallback) { + // To implement this behavior, we multiply the main node with the condition. + // So if condition is 0, result will be 0, and if condition is 1, result will be main node. + // Then we multiple reverse of the condition (0 if condition is 1) with the fallback. + // So if condition is 0, result will be fallback node, and if condition is 1, result will be 0, + // This way, one of them will always be 0, and other one will be the value we need. + // In the end we add them both together, 0 + value we need = value we need + return add( + multiply(condition, main), + multiply( + condition.interpolate({ + inputRange: [0, 1], + outputRange: [1, 0] + }), + fallback + ) + ); +} diff --git a/app/utils/navigation/index.js b/app/utils/navigation/index.js new file mode 100644 index 000000000..e3492df60 --- /dev/null +++ b/app/utils/navigation/index.js @@ -0,0 +1,59 @@ +import { StyleSheet } from 'react-native'; +import { DefaultTheme, DarkTheme } from '@react-navigation/native'; + +import { themes } from '../../constants/colors'; + +export * from './animations'; + +export const defaultHeader = { + headerBackTitleVisible: false, + cardOverlayEnabled: true, + cardStyle: { backgroundColor: 'transparent' } +}; + + +export const cardStyle = { + backgroundColor: 'rgba(0,0,0,0)' +}; + +export const borderBottom = theme => ({ + borderBottomWidth: StyleSheet.hairlineWidth, + borderBottomColor: themes[theme].headerBorder, + elevation: 0 +}); + +export const themedHeader = theme => ({ + headerStyle: { + ...borderBottom(theme), + backgroundColor: themes[theme].headerBackground + }, + headerTintColor: themes[theme].headerTintColor, + headerTitleStyle: { color: themes[theme].headerTitleColor } +}); + +export const navigationTheme = (theme) => { + const defaultNavTheme = theme === 'light' ? DefaultTheme : DarkTheme; + + return { + ...defaultNavTheme, + colors: { + ...defaultNavTheme.colors, + background: themes[theme].backgroundColor, + border: themes[theme].borderColor + } + }; +}; + +// Gets the current screen from navigation state +export const getActiveRoute = (state) => { + const route = state.routes[state.index]; + + if (route.state) { + // Dive into nested navigators + return getActiveRoute(route.state); + } + + return route; +}; + +export const getActiveRouteName = state => getActiveRoute(state).name; diff --git a/app/views/AdminPanelView/index.js b/app/views/AdminPanelView/index.js index 3bda33ffe..283e2ef74 100644 --- a/app/views/AdminPanelView/index.js +++ b/app/views/AdminPanelView/index.js @@ -1,22 +1,18 @@ import React from 'react'; import PropTypes from 'prop-types'; import { WebView } from 'react-native-webview'; -import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import I18n from '../../i18n'; import StatusBar from '../../containers/StatusBar'; import { DrawerButton } from '../../containers/HeaderButton'; -import styles from '../Styles'; -import { themedHeader } from '../../utils/navigation'; import { withTheme } from '../../theme'; -import { themes } from '../../constants/colors'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; class AdminPanelView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => ({ - ...themedHeader(screenProps.theme), - headerLeft: , + static navigationOptions = ({ navigation, isMasterDetail }) => ({ + headerLeft: isMasterDetail ? undefined : () => , title: I18n.t('Admin_Panel') }) @@ -32,7 +28,7 @@ class AdminPanelView extends React.Component { return null; } return ( - + { - const { theme } = screenProps; - const attachment = navigation.getParam('attachment'); - const from = navigation.getParam('from'); - const handleSave = navigation.getParam('handleSave', () => {}); - const { title } = attachment; - const options = { - title: decodeURI(title), - ...themedHeader(theme), - headerRight: - }; - if (from !== 'MessagesView') { - options.gesturesEnabled = false; - options.headerLeft = ; - } - return options; - } - static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string, baseUrl: PropTypes.string, user: PropTypes.shape({ @@ -58,15 +40,14 @@ class AttachmentView extends React.Component { constructor(props) { super(props); - const attachment = props.navigation.getParam('attachment'); + const attachment = props.route.params?.attachment; this.state = { attachment, loading: true }; + this.setHeader(); } componentDidMount() { const { navigation } = this.props; - navigation.setParams({ handleSave: this.handleSave }); - - this.willBlurListener = navigation.addListener('willBlur', () => { + this.unsubscribeBlur = navigation.addListener('blur', () => { if (this.videoRef && this.videoRef.stopAsync) { this.videoRef.stopAsync(); } @@ -74,11 +55,23 @@ class AttachmentView extends React.Component { } componentWillUnmount() { - if (this.willBlurListener && this.willBlurListener.remove) { - this.willBlurListener.remove(); + if (this.unsubscribeBlur) { + this.unsubscribeBlur(); } } + setHeader = () => { + const { route, navigation } = this.props; + const attachment = route.params?.attachment; + const { title } = attachment; + const options = { + headerLeft: () => , + title: decodeURI(title), + headerRight: () => + }; + navigation.setOptions(options); + } + getVideoRef = ref => this.videoRef = ref; handleSave = async() => { diff --git a/app/views/AuthLoadingView.js b/app/views/AuthLoadingView.js index cbc3587e4..6769af899 100644 --- a/app/views/AuthLoadingView.js +++ b/app/views/AuthLoadingView.js @@ -2,6 +2,8 @@ import React from 'react'; import { View, Text, StyleSheet, ActivityIndicator } from 'react-native'; +import PropTypes from 'prop-types'; +import { connect } from 'react-redux'; import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; @@ -24,17 +26,25 @@ const styles = StyleSheet.create({ } }); -export default React.memo(withTheme(({ theme, navigation }) => { - const text = navigation.getParam('text'); - return ( - - - {text && ( - <> - - {`${ text }\n${ I18n.t('Please_wait') }`} - - )} - - ); -})); +const AuthLoadingView = React.memo(({ theme, text }) => ( + + + {text && ( + <> + + {`${ text }\n${ I18n.t('Please_wait') }`} + + )} + +)); + +const mapStateToProps = state => ({ + text: state.app.text +}); + +AuthLoadingView.propTypes = { + theme: PropTypes.string, + text: PropTypes.string +}; + +export default connect(mapStateToProps)(withTheme(AuthLoadingView)); diff --git a/app/views/AuthenticationWebView.js b/app/views/AuthenticationWebView.js index cf169cf98..311fcd299 100644 --- a/app/views/AuthenticationWebView.js +++ b/app/views/AuthenticationWebView.js @@ -6,29 +6,20 @@ import parse from 'url-parse'; import RocketChat from '../lib/rocketchat'; import { isIOS } from '../utils/deviceInfo'; -import { CloseModalButton } from '../containers/HeaderButton'; import StatusBar from '../containers/StatusBar'; import ActivityIndicator from '../containers/ActivityIndicator'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; import debounce from '../utils/debounce'; +import { CloseModalButton } from '../containers/HeaderButton'; const userAgent = isIOS ? 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' : 'Mozilla/5.0 (Linux; Android 6.0.1; SM-G920V Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36'; class AuthenticationWebView extends React.PureComponent { - static navigationOptions = ({ navigation, screenProps }) => { - const authType = navigation.getParam('authType', 'oauth'); - return { - ...themedHeader(screenProps.theme), - headerLeft: , - title: authType === 'saml' || authType === 'cas' ? 'SSO' : 'OAuth' - }; - } - static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, server: PropTypes.string, theme: PropTypes.string } @@ -39,7 +30,6 @@ class AuthenticationWebView extends React.PureComponent { logging: false, loading: false }; - this.authType = props.navigation.getParam('authType', 'oauth'); this.redirectRegex = new RegExp(`(?=.*(${ props.server }))(?=.*(credentialToken))(?=.*(credentialSecret))`, 'g'); } @@ -76,14 +66,15 @@ class AuthenticationWebView extends React.PureComponent { onNavigationStateChange = (webViewState) => { const url = decodeURIComponent(webViewState.url); - if (this.authType === 'saml' || this.authType === 'cas') { - const { navigation } = this.props; - const ssoToken = navigation.getParam('ssoToken'); + const { route } = this.props; + const { authType } = route.params; + if (authType === 'saml' || authType === 'cas') { + const { ssoToken } = route.params; const parsedUrl = parse(url, true); // ticket -> cas / validate & saml_idp_credentialToken -> saml if (parsedUrl.pathname?.includes('validate') || parsedUrl.query?.ticket || parsedUrl.query?.saml_idp_credentialToken) { let payload; - if (this.authType === 'saml') { + if (authType === 'saml') { const token = parsedUrl.query?.saml_idp_credentialToken || ssoToken; const credentialToken = { credentialToken: token }; payload = { ...credentialToken, saml: true }; @@ -94,7 +85,7 @@ class AuthenticationWebView extends React.PureComponent { } } - if (this.authType === 'oauth') { + if (authType === 'oauth') { if (this.redirectRegex.test(url)) { const parts = url.split('#'); const credentials = JSON.parse(parts[1]); @@ -105,13 +96,13 @@ class AuthenticationWebView extends React.PureComponent { render() { const { loading } = this.state; - const { navigation, theme } = this.props; - const uri = navigation.getParam('url'); + const { route, theme } = this.props; + const { url } = route.params; return ( <> { @@ -131,4 +122,12 @@ const mapStateToProps = state => ({ server: state.server.server }); +AuthenticationWebView.navigationOptions = ({ route, navigation }) => { + const { authType } = route.params; + return { + headerLeft: () => , + title: authType === 'saml' || authType === 'cas' ? 'SSO' : 'OAuth' + }; +}; + export default connect(mapStateToProps)(withTheme(AuthenticationWebView)); diff --git a/app/views/AutoTranslateView/index.js b/app/views/AutoTranslateView/index.js index b9beac37a..4cf8c4a5e 100644 --- a/app/views/AutoTranslateView/index.js +++ b/app/views/AutoTranslateView/index.js @@ -1,9 +1,8 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - FlatList, Switch, View, StyleSheet + FlatList, Switch, View, StyleSheet, ScrollView } from 'react-native'; -import { SafeAreaView, ScrollView } from 'react-navigation'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; @@ -15,7 +14,7 @@ import Separator from '../../containers/Separator'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; +import SafeAreaView from '../../containers/SafeAreaView'; const styles = StyleSheet.create({ contentContainerStyle: { @@ -49,20 +48,19 @@ SectionSeparator.propTypes = { }; class AutoTranslateView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Auto_Translate'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Auto_Translate') + } static propTypes = { - navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string } constructor(props) { super(props); - this.rid = props.navigation.getParam('rid'); - const room = props.navigation.getParam('room'); + this.rid = props.route.params?.rid; + const room = props.route.params?.room; if (room && room.observe) { this.roomObservable = room.observe(); @@ -163,11 +161,7 @@ class AutoTranslateView extends React.Component { const { languages } = this.state; const { theme } = this.props; return ( - + { - const submit = navigation.getParam('submit', () => {}); - const showSubmit = navigation.getParam('showSubmit'); - return { - ...themedHeader(screenProps.theme), - title: I18n.t('Create_Channel'), - headerRight: ( - showSubmit - ? ( - - - - ) - : null - ) - }; + static navigationOptions = { + title: I18n.t('Create_Channel') } static propTypes = { @@ -114,11 +99,6 @@ class CreateChannelView extends React.Component { broadcast: false } - componentDidMount() { - const { navigation } = this.props; - navigation.setParams({ submit: this.submit }); - } - shouldComponentUpdate(nextProps, nextState) { const { channelName, type, readOnly, broadcast @@ -148,9 +128,19 @@ class CreateChannelView extends React.Component { return false; } - onChangeText = (channelName) => { + toggleRightButton = (channelName) => { const { navigation } = this.props; - navigation.setParams({ showSubmit: channelName.trim().length > 0 }); + navigation.setOptions({ + headerRight: () => channelName.trim().length > 0 && ( + + + + ) + }); + } + + onChangeText = (channelName) => { + this.toggleRightButton(channelName); this.setState({ channelName }); } @@ -294,7 +284,7 @@ class CreateChannelView extends React.Component { keyboardVerticalOffset={128} > - + { - const submit = navigation.getParam('submit', () => {}); - const showSubmit = navigation.getParam('showSubmit', navigation.getParam('message')); - return { - ...themedHeader(screenProps.theme), - title: I18n.t('Create_Discussion'), - headerRight: ( - showSubmit - ? ( - - - - ) - : null - ), - headerLeft: - }; - } - propTypes = { navigation: PropTypes.object, + route: PropTypes.object, server: PropTypes.string, user: PropTypes.object, create: PropTypes.func, @@ -55,31 +37,32 @@ class CreateChannelView extends React.Component { result: PropTypes.object, failure: PropTypes.bool, error: PropTypes.object, - theme: PropTypes.string + theme: PropTypes.string, + isMasterDetail: PropTypes.bool } constructor(props) { super(props); - const { navigation } = props; - navigation.setParams({ submit: this.submit }); - this.channel = navigation.getParam('channel'); - const message = navigation.getParam('message', {}); + const { route } = props; + this.channel = route.params?.channel; + const message = route.params?.message ?? {}; this.state = { channel: this.channel, message, - name: message.msg || '', + name: message?.msg || '', users: [], reply: '' }; + this.setHeader(); } componentDidUpdate(prevProps, prevState) { const { - loading, failure, error, result, navigation + loading, failure, error, result, isMasterDetail } = this.props; if (!isEqual(this.state, prevState)) { - navigation.setParams({ showSubmit: this.valid() }); + this.setHeader(); } if (!loading && loading !== prevProps.loading) { @@ -89,17 +72,38 @@ class CreateChannelView extends React.Component { showErrorAlert(msg); } else { const { rid, t, prid } = result; - if (this.channel) { + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + } else { Navigation.navigate('RoomsListView'); } - Navigation.navigate('RoomView', { + const item = { rid, name: RocketChat.getRoomTitle(result), t, prid - }); + }; + goRoom({ item, isMasterDetail }); } }, 300); } } + setHeader = () => { + const { navigation, route } = this.props; + const showCloseModal = route.params?.showCloseModal; + navigation.setOptions({ + title: I18n.t('Create_Discussion'), + headerRight: ( + this.valid() + ? () => ( + + + + ) + : null + ), + headerLeft: showCloseModal ? () => : undefined + }); + } + submit = () => { const { name: t_name, channel: { prid, rid }, message: { id: pmid }, reply, users @@ -137,7 +141,7 @@ class CreateChannelView extends React.Component { keyboardVerticalOffset={128} > - + {I18n.t('Discussion_Desc')} ({ error: state.createDiscussion.error, failure: state.createDiscussion.failure, loading: state.createDiscussion.isFetching, - result: state.createDiscussion.result + result: state.createDiscussion.result, + isMasterDetail: state.app.isMasterDetail }); const mapDispatchToProps = dispatch => ({ diff --git a/app/views/DefaultBrowserView.js b/app/views/DefaultBrowserView.js index 528d3d59a..3148952ae 100644 --- a/app/views/DefaultBrowserView.js +++ b/app/views/DefaultBrowserView.js @@ -3,11 +3,9 @@ import PropTypes from 'prop-types'; import { StyleSheet, FlatList, View, Text, Linking } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import RNUserDefaults from 'rn-user-defaults'; import I18n from '../i18n'; -import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import sharedStyles from './Styles'; @@ -17,6 +15,7 @@ import ListItem from '../containers/ListItem'; import { CustomIcon } from '../lib/Icons'; import { DEFAULT_BROWSER_KEY } from '../utils/openLink'; import { isIOS } from '../utils/deviceInfo'; +import SafeAreaView from '../containers/SafeAreaView'; const DEFAULT_BROWSERS = [ { @@ -60,10 +59,9 @@ const styles = StyleSheet.create({ }); class DefaultBrowserView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Default_browser'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Default_browser') + } static propTypes = { theme: PropTypes.string @@ -164,11 +162,7 @@ class DefaultBrowserView extends React.Component { const { supported } = this.state; const { theme } = this.props; return ( - + { + static navigationOptions = ({ navigation, isMasterDetail }) => { const options = { - ...themedHeader(screenProps.theme), title: I18n.t('Directory') }; - if (screenProps.split) { - options.headerLeft = ; + if (isMasterDetail) { + options.headerLeft = () => ; } return options; } @@ -46,7 +45,8 @@ class DirectoryView extends React.Component { token: PropTypes.string }), theme: PropTypes.string, - directoryDefaultView: PropTypes.string + directoryDefaultView: PropTypes.string, + isMasterDetail: PropTypes.bool }; constructor(props) { @@ -125,14 +125,14 @@ class DirectoryView extends React.Component { this.setState(({ showOptionsDropdown }) => ({ showOptionsDropdown: !showOptionsDropdown })); } - goRoom = async({ - rid, name, t, search - }) => { - const { navigation } = this.props; - await navigation.navigate('RoomsListView'); - navigation.navigate('RoomView', { - rid, name, t, search - }); + goRoom = (item) => { + const { navigation, isMasterDetail } = this.props; + if (isMasterDetail) { + navigation.navigate('DrawerNavigator'); + } else { + navigation.navigate('RoomsListView'); + } + goRoom({ item, isMasterDetail }); } onPressItem = async(item) => { @@ -230,7 +230,11 @@ class DirectoryView extends React.Component { } = this.state; const { isFederationEnabled, theme } = this.props; return ( - + ({ baseUrl: state.server.server, user: getUserSelector(state), isFederationEnabled: state.settings.FEDERATION_Enabled, - directoryDefaultView: state.settings.Accounts_Directory_DefaultView + directoryDefaultView: state.settings.Accounts_Directory_DefaultView, + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(withTheme(DirectoryView)); diff --git a/app/views/DirectoryView/styles.js b/app/views/DirectoryView/styles.js index bc2699157..b026041c3 100644 --- a/app/views/DirectoryView/styles.js +++ b/app/views/DirectoryView/styles.js @@ -3,9 +3,6 @@ import { StyleSheet } from 'react-native'; import sharedStyles from '../Styles'; export default StyleSheet.create({ - safeAreaView: { - flex: 1 - }, list: { flex: 1 }, diff --git a/app/views/ForgotPasswordView.js b/app/views/ForgotPasswordView.js index d767afab6..d233c0578 100644 --- a/app/views/ForgotPasswordView.js +++ b/app/views/ForgotPasswordView.js @@ -11,17 +11,12 @@ import I18n from '../i18n'; import RocketChat from '../lib/rocketchat'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; -import { themedHeader } from '../utils/navigation'; import FormContainer, { FormContainerInner } from '../containers/FormContainer'; class ForgotPasswordView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const title = navigation.getParam('title', 'Rocket.Chat'); - return { - title, - ...themedHeader(screenProps.theme) - }; - } + static navigationOptions = ({ route }) => ({ + title: route.params?.title ?? 'Rocket.Chat' + }) static propTypes = { navigation: PropTypes.object, diff --git a/app/views/ForwardLivechatView.js b/app/views/ForwardLivechatView.js index d9c97b8bb..3807c9894 100644 --- a/app/views/ForwardLivechatView.js +++ b/app/views/ForwardLivechatView.js @@ -18,14 +18,16 @@ const styles = StyleSheet.create({ } }); -const ForwardLivechatView = ({ forwardRoom, navigation, theme }) => { +const ForwardLivechatView = ({ + forwardRoom, navigation, route, theme +}) => { const [departments, setDepartments] = useState([]); const [departmentId, setDepartment] = useState(); const [users, setUsers] = useState([]); const [userId, setUser] = useState(); const [room, setRoom] = useState(); - const rid = navigation.getParam('rid'); + const rid = route.params?.rid; const getDepartments = async() => { try { @@ -137,6 +139,7 @@ const ForwardLivechatView = ({ forwardRoom, navigation, theme }) => { ForwardLivechatView.propTypes = { forwardRoom: PropTypes.func, navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string }; ForwardLivechatView.navigationOptions = { diff --git a/app/views/InviteUsersEditView/index.js b/app/views/InviteUsersEditView/index.js index 5287358af..ee9874298 100644 --- a/app/views/InviteUsersEditView/index.js +++ b/app/views/InviteUsersEditView/index.js @@ -1,7 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { ScrollView, View } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import RNPickerSelect from 'react-native-picker-select'; @@ -17,8 +16,8 @@ import I18n from '../../i18n'; import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import Separator from '../../containers/Separator'; +import SafeAreaView from '../../containers/SafeAreaView'; const OPTIONS = { days: [{ @@ -60,13 +59,13 @@ const OPTIONS = { }; class InviteUsersView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Invite_users'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Invite_users') + } static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string, timeDateFormat: PropTypes.string, createInviteLink: PropTypes.func, @@ -75,7 +74,7 @@ class InviteUsersView extends React.Component { constructor(props) { super(props); - this.rid = props.navigation.getParam('rid'); + this.rid = props.route.params?.rid; } onValueChangePicker = (key, value) => { @@ -111,7 +110,7 @@ class InviteUsersView extends React.Component { render() { const { theme } = this.props; return ( - + ({ - title: I18n.t('Invite_users'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Invite_users') + } static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string, timeDateFormat: PropTypes.string, invite: PropTypes.object, @@ -37,7 +36,7 @@ class InviteUsersView extends React.Component { constructor(props) { super(props); - this.rid = props.navigation.getParam('rid'); + this.rid = props.route.params?.rid; } componentDidMount() { @@ -100,7 +99,7 @@ class InviteUsersView extends React.Component { theme, invite } = this.props; return ( - + ( class JitsiMeetView extends React.Component { static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, baseUrl: PropTypes.string, user: PropTypes.shape({ id: PropTypes.string, @@ -27,14 +28,14 @@ class JitsiMeetView extends React.Component { constructor(props) { super(props); - this.rid = props.navigation.getParam('rid'); + this.rid = props.route.params?.rid; this.onConferenceTerminated = this.onConferenceTerminated.bind(this); this.onConferenceJoined = this.onConferenceJoined.bind(this); this.jitsiTimeout = null; } componentDidMount() { - const { navigation, user, baseUrl } = this.props; + const { route, user, baseUrl } = this.props; const { name: displayName, id: userId, token, username } = user; @@ -47,8 +48,8 @@ class JitsiMeetView extends React.Component { displayName, avatar }; - const url = navigation.getParam('url'); - const onlyAudio = navigation.getParam('onlyAudio', false); + const url = route.params?.url; + const onlyAudio = route.params?.onlyAudio ?? false; if (onlyAudio) { JitsiMeet.audioCall(url, userInfo); } else { diff --git a/app/views/LanguageView/index.js b/app/views/LanguageView/index.js index 716ba335e..640602d83 100644 --- a/app/views/LanguageView/index.js +++ b/app/views/LanguageView/index.js @@ -2,7 +2,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; @@ -16,10 +15,10 @@ import ListItem from '../../containers/ListItem'; import Separator from '../../containers/Separator'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; -import { appStart as appStartAction } from '../../actions'; +import { appStart as appStartAction, ROOT_LOADING, ROOT_INSIDE } from '../../actions/app'; import { getUserSelector } from '../../selectors/login'; import database from '../../lib/database'; +import SafeAreaView from '../../containers/SafeAreaView'; const LANGUAGES = [ { @@ -59,10 +58,9 @@ const LANGUAGES = [ ]; class LanguageView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Change_Language'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Change_Language') + } static propTypes = { user: PropTypes.object, @@ -105,12 +103,12 @@ class LanguageView extends React.Component { const { appStart } = this.props; - await appStart('loading', I18n.t('Change_language_loading')); + await appStart({ root: ROOT_LOADING, text: I18n.t('Change_language_loading') }); // shows loading for at least 300ms await Promise.all([this.changeLanguage(language), new Promise(resolve => setTimeout(resolve, 300))]); - await appStart('inside'); + await appStart({ root: ROOT_INSIDE }); } changeLanguage = async(language) => { @@ -175,11 +173,7 @@ class LanguageView extends React.Component { render() { const { theme } = this.props; return ( - + ({ const mapDispatchToProps = dispatch => ({ setUser: params => dispatch(setUserAction(params)), - appStart: (...params) => dispatch(appStartAction(...params)) + appStart: params => dispatch(appStartAction(params)) }); export default connect(mapStateToProps, mapDispatchToProps)(withTheme(LanguageView)); diff --git a/app/views/LegalView.js b/app/views/LegalView.js index 3c16429bb..822b7fc18 100644 --- a/app/views/LegalView.js +++ b/app/views/LegalView.js @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import { Text, ScrollView, View, StyleSheet } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import Touch from '../utils/touch'; @@ -15,12 +14,9 @@ import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; import openLink from '../utils/openLink'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; +import SafeAreaView from '../containers/SafeAreaView'; const styles = StyleSheet.create({ - container: { - flex: 1 - }, scroll: { marginTop: 35, borderTopWidth: StyleSheet.hairlineWidth, @@ -52,11 +48,6 @@ Separator.propTypes = { }; class LegalView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Legal'), - ...themedHeader(screenProps.theme) - }) - static propTypes = { server: PropTypes.string, theme: PropTypes.string @@ -88,14 +79,7 @@ class LegalView extends React.Component { render() { const { theme } = this.props; return ( - + ({ server: state.server.server }); +LegalView.navigationOptions = { + title: I18n.t('Legal') +}; + export default connect(mapStateToProps)(withTheme(LegalView)); diff --git a/app/views/LivechatEditView.js b/app/views/LivechatEditView.js index 5ac1692e1..363413946 100644 --- a/app/views/LivechatEditView.js +++ b/app/views/LivechatEditView.js @@ -1,7 +1,6 @@ import React, { useState, useEffect } from 'react'; import PropTypes from 'prop-types'; import { Text, StyleSheet, ScrollView } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import { withTheme } from '../theme'; @@ -18,6 +17,7 @@ import scrollPersistTaps from '../utils/scrollPersistTaps'; import { getUserSelector } from '../selectors/login'; import Chips from '../containers/UIKit/MultiSelect/Chips'; import Button from '../containers/Button'; +import SafeAreaView from '../containers/SafeAreaView'; const styles = StyleSheet.create({ container: { @@ -36,15 +36,17 @@ Title.propTypes = { theme: PropTypes.string }; -const LivechatEditView = ({ user, navigation, theme }) => { +const LivechatEditView = ({ + user, navigation, route, theme +}) => { const [customFields, setCustomFields] = useState({}); const [availableUserTags, setAvailableUserTags] = useState([]); const params = {}; const inputs = {}; - const livechat = navigation.getParam('room', {}); - const visitor = navigation.getParam('roomUser', {}); + const livechat = route.params?.room ?? {}; + const visitor = route.params?.roomUser ?? {}; const getCustomFields = async() => { const result = await RocketChat.getCustomFields(); @@ -148,8 +150,8 @@ const LivechatEditView = ({ user, navigation, theme }) => { contentContainerStyle={sharedStyles.container} keyboardVerticalOffset={128} > - - + + { LivechatEditView.propTypes = { user: PropTypes.object, navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string }; LivechatEditView.navigationOptions = ({ diff --git a/app/views/LoginView.js b/app/views/LoginView.js index 8e46bd489..abc901272 100644 --- a/app/views/LoginView.js +++ b/app/views/LoginView.js @@ -13,7 +13,6 @@ import I18n from '../i18n'; import { LegalButton } from '../containers/HeaderButton'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; import FormContainer, { FormContainerInner } from '../containers/FormContainer'; import TextInput from '../containers/TextInput'; import { loginRequest as loginRequestAction } from '../actions/login'; @@ -51,14 +50,10 @@ const styles = StyleSheet.create({ }); class LoginView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const title = navigation.getParam('title', 'Rocket.Chat'); - return { - ...themedHeader(screenProps.theme), - title, - headerRight: <LegalButton testID='login-view-more' navigation={navigation} /> - }; - } + static navigationOptions = ({ route, navigation }) => ({ + title: route.params?.title ?? 'Rocket.Chat', + headerRight: () => <LegalButton testID='login-view-more' navigation={navigation} /> + }) static propTypes = { navigation: PropTypes.object, @@ -205,11 +200,11 @@ class LoginView extends React.Component { } render() { - const { Accounts_ShowFormLogin, theme } = this.props; + const { Accounts_ShowFormLogin, theme, navigation } = this.props; return ( <FormContainer theme={theme} testID='login-view'> <FormContainerInner> - <LoginServices separator={Accounts_ShowFormLogin} /> + <LoginServices separator={Accounts_ShowFormLogin} navigation={navigation} /> {this.renderUserForm()} </FormContainerInner> </FormContainer> diff --git a/app/views/MarkdownTableView.js b/app/views/MarkdownTableView.js index d62717358..049623444 100644 --- a/app/views/MarkdownTableView.js +++ b/app/views/MarkdownTableView.js @@ -6,23 +6,21 @@ import I18n from '../i18n'; import { isIOS } from '../utils/deviceInfo'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; class MarkdownTableView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - ...themedHeader(screenProps.theme), + static navigationOptions = { title: I18n.t('Table') - }); + } static propTypes = { - navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string } render() { - const { navigation, theme } = this.props; - const renderRows = navigation.getParam('renderRows'); - const tableWidth = navigation.getParam('tableWidth'); + const { route, theme } = this.props; + const renderRows = route.params?.renderRows; + const tableWidth = route.params?.tableWidth; if (isIOS) { return ( diff --git a/app/views/MessagesView/index.js b/app/views/MessagesView/index.js index cd7b25201..9e637434c 100644 --- a/app/views/MessagesView/index.js +++ b/app/views/MessagesView/index.js @@ -2,7 +2,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, View, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import ActionSheet from 'react-native-action-sheet'; @@ -15,26 +14,24 @@ import StatusBar from '../../containers/StatusBar'; import getFileUrlFromMessage from '../../lib/methods/helpers/getFileUrlFromMessage'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { withSplit } from '../../split'; -import { themedHeader } from '../../utils/navigation'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; const ACTION_INDEX = 0; const CANCEL_INDEX = 1; class MessagesView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => ({ - title: I18n.t(navigation.state.params.name), - ...themedHeader(screenProps.theme) + static navigationOptions = ({ route }) => ({ + title: I18n.t(route.params?.name) }); static propTypes = { user: PropTypes.object, baseUrl: PropTypes.string, navigation: PropTypes.object, + route: PropTypes.object, customEmojis: PropTypes.object, - theme: PropTypes.string, - split: PropTypes.bool + theme: PropTypes.string } constructor(props) { @@ -44,9 +41,9 @@ class MessagesView extends React.Component { messages: [], fileLoading: true }; - this.rid = props.navigation.getParam('rid'); - this.t = props.navigation.getParam('t'); - this.content = this.defineMessagesViewContent(props.navigation.getParam('name')); + this.rid = props.route.params?.rid; + this.t = props.route.params?.t; + this.content = this.defineMessagesViewContent(props.route.params?.name); } componentDidMount() { @@ -223,12 +220,8 @@ class MessagesView extends React.Component { } showAttachment = (attachment) => { - const { navigation, split } = this.props; - let params = { attachment }; - if (split) { - params = { ...params, from: 'MessagesView' }; - } - navigation.navigate('AttachmentView', params); + const { navigation } = this.props; + navigation.navigate('AttachmentView', { attachment }); } onLongPress = (message) => { @@ -295,12 +288,9 @@ class MessagesView extends React.Component { return ( <SafeAreaView - style={[ - styles.list, - { backgroundColor: themes[theme].backgroundColor } - ]} - forceInset={{ vertical: 'never' }} + style={{ backgroundColor: themes[theme].backgroundColor }} testID={this.content.testID} + theme={theme} > <StatusBar theme={theme} /> <FlatList @@ -322,4 +312,4 @@ const mapStateToProps = state => ({ customEmojis: state.customEmojis }); -export default connect(mapStateToProps)(withSplit(withTheme(MessagesView))); +export default connect(mapStateToProps)(withTheme(MessagesView)); diff --git a/app/views/ModalBlockView.js b/app/views/ModalBlockView.js index f8cd270a1..57b415fdc 100644 --- a/app/views/ModalBlockView.js +++ b/app/views/ModalBlockView.js @@ -6,7 +6,6 @@ import { connect } from 'react-redux'; import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; import EventEmitter from '../utils/events'; import { themes } from '../constants/colors'; import { CustomHeaderButtons, Item } from '../containers/HeaderButton'; @@ -57,41 +56,18 @@ const mapElementToState = ({ element, blockId, elements = [] }) => { const reduceState = (obj, el) => (Array.isArray(el[0]) ? { ...obj, ...Object.fromEntries(el) } : { ...obj, [el[0]]: el[1] }); class ModalBlockView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const { theme, closeModal } = screenProps; - const data = navigation.getParam('data'); - const cancel = navigation.getParam('cancel', () => {}); - const submitting = navigation.getParam('submitting', false); + static navigationOptions = ({ route }) => { + const data = route.params?.data; const { view } = data; - const { title, submit, close } = view; + const { title } = view; return { - title: textParser([title]), - ...themedHeader(theme), - headerLeft: close ? ( - <CustomHeaderButtons> - <Item - title={textParser([close.text])} - style={styles.submit} - onPress={!submitting && (() => cancel({ closeModal }))} - testID='close-modal-uikit' - /> - </CustomHeaderButtons> - ) : null, - headerRight: submit ? ( - <CustomHeaderButtons> - <Item - title={textParser([submit.text])} - style={styles.submit} - onPress={!submitting && (navigation.getParam('submit', () => {}))} - testID='submit-modal-uikit' - /> - </CustomHeaderButtons> - ) : null + title: textParser([title]) }; } static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string, language: PropTypes.string, user: PropTypes.shape({ @@ -103,21 +79,18 @@ class ModalBlockView extends React.Component { constructor(props) { super(props); this.submitting = false; - const { navigation } = props; - const data = navigation.getParam('data'); + const data = props.route.params?.data; this.values = data.view.blocks.filter(filterInputFields).map(mapElementToState).reduce(reduceState, {}); this.state = { data, loading: false }; + this.setHeader(); } componentDidMount() { const { data } = this.state; - const { navigation } = this.props; const { viewId } = data; - navigation.setParams({ submit: this.submit, cancel: this.cancel }); - EventEmitter.addEventListener(viewId, this.handleUpdate); } @@ -133,9 +106,9 @@ class ModalBlockView extends React.Component { } componentDidUpdate(prevProps) { - const { navigation } = this.props; - const oldData = prevProps.navigation.getParam('data', {}); - const newData = navigation.getParam('data', {}); + const { navigation, route } = this.props; + const oldData = prevProps.route.params?.data ?? {}; + const newData = route.params?.data ?? {}; if (oldData.viewId !== newData.viewId) { navigation.push('ModalBlockView', { data: newData }); } @@ -147,14 +120,43 @@ class ModalBlockView extends React.Component { EventEmitter.removeListener(viewId, this.handleUpdate); } - handleUpdate = ({ type, ...data }) => { + setHeader = () => { + const { data } = this.state; const { navigation } = this.props; + const { view } = data; + const { title, close, submit } = view; + navigation.setOptions({ + title: textParser([title]), + headerLeft: close ? () => ( + <CustomHeaderButtons> + <Item + title={textParser([close.text])} + style={styles.submit} + onPress={this.cancel} + testID='close-modal-uikit' + /> + </CustomHeaderButtons> + ) : null, + headerRight: submit ? () => ( + <CustomHeaderButtons> + <Item + title={textParser([submit.text])} + style={styles.submit} + onPress={this.submit} + testID='submit-modal-uikit' + /> + </CustomHeaderButtons> + ) : null + }); + } + + handleUpdate = ({ type, ...data }) => { if ([MODAL_ACTIONS.ERRORS].includes(type)) { const { errors } = data; this.setState({ errors }); } else { this.setState({ data }); - navigation.setParams({ data }); + this.setHeader(); } }; @@ -187,8 +189,11 @@ class ModalBlockView extends React.Component { submit = async() => { const { data } = this.state; - const { navigation } = this.props; - navigation.setParams({ submitting: true }); + if (this.submitting) { + return; + } + + this.submitting = true; const { appId, viewId } = data; this.setState({ loading: true }); @@ -207,7 +212,7 @@ class ModalBlockView extends React.Component { // do nothing } - navigation.setParams({ submitting: false }); + this.submitting = false; this.setState({ loading: false }); }; diff --git a/app/views/NewMessageView.js b/app/views/NewMessageView.js index 665d84897..4e07d5409 100644 --- a/app/views/NewMessageView.js +++ b/app/views/NewMessageView.js @@ -4,7 +4,6 @@ import { View, StyleSheet, FlatList, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import { orderBy } from 'lodash'; import { Q } from '@nozbe/watermelondb'; @@ -22,16 +21,13 @@ import { CloseModalButton } from '../containers/HeaderButton'; import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; import { getUserSelector } from '../selectors/login'; import Navigation from '../lib/Navigation'; import { createChannelRequest } from '../actions/createChannel'; import { goRoom } from '../utils/goRoom'; +import SafeAreaView from '../containers/SafeAreaView'; const styles = StyleSheet.create({ - safeAreaView: { - flex: 1 - }, separator: { marginLeft: 60 }, @@ -54,9 +50,8 @@ const styles = StyleSheet.create({ }); class NewMessageView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => ({ - ...themedHeader(screenProps.theme), - headerLeft: <CloseModalButton navigation={navigation} testID='new-message-view-close' />, + static navigationOptions = ({ navigation }) => ({ + headerLeft: () => <CloseModalButton navigation={navigation} testID='new-message-view-close' />, title: I18n.t('New_Message') }) @@ -69,7 +64,8 @@ class NewMessageView extends React.Component { }), createChannel: PropTypes.func, maxUsers: PropTypes.number, - theme: PropTypes.string + theme: PropTypes.string, + isMasterDetail: PropTypes.bool }; constructor(props) { @@ -150,6 +146,14 @@ class NewMessageView extends React.Component { }); } + goRoom = (item) => { + const { isMasterDetail, navigation } = this.props; + if (isMasterDetail) { + navigation.pop(); + } + goRoom({ item, isMasterDetail }); + } + renderButton = ({ onPress, testID, title, icon, first }) => { @@ -226,7 +230,7 @@ class NewMessageView extends React.Component { <UserItem name={item.search ? item.name : item.fname} username={item.search ? item.username : item.name} - onPress={() => goRoom(item)} + onPress={() => this.goRoom(item)} baseUrl={baseUrl} testID={`new-message-view-item-${ item.name }`} style={style} @@ -256,11 +260,7 @@ class NewMessageView extends React.Component { render = () => { const { theme } = this.props; return ( - <SafeAreaView - style={[styles.safeAreaView, { backgroundColor: themes[theme].auxiliaryBackground }]} - forceInset={{ vertical: 'never' }} - testID='new-message-view' - > + <SafeAreaView testID='new-message-view' theme={theme}> <StatusBar theme={theme} /> {this.renderList()} </SafeAreaView> @@ -269,6 +269,7 @@ class NewMessageView extends React.Component { } const mapStateToProps = state => ({ + isMasterDetail: state.app.isMasterDetail, baseUrl: state.server.server, maxUsers: state.settings.DirectMesssage_maxUsers || 1, user: getUserSelector(state) diff --git a/app/views/NewServerView.js b/app/views/NewServerView.js index cb82c58df..80c436436 100644 --- a/app/views/NewServerView.js +++ b/app/views/NewServerView.js @@ -12,10 +12,7 @@ import { encode } from 'base-64'; import parse from 'url-parse'; import EventEmitter from '../utils/events'; -import { - selectServerRequest, serverRequest, serverInitAdd, serverFinishAdd -} from '../actions/server'; -import { appStart as appStartAction } from '../actions'; +import { selectServerRequest, serverRequest } from '../actions/server'; import sharedStyles from './Styles'; import Button from '../containers/Button'; import TextInput from '../containers/TextInput'; @@ -28,7 +25,6 @@ import log from '../utils/log'; import { animateNextTransition } from '../utils/layoutAnimation'; import { withTheme } from '../theme'; import { setBasicAuth, BASIC_AUTH_KEY } from '../utils/fetch'; -import { themedHeader } from '../utils/navigation'; import { CloseModalButton } from '../containers/HeaderButton'; const styles = StyleSheet.create({ @@ -65,14 +61,8 @@ const styles = StyleSheet.create({ }); class NewServerView extends React.Component { - static navigationOptions = ({ screenProps, navigation }) => { - const previousServer = navigation.getParam('previousServer', null); - const close = navigation.getParam('close', () => {}); - return { - headerLeft: previousServer ? <CloseModalButton navigation={navigation} onPress={close} testID='new-server-view-close' /> : undefined, - title: I18n.t('Workspaces'), - ...themedHeader(screenProps.theme) - }; + static navigationOptions = { + title: I18n.t('Workspaces') } static propTypes = { @@ -81,15 +71,17 @@ class NewServerView extends React.Component { connecting: PropTypes.bool.isRequired, connectServer: PropTypes.func.isRequired, selectServer: PropTypes.func.isRequired, - currentServer: PropTypes.string, - initAdd: PropTypes.func, - finishAdd: PropTypes.func + adding: PropTypes.bool, + previousServer: PropTypes.string } constructor(props) { super(props); - this.previousServer = props.navigation.getParam('previousServer'); - props.navigation.setParams({ close: this.close, previousServer: this.previousServer }); + if (props.adding) { + props.navigation.setOptions({ + headerLeft: () => <CloseModalButton navigation={props.navigation} onPress={this.close} testID='new-server-view-close' /> + }); + } // Cancel this.options = [I18n.t('Cancel')]; @@ -108,21 +100,14 @@ class NewServerView extends React.Component { BackHandler.addEventListener('hardwareBackPress', this.handleBackPress); } - componentDidMount() { - const { initAdd } = this.props; - if (this.previousServer) { - initAdd(); - } - } - componentWillUnmount() { EventEmitter.removeListener('NewServer', this.handleNewServerEvent); BackHandler.removeEventListener('hardwareBackPress', this.handleBackPress); } handleBackPress = () => { - const { navigation } = this.props; - if (navigation.isFocused() && this.previousServer) { + const { navigation, previousServer } = this.props; + if (navigation.isFocused() && previousServer) { this.close(); return true; } @@ -134,11 +119,8 @@ class NewServerView extends React.Component { } close = () => { - const { selectServer, currentServer, finishAdd } = this.props; - if (this.previousServer !== currentServer) { - selectServer(this.previousServer); - } - finishAdd(); + const { selectServer, previousServer } = this.props; + selectServer(previousServer); } handleNewServerEvent = (event) => { @@ -344,15 +326,14 @@ class NewServerView extends React.Component { } const mapStateToProps = state => ({ - connecting: state.server.connecting + connecting: state.server.connecting, + adding: state.server.adding, + previousServer: state.server.previousServer }); const mapDispatchToProps = dispatch => ({ connectServer: (server, certificate) => dispatch(serverRequest(server, certificate)), - initAdd: () => dispatch(serverInitAdd()), - finishAdd: () => dispatch(serverFinishAdd()), - selectServer: server => dispatch(selectServerRequest(server)), - appStart: root => dispatch(appStartAction(root)) + selectServer: server => dispatch(selectServerRequest(server)) }); export default connect(mapStateToProps, mapDispatchToProps)(withTheme(NewServerView)); diff --git a/app/views/NotificationPreferencesView/index.js b/app/views/NotificationPreferencesView/index.js index 52acad338..1c0f43c8c 100644 --- a/app/views/NotificationPreferencesView/index.js +++ b/app/views/NotificationPreferencesView/index.js @@ -3,7 +3,6 @@ import { View, ScrollView, Switch, Text } from 'react-native'; import PropTypes from 'prop-types'; -import { SafeAreaView } from 'react-navigation'; import database from '../../lib/database'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; @@ -13,11 +12,10 @@ import Separator from '../../containers/Separator'; import I18n from '../../i18n'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import styles from './styles'; -import sharedStyles from '../Styles'; import RocketChat from '../../lib/rocketchat'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import protectedFunction from '../../lib/methods/helpers/protectedFunction'; +import SafeAreaView from '../../containers/SafeAreaView'; const SectionTitle = React.memo(({ title, theme }) => ( <Text @@ -140,21 +138,21 @@ const OPTIONS = { }; class NotificationPreferencesView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Notification_Preferences'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Notification_Preferences') + } static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string }; constructor(props) { super(props); this.mounted = false; - this.rid = props.navigation.getParam('rid'); - const room = props.navigation.getParam('room'); + this.rid = props.route.params?.rid; + const room = props.route.params?.room; this.state = { room: room || {} }; @@ -245,7 +243,7 @@ class NotificationPreferencesView extends React.Component { const { room } = this.state; const { theme } = this.props; return ( - <SafeAreaView style={sharedStyles.container} testID='notification-preference-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView testID='notification-preference-view' theme={theme}> <StatusBar theme={theme} /> <ScrollView {...scrollPersistTaps} diff --git a/app/views/OnboardingView/index.js b/app/views/OnboardingView/index.js index 3db267505..0a1ac7383 100644 --- a/app/views/OnboardingView/index.js +++ b/app/views/OnboardingView/index.js @@ -6,7 +6,7 @@ import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import Orientation from 'react-native-orientation-locker'; -import { appStart as appStartAction } from '../../actions'; +import { appStart as appStartAction, ROOT_BACKGROUND } from '../../actions/app'; import I18n from '../../i18n'; import Button from '../../containers/Button'; import styles from './styles'; @@ -16,9 +16,9 @@ import { withTheme } from '../../theme'; import FormContainer, { FormContainerInner } from '../../containers/FormContainer'; class OnboardingView extends React.Component { - static navigationOptions = () => ({ - header: null - }) + static navigationOptions = { + headerShown: false + }; static propTypes = { navigation: PropTypes.object, @@ -28,12 +28,23 @@ class OnboardingView extends React.Component { constructor(props) { super(props); - BackHandler.addEventListener('hardwareBackPress', this.handleBackPress); if (!isTablet) { Orientation.lockToPortrait(); } } + componentDidMount() { + const { navigation } = this.props; + this.unsubscribeFocus = navigation.addListener('focus', () => { + this.backHandler = BackHandler.addEventListener('hardwareBackPress', this.handleBackPress); + }); + this.unsubscribeBlur = navigation.addListener('blur', () => { + if (this.backHandler && this.backHandler.remove) { + this.backHandler.remove(); + } + }); + } + shouldComponentUpdate(nextProps) { const { theme } = this.props; if (theme !== nextProps.theme) { @@ -43,12 +54,17 @@ class OnboardingView extends React.Component { } componentWillUnmount() { - BackHandler.removeEventListener('hardwareBackPress', this.handleBackPress); + if (this.unsubscribeFocus) { + this.unsubscribeFocus(); + } + if (this.unsubscribeBlur) { + this.unsubscribeBlur(); + } } handleBackPress = () => { const { appStart } = this.props; - appStart('background'); + appStart({ root: ROOT_BACKGROUND }); return false; } @@ -98,7 +114,7 @@ class OnboardingView extends React.Component { } const mapDispatchToProps = dispatch => ({ - appStart: root => dispatch(appStartAction(root)) + appStart: params => dispatch(appStartAction(params)) }); export default connect(null, mapDispatchToProps)(withTheme(OnboardingView)); diff --git a/app/views/PickerView.js b/app/views/PickerView.js index 69275d30d..489d8a42f 100644 --- a/app/views/PickerView.js +++ b/app/views/PickerView.js @@ -5,7 +5,6 @@ import { } from 'react-native'; import I18n from '../i18n'; -import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import debounce from '../utils/debounce'; @@ -57,29 +56,29 @@ Item.propTypes = { }; class PickerView extends React.PureComponent { - static navigationOptions = ({ navigation, screenProps }) => ({ - title: navigation.getParam('title', I18n.t('Select_an_option')), - ...themedHeader(screenProps.theme) + static navigationOptions = ({ route }) => ({ + title: route.params?.title ?? I18n.t('Select_an_option') }) static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string } constructor(props) { super(props); - const data = props.navigation.getParam('data', []); - const value = props.navigation.getParam('value'); + const data = props.route.params?.data ?? []; + const value = props.route.params?.value; this.state = { data, value }; - this.onSearch = props.navigation.getParam('onChangeText'); + this.onSearch = props.route.params?.onChangeText; } onChangeValue = (value) => { - const { navigation } = this.props; - const goBack = navigation.getParam('goBack', true); - const onChange = navigation.getParam('onChangeValue', () => {}); + const { navigation, route } = this.props; + const goBack = route.params?.goBack ?? true; + const onChange = route.params?.onChangeValue ?? (() => {}); onChange(value); if (goBack) { navigation.goBack(); diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index c0dbbc7ba..f6155c2a2 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -6,8 +6,6 @@ import prompt from 'react-native-prompt-android'; import SHA256 from 'js-sha256'; import ImagePicker from 'react-native-image-crop-picker'; import RNPickerSelect from 'react-native-picker-select'; -import { SafeAreaView } from 'react-navigation'; -import { HeaderBackButton } from 'react-navigation-stack'; import equal from 'deep-equal'; import Touch from '../../utils/touch'; @@ -30,22 +28,19 @@ import { DrawerButton } from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; class ProfileView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => ({ - ...themedHeader(screenProps.theme), - headerLeft: screenProps.split ? ( - <HeaderBackButton - onPress={() => navigation.navigate('SettingsView')} - tintColor={themes[screenProps.theme].headerTintColor} - /> - ) : ( - <DrawerButton navigation={navigation} /> - ), - title: I18n.t('Profile') - }) + static navigationOptions = ({ navigation, isMasterDetail }) => { + const options = { + title: I18n.t('Profile') + }; + if (!isMasterDetail) { + options.headerLeft = () => <DrawerButton navigation={navigation} />; + } + return options; + } static propTypes = { baseUrl: PropTypes.string, @@ -440,7 +435,7 @@ class ProfileView extends React.Component { keyboardVerticalOffset={128} > <StatusBar theme={theme} /> - <SafeAreaView style={sharedStyles.container} testID='profile-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView testID='profile-view' theme={theme}> <ScrollView contentContainerStyle={sharedStyles.containerScrollView} testID='profile-view-list' diff --git a/app/views/ReadReceiptView/index.js b/app/views/ReadReceiptView/index.js index bd58e6906..c5ea398a9 100644 --- a/app/views/ReadReceiptView/index.js +++ b/app/views/ReadReceiptView/index.js @@ -1,7 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, View, Text } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import moment from 'moment'; import { connect } from 'react-redux'; @@ -13,18 +12,17 @@ import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import StatusBar from '../../containers/StatusBar'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import { themes } from '../../constants/colors'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; class ReadReceiptView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Read_Receipt'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Read_Receipt') + } static propTypes = { - navigation: PropTypes.object, + route: PropTypes.object, Message_TimeFormat: PropTypes.string, baseUrl: PropTypes.string, user: PropTypes.object, @@ -33,7 +31,7 @@ class ReadReceiptView extends React.Component { constructor(props) { super(props); - this.messageId = props.navigation.getParam('messageId'); + this.messageId = props.route.params?.messageId; this.state = { loading: false, receipts: [] @@ -135,11 +133,7 @@ class ReadReceiptView extends React.Component { } return ( - <SafeAreaView - style={[styles.container, { backgroundColor: themes[theme].chatComponentBackground }]} - forceInset={{ bottom: 'always' }} - testID='read-receipt-view' - > + <SafeAreaView testID='read-receipt-view' theme={theme}> <StatusBar theme={theme} /> <View> {loading diff --git a/app/views/ReadReceiptView/styles.js b/app/views/ReadReceiptView/styles.js index a0013531c..c93754294 100644 --- a/app/views/ReadReceiptView/styles.js +++ b/app/views/ReadReceiptView/styles.js @@ -28,9 +28,6 @@ export default StyleSheet.create({ flexDirection: 'row', padding: 10 }, - container: { - flex: 1 - }, list: { ...sharedStyles.separatorVertical, marginVertical: 10 diff --git a/app/views/RegisterView.js b/app/views/RegisterView.js index e27e9bfe4..1fe127416 100644 --- a/app/views/RegisterView.js +++ b/app/views/RegisterView.js @@ -13,7 +13,6 @@ import I18n from '../i18n'; import { LegalButton } from '../containers/HeaderButton'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; import FormContainer, { FormContainerInner } from '../containers/FormContainer'; import TextInput from '../containers/TextInput'; import isValidEmail from '../utils/isValidEmail'; @@ -53,14 +52,10 @@ const styles = StyleSheet.create({ }); class RegisterView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const title = navigation.getParam('title', 'Rocket.Chat'); - return { - ...themedHeader(screenProps.theme), - title, - headerRight: <LegalButton navigation={navigation} testID='register-view-more' /> - }; - } + static navigationOptions = ({ route, navigation }) => ({ + title: route.params?.title ?? 'Rocket.Chat', + headerRight: () => <LegalButton testID='register-view-more' navigation={navigation} /> + }); static propTypes = { navigation: PropTypes.object, @@ -228,11 +223,11 @@ class RegisterView extends React.Component { render() { const { saving } = this.state; - const { theme, showLoginButton } = this.props; + const { theme, showLoginButton, navigation } = this.props; return ( <FormContainer theme={theme} testID='register-view'> <FormContainerInner> - <LoginServices /> + <LoginServices navigation={navigation} /> <Text style={[styles.title, sharedStyles.textBold, { color: themes[theme].titleText }]}>{I18n.t('Sign_Up')}</Text> <TextInput label='Name' diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index fe6930bc0..67aff37e4 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -4,7 +4,6 @@ import { View, SectionList, Text, Alert, Share } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import _ from 'lodash'; import Touch from '../../utils/touch'; @@ -24,20 +23,19 @@ import DisclosureIndicator from '../../containers/DisclosureIndicator'; import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import { CloseModalButton } from '../../containers/HeaderButton'; import { getUserSelector } from '../../selectors/login'; import Markdown from '../../containers/markdown'; import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; +import SafeAreaView from '../../containers/SafeAreaView'; class RoomActionsView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { + static navigationOptions = ({ navigation, isMasterDetail }) => { const options = { - ...themedHeader(screenProps.theme), title: I18n.t('Actions') }; - if (screenProps.split) { - options.headerLeft = <CloseModalButton navigation={navigation} testID='room-actions-view-close' />; + if (isMasterDetail) { + options.headerLeft = () => <CloseModalButton navigation={navigation} testID='room-actions-view-close' />; } return options; } @@ -45,6 +43,7 @@ class RoomActionsView extends React.Component { static propTypes = { baseUrl: PropTypes.string, navigation: PropTypes.object, + route: PropTypes.object, user: PropTypes.shape({ id: PropTypes.string, token: PropTypes.string @@ -59,10 +58,10 @@ class RoomActionsView extends React.Component { constructor(props) { super(props); this.mounted = false; - const room = props.navigation.getParam('room'); - const member = props.navigation.getParam('member'); - this.rid = props.navigation.getParam('rid'); - this.t = props.navigation.getParam('t'); + const room = props.route.params?.room; + const member = props.route.params?.member; + this.rid = props.route.params?.rid; + this.t = props.route.params?.t; this.state = { room: room || { rid: this.rid, t: this.t }, membersCount: 0, @@ -647,7 +646,7 @@ class RoomActionsView extends React.Component { render() { const { theme } = this.props; return ( - <SafeAreaView style={styles.container} testID='room-actions-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView testID='room-actions-view' theme={theme}> <StatusBar theme={theme} /> <SectionList contentContainerStyle={[styles.contentContainer, { backgroundColor: themes[theme].auxiliaryBackground }]} diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 592ff8467..5db7c7883 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -4,7 +4,6 @@ import { Text, View, ScrollView, TouchableOpacity, Keyboard, Alert } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import isEqual from 'lodash/isEqual'; @@ -27,11 +26,11 @@ import random from '../../utils/random'; import log from '../../utils/log'; import I18n from '../../i18n'; import StatusBar from '../../containers/StatusBar'; -import { themedHeader } from '../../utils/navigation'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { MultiSelect } from '../../containers/UIKit/MultiSelect'; import { MessageTypeValues } from '../../utils/messageTypes'; +import SafeAreaView from '../../containers/SafeAreaView'; const PERMISSION_SET_READONLY = 'set-readonly'; const PERMISSION_SET_REACT_WHEN_READONLY = 'set-react-when-readonly'; @@ -49,13 +48,12 @@ const PERMISSIONS_ARRAY = [ ]; class RoomInfoEditView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Room_Info_Edit'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Room_Info_Edit') + } static propTypes = { - navigation: PropTypes.object, + route: PropTypes.object, deleteRoom: PropTypes.func, serverVersion: PropTypes.string, theme: PropTypes.string @@ -101,8 +99,8 @@ class RoomInfoEditView extends React.Component { // eslint-disable-next-line react/sort-comp loadRoom = async() => { - const { navigation } = this.props; - const rid = navigation.getParam('rid', null); + const { route } = this.props; + const rid = route.params?.rid; if (!rid) { return; } @@ -349,12 +347,16 @@ class RoomInfoEditView extends React.Component { keyboardVerticalOffset={128} > <StatusBar theme={theme} /> - <ScrollView - contentContainerStyle={sharedStyles.containerScrollView} - testID='room-info-edit-view-list' - {...scrollPersistTaps} + <SafeAreaView + testID='room-info-edit-view' + theme={theme} + style={{ backgroundColor: themes[theme].backgroundColor }} > - <SafeAreaView style={sharedStyles.container} testID='room-info-edit-view' forceInset={{ vertical: 'never' }}> + <ScrollView + contentContainerStyle={sharedStyles.containerScrollView} + testID='room-info-edit-view-list' + {...scrollPersistTaps} + > <RCTextInput inputRef={(e) => { this.name = e; }} label={I18n.t('Name')} @@ -542,8 +544,8 @@ class RoomInfoEditView extends React.Component { </Text> </TouchableOpacity> <Loading visible={saving} /> - </SafeAreaView> - </ScrollView> + </ScrollView> + </SafeAreaView> </KeyboardView> ); } diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index b9ce9b91f..b3711b0f4 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import { View, Text, ScrollView } from 'react-native'; import { BorderlessButton } from 'react-native-gesture-handler'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import UAParser from 'ua-parser-js'; import _ from 'lodash'; @@ -16,21 +15,21 @@ import sharedStyles from '../Styles'; import RocketChat from '../../lib/rocketchat'; import RoomTypeIcon from '../../containers/RoomTypeIcon'; import I18n from '../../i18n'; -import { CustomHeaderButtons } from '../../containers/HeaderButton'; +import { CustomHeaderButtons, CloseModalButton } from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { withSplit } from '../../split'; -import { themedHeader } from '../../utils/navigation'; import { getUserSelector } from '../../selectors/login'; import Markdown from '../../containers/markdown'; -import Navigation from '../../lib/Navigation'; import Livechat from './Livechat'; import Channel from './Channel'; import Item from './Item'; import Direct from './Direct'; +import SafeAreaView from '../../containers/SafeAreaView'; +import { goRoom } from '../../utils/goRoom'; +import Navigation from '../../lib/Navigation'; const PERMISSION_EDIT_ROOM = 'edit-room'; const getRoomTitle = (room, type, name, username, statusText, theme) => (type === 'd' @@ -50,50 +49,29 @@ const getRoomTitle = (room, type, name, username, statusText, theme) => (type == ); class RoomInfoView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const t = navigation.getParam('t'); - const rid = navigation.getParam('rid'); - const room = navigation.getParam('room'); - const roomUser = navigation.getParam('roomUser'); - const showEdit = navigation.getParam('showEdit', t === 'l'); - return { - title: t === 'd' ? I18n.t('User_Info') : I18n.t('Room_Info'), - ...themedHeader(screenProps.theme), - headerRight: showEdit - ? ( - <CustomHeaderButtons> - <Item - iconName='edit' - onPress={() => navigation.navigate(t === 'l' ? 'LivechatEditView' : 'RoomInfoEditView', { rid, room, roomUser })} - testID='room-info-view-edit-button' - /> - </CustomHeaderButtons> - ) - : null - }; - } - static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, user: PropTypes.shape({ id: PropTypes.string, token: PropTypes.string }), baseUrl: PropTypes.string, rooms: PropTypes.array, - split: PropTypes.bool, - theme: PropTypes.string + theme: PropTypes.string, + isMasterDetail: PropTypes.bool } constructor(props) { super(props); - const room = props.navigation.getParam('room'); - const roomUser = props.navigation.getParam('member'); - this.rid = props.navigation.getParam('rid'); - this.t = props.navigation.getParam('t'); + const room = props.route.params?.room; + const roomUser = props.route.params?.member; + this.rid = props.route.params?.rid; + this.t = props.route.params?.t; this.state = { room: room || { rid: this.rid, t: this.t }, - roomUser: roomUser || {} + roomUser: roomUser || {}, + showEdit: false }; } @@ -103,9 +81,10 @@ class RoomInfoView extends React.Component { } else { this.loadRoom(); } + this.setHeader(); const { navigation } = this.props; - this.willFocusListener = navigation.addListener('willFocus', () => { + this.unsubscribeFocus = navigation.addListener('focus', () => { if (this.isLivechat) { this.loadVisitor(); } @@ -116,11 +95,34 @@ class RoomInfoView extends React.Component { if (this.subscription && this.subscription.unsubscribe) { this.subscription.unsubscribe(); } - if (this.willFocusListener && this.willFocusListener.remove) { - this.willFocusListener.remove(); + if (this.unsubscribeFocus) { + this.unsubscribeFocus(); } } + setHeader = () => { + const { roomUser, room, showEdit } = this.state; + const { navigation, route } = this.props; + const t = route.params?.t; + const rid = route.params?.rid; + const showCloseModal = route.params?.showCloseModal; + navigation.setOptions({ + headerLeft: showCloseModal ? () => <CloseModalButton navigation={navigation} /> : undefined, + title: t === 'd' ? I18n.t('User_Info') : I18n.t('Room_Info'), + headerRight: showEdit + ? () => ( + <CustomHeaderButtons> + <Item + iconName='edit' + onPress={() => navigation.navigate(t === 'l' ? 'LivechatEditView' : 'RoomInfoEditView', { rid, room, roomUser })} + testID='room-info-view-edit-button' + /> + </CustomHeaderButtons> + ) + : null + }); + } + get isDirect() { const { room } = this.state; return room.t === 'd'; @@ -147,8 +149,6 @@ class RoomInfoView extends React.Component { loadVisitor = async() => { const { room } = this.state; - const { navigation } = this.props; - try { const result = await RocketChat.getVisitorInfo(room?.visitor?._id); if (result.success) { @@ -159,8 +159,7 @@ class RoomInfoView extends React.Component { visitor.os = `${ ua.getOS().name } ${ ua.getOS().version }`; visitor.browser = `${ ua.getBrowser().name } ${ ua.getBrowser().version }`; } - this.setState({ roomUser: visitor }); - navigation.setParams({ roomUser: visitor }); + this.setState({ roomUser: visitor }, () => this.setHeader()); } } catch (error) { // Do nothing @@ -195,14 +194,13 @@ class RoomInfoView extends React.Component { } loadRoom = async() => { - const { navigation } = this.props; - let room = navigation.getParam('room'); + const { route } = this.props; + let room = route.params?.room; if (room && room.observe) { this.roomObservable = room.observe(); this.subscription = this.roomObservable .subscribe((changes) => { - this.setState({ room: changes }); - navigation.setParams({ room: changes }); + this.setState({ room: changes }, () => this.setHeader()); }); } else { try { @@ -218,7 +216,7 @@ class RoomInfoView extends React.Component { const permissions = await RocketChat.hasPermission([PERMISSION_EDIT_ROOM], room.rid); if (permissions[PERMISSION_EDIT_ROOM] && !room.prid) { - navigation.setParams({ showEdit: true }); + this.setState({ showEdit: true }, () => this.setHeader()); } } @@ -236,28 +234,31 @@ class RoomInfoView extends React.Component { goRoom = () => { const { roomUser, room } = this.state; const { name, username } = roomUser; - const { rooms, navigation, split } = this.props; + const { rooms, navigation, isMasterDetail } = this.props; + const params = { + rid: room.rid, + name: RocketChat.getRoomTitle({ + t: room.t, + fname: name, + name: username + }), + t: room.t, + roomUserId: RocketChat.getUidDirectMessage(room) + }; if (room.rid) { - let navigate = navigation.push; - - // if this is a room focused - if (rooms.includes(room.rid)) { - ({ navigate } = navigation); - } else if (split) { - ({ navigate } = Navigation); + // if it's on master detail layout, we close the modal and replace RoomView + if (isMasterDetail) { + Navigation.navigate('DrawerNavigator'); + goRoom({ item: params, isMasterDetail }); + } else { + let navigate = navigation.push; + // if this is a room focused + if (rooms.includes(room.rid)) { + ({ navigate } = navigation); + } + navigate('RoomView', params); } - - navigate('RoomView', { - rid: room.rid, - name: RocketChat.getRoomTitle({ - t: room.t, - fname: name, - name: username - }), - t: room.t, - roomUserId: RocketChat.getUidDirectMessage(room) - }); } } @@ -327,8 +328,8 @@ class RoomInfoView extends React.Component { <ScrollView style={[styles.scroll, { backgroundColor: themes[theme].backgroundColor }]}> <StatusBar theme={theme} /> <SafeAreaView - style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} - forceInset={{ vertical: 'never' }} + style={{ backgroundColor: themes[theme].backgroundColor }} + theme={theme} testID='room-info-view' > <View style={[styles.avatarContainer, this.isDirect && styles.avatarContainerDirectRoom, { backgroundColor: themes[theme].auxiliaryBackground }]}> @@ -346,7 +347,8 @@ class RoomInfoView extends React.Component { const mapStateToProps = state => ({ baseUrl: state.server.server, user: getUserSelector(state), - rooms: state.room.rooms + rooms: state.room.rooms, + isMasterDetail: state.app.isMasterDetail }); -export default connect(mapStateToProps)(withSplit(withTheme(RoomInfoView))); +export default connect(mapStateToProps)(withTheme(RoomInfoView)); diff --git a/app/views/RoomMembersView/index.js b/app/views/RoomMembersView/index.js index 74e4bf6a8..57266df0b 100644 --- a/app/views/RoomMembersView/index.js +++ b/app/views/RoomMembersView/index.js @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import { FlatList, View } from 'react-native'; import ActionSheet from 'react-native-action-sheet'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import * as Haptics from 'expo-haptics'; import { Q } from '@nozbe/watermelondb'; @@ -22,30 +21,17 @@ import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; import ActivityIndicator from '../../containers/ActivityIndicator'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import { themes } from '../../constants/colors'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; +import { goRoom } from '../../utils/goRoom'; const PAGE_SIZE = 25; class RoomMembersView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const toggleStatus = navigation.getParam('toggleStatus', () => {}); - const allUsers = navigation.getParam('allUsers'); - const toggleText = allUsers ? I18n.t('Online') : I18n.t('All'); - return { - title: I18n.t('Members'), - ...themedHeader(screenProps.theme), - headerRight: ( - <CustomHeaderButtons> - <Item title={toggleText} onPress={toggleStatus} testID='room-members-view-toggle-status' /> - </CustomHeaderButtons> - ) - }; - } - static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, rid: PropTypes.string, members: PropTypes.array, baseUrl: PropTypes.string, @@ -54,7 +40,8 @@ class RoomMembersView extends React.Component { id: PropTypes.string, token: PropTypes.string }), - theme: PropTypes.string + theme: PropTypes.string, + isMasterDetail: PropTypes.bool } constructor(props) { @@ -63,8 +50,8 @@ class RoomMembersView extends React.Component { this.CANCEL_INDEX = 0; this.MUTE_INDEX = 1; this.actionSheetOptions = ['']; - const { rid } = props.navigation.state.params; - const room = props.navigation.getParam('room'); + const rid = props.route.params?.rid; + const room = props.route.params?.room; this.state = { isLoading: false, allUsers: false, @@ -87,15 +74,15 @@ class RoomMembersView extends React.Component { } }); } + this.setHeader(); } async componentDidMount() { this.mounted = true; this.fetchMembers(); - const { navigation } = this.props; - const { rid } = navigation.state.params; - navigation.setParams({ toggleStatus: this.toggleStatus }); + const { route } = this.props; + const rid = route.params?.rid; this.permissions = await RocketChat.hasPermission(['mute-user'], rid); } @@ -105,6 +92,20 @@ class RoomMembersView extends React.Component { } } + setHeader = () => { + const { allUsers } = this.state; + const { navigation } = this.props; + const toggleText = allUsers ? I18n.t('Online') : I18n.t('All'); + navigation.setOptions({ + title: I18n.t('Members'), + headerRight: () => ( + <CustomHeaderButtons> + <Item title={toggleText} onPress={this.toggleStatus} testID='room-members-view-toggle-status' /> + </CustomHeaderButtons> + ) + }); + } + onSearchChangeText = protectedFunction((text) => { const { members } = this.state; let membersFiltered = []; @@ -122,11 +123,11 @@ class RoomMembersView extends React.Component { const query = await subsCollection.query(Q.where('name', item.username)).fetch(); if (query.length) { const [room] = query; - this.goRoom({ rid: room.rid, name: item.username, room }); + this.goRoom(room); } else { const result = await RocketChat.createDirectMessage(item.username); if (result.success) { - this.goRoom({ rid: result.room._id, name: item.username }); + this.goRoom({ rid: result.room?._id, name: item.username, t: 'd' }); } } } catch (e) { @@ -180,7 +181,6 @@ class RoomMembersView extends React.Component { const { rid, members, isLoading, allUsers, end } = this.state; - const { navigation } = this.props; if (isLoading || end) { return; } @@ -194,19 +194,21 @@ class RoomMembersView extends React.Component { isLoading: false, end: newMembers.length < PAGE_SIZE }); - navigation.setParams({ allUsers }); + this.setHeader(); } catch (e) { log(e); this.setState({ isLoading: false }); } } - goRoom = async({ rid, name, room }) => { - const { navigation } = this.props; - await navigation.popToTop(); - navigation.navigate('RoomView', { - rid, name, t: 'd', room - }); + goRoom = (item) => { + const { navigation, isMasterDetail } = this.props; + if (isMasterDetail) { + navigation.navigate('DrawerNavigator'); + } else { + navigation.popToTop(); + } + goRoom({ item, isMasterDetail }); } handleMute = async() => { @@ -261,7 +263,7 @@ class RoomMembersView extends React.Component { } = this.state; const { theme } = this.props; return ( - <SafeAreaView style={styles.list} testID='room-members-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView testID='room-members-view' theme={theme}> <StatusBar theme={theme} /> <FlatList data={filtering ? membersFiltered : members} @@ -289,7 +291,8 @@ class RoomMembersView extends React.Component { const mapStateToProps = state => ({ baseUrl: state.server.server, - user: getUserSelector(state) + user: getUserSelector(state), + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(withTheme(RoomMembersView)); diff --git a/app/views/RoomView/Header/Header.js b/app/views/RoomView/Header/Header.js index d9b527550..58792de2e 100644 --- a/app/views/RoomView/Header/Header.js +++ b/app/views/RoomView/Header/Header.js @@ -18,7 +18,8 @@ const styles = StyleSheet.create({ container: { flex: 1, marginRight: isAndroid ? 15 : 5, - marginLeft: isAndroid ? androidMarginLeft : -10 + marginLeft: isAndroid ? androidMarginLeft : -10, + justifyContent: 'center' }, titleContainer: { alignItems: 'center', @@ -126,7 +127,7 @@ HeaderTitle.propTypes = { }; const Header = React.memo(({ - title, subtitle, type, status, usersTyping, width, height, prid, tmid, widthOffset, connecting, goRoomActionsView, roomUserId, theme + title, subtitle, type, status, usersTyping, width, height, prid, tmid, connecting, goRoomActionsView, roomUserId, theme }) => { const portrait = height > width; let scale = 1; @@ -143,7 +144,7 @@ const Header = React.memo(({ <TouchableOpacity testID='room-view-header-actions' onPress={onPress} - style={[styles.container, { width: width - widthOffset }]} + style={styles.container} disabled={tmid} > <View style={[styles.titleContainer, tmid && styles.threadContainer]}> @@ -173,7 +174,6 @@ Header.propTypes = { status: PropTypes.string, theme: PropTypes.string, usersTyping: PropTypes.array, - widthOffset: PropTypes.number, connecting: PropTypes.bool, roomUserId: PropTypes.string, goRoomActionsView: PropTypes.func diff --git a/app/views/RoomView/Header/Icon.js b/app/views/RoomView/Header/Icon.js index 766f5abe4..af3557b18 100644 --- a/app/views/RoomView/Header/Icon.js +++ b/app/views/RoomView/Header/Icon.js @@ -43,7 +43,7 @@ const Icon = React.memo(({ } else if (type === 'c') { icon = 'hash'; } else if (type === 'l') { - icon = 'livechat'; + icon = 'omnichannel'; } else if (type === 'd') { icon = 'team'; } else { diff --git a/app/views/RoomView/Header/RightButtons.js b/app/views/RoomView/Header/RightButtons.js index 8ba807ede..caec40d22 100644 --- a/app/views/RoomView/Header/RightButtons.js +++ b/app/views/RoomView/Header/RightButtons.js @@ -14,6 +14,7 @@ class RightButtonsContainer extends React.PureComponent { t: PropTypes.string, tmid: PropTypes.string, navigation: PropTypes.object, + isMasterDetail: PropTypes.bool, toggleFollowThread: PropTypes.func }; @@ -57,8 +58,14 @@ class RightButtonsContainer extends React.PureComponent { } goThreadsView = () => { - const { rid, t, navigation } = this.props; - navigation.navigate('ThreadMessagesView', { rid, t }); + const { + rid, t, navigation, isMasterDetail + } = this.props; + if (isMasterDetail) { + navigation.navigate('ModalStackNavigator', { screen: 'ThreadMessagesView', params: { rid, t } }); + } else { + navigation.navigate('ThreadMessagesView', { rid, t }); + } } toggleFollowThread = () => { @@ -104,7 +111,8 @@ class RightButtonsContainer extends React.PureComponent { const mapStateToProps = state => ({ userId: getUserSelector(state).id, - threadsEnabled: state.settings.Threads_enabled + threadsEnabled: state.settings.Threads_enabled, + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(RightButtonsContainer); diff --git a/app/views/RoomView/Header/RoomHeaderLeft.js b/app/views/RoomView/Header/RoomHeaderLeft.js index 670dfd150..99257acfb 100644 --- a/app/views/RoomView/Header/RoomHeaderLeft.js +++ b/app/views/RoomView/Header/RoomHeaderLeft.js @@ -1,9 +1,8 @@ -import React from 'react'; +import React, { useCallback } from 'react'; import PropTypes from 'prop-types'; import { StyleSheet } from 'react-native'; -import { HeaderBackButton } from 'react-navigation-stack'; +import { HeaderBackButton } from '@react-navigation/stack'; -import { isIOS } from '../../../utils/deviceInfo'; import { themes } from '../../../constants/colors'; import Avatar from '../../../containers/Avatar'; @@ -14,19 +13,20 @@ const styles = StyleSheet.create({ } }); -const RoomHeaderLeft = ({ - tmid, unreadsCount, navigation, baseUrl, userId, token, title, t, theme, goRoomActionsView, split +const RoomHeaderLeft = React.memo(({ + tmid, unreadsCount, navigation, baseUrl, userId, token, title, t, theme, goRoomActionsView, isMasterDetail }) => { - if (!split || tmid) { + if (!isMasterDetail || tmid) { + const onPress = useCallback(() => navigation.goBack()); return ( <HeaderBackButton - title={unreadsCount > 999 ? '+999' : unreadsCount || ' '} - backTitleVisible={isIOS} - onPress={() => navigation.goBack()} + label={unreadsCount > 999 ? '+999' : unreadsCount || ' '} + onPress={onPress} tintColor={themes[theme].headerTintColor} /> ); } + const onPress = useCallback(() => goRoomActionsView(), []); if (baseUrl && userId && token) { return ( <Avatar @@ -37,12 +37,12 @@ const RoomHeaderLeft = ({ style={styles.avatar} userId={userId} token={token} - onPress={goRoomActionsView} + onPress={onPress} /> ); } return null; -}; +}); RoomHeaderLeft.propTypes = { tmid: PropTypes.string, @@ -55,7 +55,7 @@ RoomHeaderLeft.propTypes = { t: PropTypes.string, theme: PropTypes.string, goRoomActionsView: PropTypes.func, - split: PropTypes.bool + isMasterDetail: PropTypes.bool }; export default RoomHeaderLeft; diff --git a/app/views/RoomView/List.js b/app/views/RoomView/List.js index 97708c124..4e58fe0fa 100644 --- a/app/views/RoomView/List.js +++ b/app/views/RoomView/List.js @@ -1,5 +1,5 @@ import React from 'react'; -import { FlatList, InteractionManager, RefreshControl } from 'react-native'; +import { FlatList, RefreshControl } from 'react-native'; import PropTypes from 'prop-types'; import orderBy from 'lodash/orderBy'; import { Q } from '@nozbe/watermelondb'; @@ -57,7 +57,7 @@ class List extends React.Component { animated: false }; this.init(); - this.didFocusListener = props.navigation.addListener('didFocus', () => { + this.unsubscribeFocus = props.navigation.addListener('focus', () => { if (this.mounted) { this.setState({ animated: true }); } else { @@ -106,17 +106,15 @@ class List extends React.Component { this.unsubscribeMessages(); this.messagesSubscription = this.messagesObservable .subscribe((data) => { - this.interaction = InteractionManager.runAfterInteractions(() => { - if (tmid && this.thread) { - data = [this.thread, ...data]; - } - const messages = orderBy(data, ['ts'], ['desc']); - if (this.mounted) { - this.setState({ messages }, () => this.update()); - } else { - this.state.messages = messages; - } - }); + if (tmid && this.thread) { + data = [this.thread, ...data]; + } + const messages = orderBy(data, ['ts'], ['desc']); + if (this.mounted) { + this.setState({ messages }, () => this.update()); + } else { + this.state.messages = messages; + } }); } } @@ -157,14 +155,11 @@ class List extends React.Component { componentWillUnmount() { this.unsubscribeMessages(); - if (this.interaction && this.interaction.cancel) { - this.interaction.cancel(); - } if (this.onEndReached && this.onEndReached.stop) { this.onEndReached.stop(); } - if (this.didFocusListener && this.didFocusListener.remove) { - this.didFocusListener.remove(); + if (this.unsubscribeFocus) { + this.unsubscribeFocus(); } console.countReset(`${ this.constructor.name }.render calls`); } diff --git a/app/views/RoomView/ReactionPicker.js b/app/views/RoomView/ReactionPicker.js index 3a10b3fcb..bc83353fa 100644 --- a/app/views/RoomView/ReactionPicker.js +++ b/app/views/RoomView/ReactionPicker.js @@ -8,7 +8,6 @@ import { responsive } from 'react-native-responsive-ui'; import EmojiPicker from '../../containers/EmojiPicker'; import styles from './styles'; import { isAndroid } from '../../utils/deviceInfo'; -import { withSplit } from '../../split'; const margin = isAndroid ? 40 : 20; const maxSize = 400; @@ -19,14 +18,14 @@ class ReactionPicker extends React.Component { window: PropTypes.any, message: PropTypes.object, show: PropTypes.bool, + isMasterDetail: PropTypes.bool, reactionClose: PropTypes.func, - onEmojiSelected: PropTypes.func, - split: PropTypes.bool + onEmojiSelected: PropTypes.func }; shouldComponentUpdate(nextProps) { - const { show, window, split } = this.props; - return nextProps.show !== show || window.width !== nextProps.window.width || nextProps.split !== split; + const { show, window } = this.props; + return nextProps.show !== show || window.width !== nextProps.window.width; } onEmojiSelected = (emoji, shortname) => { @@ -39,12 +38,13 @@ class ReactionPicker extends React.Component { render() { const { - window: { width, height }, show, baseUrl, reactionClose, split + window: { width, height }, show, baseUrl, reactionClose, isMasterDetail } = this.props; let widthStyle = width - margin; let heightStyle = Math.min(width, height) - (margin * 2); - if (split) { + + if (isMasterDetail) { widthStyle = maxSize; heightStyle = maxSize; } @@ -83,7 +83,8 @@ class ReactionPicker extends React.Component { } const mapStateToProps = state => ({ - baseUrl: state.server.server + baseUrl: state.server.server, + isMasterDetail: state.app.isMasterDetail }); -export default responsive(connect(mapStateToProps)(withSplit(ReactionPicker))); +export default responsive(connect(mapStateToProps)(ReactionPicker)); diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index df77bde22..e4cd7e278 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -2,7 +2,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { Text, View, InteractionManager } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import moment from 'moment'; @@ -39,7 +38,6 @@ import { isReadOnly } from '../../utils/isReadOnly'; import { isIOS, isTablet } from '../../utils/deviceInfo'; import { showErrorAlert } from '../../utils/info'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import { KEY_COMMAND, handleCommandScroll, @@ -47,13 +45,13 @@ import { handleCommandSearchMessages, handleCommandReplyLatest } from '../../commands'; -import ModalNavigation from '../../lib/ModalNavigation'; import { Review } from '../../utils/review'; import RoomClass from '../../lib/methods/subscriptions/room'; import { getUserSelector } from '../../selectors/login'; import { CONTAINER_TYPES } from '../../lib/methods/actions'; import Banner from './Banner'; import Navigation from '../../lib/Navigation'; +import SafeAreaView from '../../containers/SafeAreaView'; const stateAttrsUpdate = [ 'joined', @@ -72,72 +70,9 @@ const stateAttrsUpdate = [ const roomAttrsUpdate = ['f', 'ro', 'blocked', 'blocker', 'archived', 'muted', 'jitsiTimeout', 'announcement', 'sysMes', 'topic', 'name', 'fname', 'roles', 'bannerClosed', 'visitor']; class RoomView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const rid = navigation.getParam('rid', null); - const prid = navigation.getParam('prid'); - const title = navigation.getParam('name'); - const subtitle = navigation.getParam('subtitle'); - const t = navigation.getParam('t'); - const tmid = navigation.getParam('tmid'); - const baseUrl = navigation.getParam('baseUrl'); - const userId = navigation.getParam('userId'); - const token = navigation.getParam('token'); - const avatar = navigation.getParam('avatar'); - const toggleFollowThread = navigation.getParam('toggleFollowThread', () => {}); - const goRoomActionsView = navigation.getParam('goRoomActionsView', () => {}); - const unreadsCount = navigation.getParam('unreadsCount', null); - const roomUserId = navigation.getParam('roomUserId'); - const visitor = navigation.getParam('visitor'); - if (!rid) { - return { - ...themedHeader(screenProps.theme) - }; - } - return { - ...themedHeader(screenProps.theme), - headerTitle: ( - <RoomHeaderView - rid={rid} - prid={prid} - tmid={tmid} - title={title} - subtitle={subtitle} - type={t} - widthOffset={tmid ? 95 : 130} - roomUserId={roomUserId} - visitor={visitor} - goRoomActionsView={goRoomActionsView} - /> - ), - headerRight: ( - <RightButtons - rid={rid} - tmid={tmid} - t={t} - navigation={navigation} - toggleFollowThread={toggleFollowThread} - /> - ), - headerLeft: ( - <RoomHeaderLeft - tmid={tmid} - unreadsCount={unreadsCount} - navigation={navigation} - baseUrl={baseUrl} - userId={userId} - token={token} - title={avatar} - theme={screenProps.theme} - t={t} - goRoomActionsView={goRoomActionsView} - split={screenProps.split} - /> - ) - }; - } - static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, user: PropTypes.shape({ id: PropTypes.string.isRequired, username: PropTypes.string.isRequired, @@ -152,7 +87,7 @@ class RoomView extends React.Component { Hide_System_Messages: PropTypes.array, baseUrl: PropTypes.string, customEmojis: PropTypes.object, - screenProps: PropTypes.object, + isMasterDetail: PropTypes.bool, theme: PropTypes.string, replyBroadcast: PropTypes.func }; @@ -161,15 +96,15 @@ class RoomView extends React.Component { super(props); console.time(`${ this.constructor.name } init`); console.time(`${ this.constructor.name } mount`); - this.rid = props.navigation.getParam('rid'); - this.t = props.navigation.getParam('t'); - this.tmid = props.navigation.getParam('tmid', null); - const room = props.navigation.getParam('room'); - const selectedMessage = props.navigation.getParam('message'); - const name = props.navigation.getParam('name'); - const fname = props.navigation.getParam('fname'); - const search = props.navigation.getParam('search'); - const prid = props.navigation.getParam('prid'); + this.rid = props.route.params?.rid; + this.t = props.route.params?.t; + this.tmid = props.route.params?.tmid; + const room = props.route.params?.room; + const selectedMessage = props.route.params?.message; + const name = props.route.params?.name; + const fname = props.route.params?.fname; + const search = props.route.params?.search; + const prid = props.route.params?.prid; this.state = { joined: true, room: room || { @@ -188,8 +123,11 @@ class RoomView extends React.Component { replying: !!selectedMessage, replyWithMention: false, reacting: false, - readOnly: false + readOnly: false, + unreadsCount: null, + roomUserId: null }; + this.setHeader(); if (room && room.observe) { this.observeRoom(room); @@ -206,7 +144,9 @@ class RoomView extends React.Component { this.messagebox = React.createRef(); this.list = React.createRef(); this.mounted = false; - this.sub = new RoomClass(this.rid); + if (this.rid) { + this.sub = new RoomClass(this.rid); + } console.timeEnd(`${ this.constructor.name } init`); } @@ -214,25 +154,8 @@ class RoomView extends React.Component { this.mounted = true; this.offset = 0; this.didMountInteraction = InteractionManager.runAfterInteractions(() => { - const { room } = this.state; - const { - navigation, isAuthenticated, user, baseUrl - } = this.props; - if ((room.id || room.rid) && !this.tmid) { - navigation.setParams({ - name: RocketChat.getRoomTitle(room), - subtitle: room.topic, - avatar: room.name, - t: room.t, - token: user.token, - userId: user.id, - goRoomActionsView: this.goRoomActionsView, - baseUrl - }); - } - if (this.tmid) { - navigation.setParams({ toggleFollowThread: this.toggleFollowThread, goRoomActionsView: this.goRoomActionsView }); - } + const { isAuthenticated } = this.props; + this.setHeader(); if (this.rid) { this.sub.subscribe(); if (isAuthenticated) { @@ -273,8 +196,8 @@ class RoomView extends React.Component { } componentDidUpdate(prevProps, prevState) { - const { roomUpdate, room } = this.state; - const { appState, navigation } = this.props; + const { roomUpdate } = this.state; + const { appState } = this.props; if (appState === 'foreground' && appState !== prevProps.appState && this.rid) { this.onForegroundInteraction = InteractionManager.runAfterInteractions(() => { @@ -287,7 +210,7 @@ class RoomView extends React.Component { // If it's not direct message if (this.t !== 'd') { if (roomUpdate.topic !== prevState.roomUpdate.topic) { - navigation.setParams({ subtitle: roomUpdate.topic }); + this.setHeader(); } if (!isEqual(prevState.roomUpdate.roles, roomUpdate.roles)) { this.setReadOnly(); @@ -296,11 +219,11 @@ class RoomView extends React.Component { // If it's a livechat room if (this.t === 'l') { if (!isEqual(prevState.roomUpdate.visitor, roomUpdate.visitor)) { - navigation.setParams({ visitor: roomUpdate.visitor }); + this.setHeader(); } } if (((roomUpdate.fname !== prevState.roomUpdate.fname) || (roomUpdate.name !== prevState.roomUpdate.name)) && !this.tmid) { - navigation.setParams({ name: RocketChat.getRoomTitle(room) }); + this.setHeader(); } } @@ -357,15 +280,87 @@ class RoomView extends React.Component { console.countReset(`${ this.constructor.name }.render calls`); } - // eslint-disable-next-line react/sort-comp - goRoomActionsView = () => { - const { room, member } = this.state; - const { navigation } = this.props; - navigation.navigate('RoomActionsView', { - rid: this.rid, t: this.t, room, member + setHeader = () => { + const { room, unreadsCount, roomUserId: stateRoomUserId } = this.state; + const { + navigation, route, isMasterDetail, theme, baseUrl, user + } = this.props; + const rid = route.params?.rid; + const prid = route.params?.prid; + let title = route.params?.name; + if ((room.id || room.rid) && !this.tmid) { + title = RocketChat.getRoomTitle(room); + } + const subtitle = room?.topic; + const t = route.params?.t || room?.t; + const tmid = route.params?.tmid; + const { id: userId, token } = user; + const avatar = room?.name; + const roomUserId = route.params?.roomUserId || stateRoomUserId; + const visitor = room?.visitor; + if (!rid) { + return; + } + navigation.setOptions({ + headerShown: true, + headerTitleAlign: 'left', + headerTitle: () => ( + <RoomHeaderView + rid={rid} + prid={prid} + tmid={tmid} + title={title} + subtitle={subtitle} + type={t} + roomUserId={roomUserId} + visitor={visitor} + goRoomActionsView={this.goRoomActionsView} + /> + ), + headerRight: () => ( + <RightButtons + rid={rid} + tmid={tmid} + t={t} + navigation={navigation} + toggleFollowThread={this.toggleFollowThread} + /> + ), + headerLeft: () => ( + <RoomHeaderLeft + tmid={tmid} + unreadsCount={unreadsCount} + navigation={navigation} + baseUrl={baseUrl} + userId={userId} + token={token} + title={avatar} + theme={theme} + t={t} + goRoomActionsView={this.goRoomActionsView} + isMasterDetail={isMasterDetail} + /> + ) }); } + goRoomActionsView = (screen) => { + const { room, member } = this.state; + const { navigation, isMasterDetail } = this.props; + if (isMasterDetail) { + navigation.navigate('ModalStackNavigator', { + screen: screen ?? 'RoomActionsView', + params: { + rid: this.rid, t: this.t, room, member, showCloseModal: !!screen + } + }); + } else { + navigation.navigate('RoomActionsView', { + rid: this.rid, t: this.t, room, member + }); + } + } + setReadOnly = async() => { const { room } = this.state; const { user } = this.props; @@ -436,12 +431,9 @@ class RoomView extends React.Component { const { t } = room; if (t === 'd' && !RocketChat.isGroupChat(room)) { - const { navigation } = this.props; - try { const roomUserId = RocketChat.getUidDirectMessage(room); - - navigation.setParams({ roomUserId }); + this.setState({ roomUserId }, () => this.setHeader()); const result = await RocketChat.getUserInfo(roomUserId); if (result.success) { @@ -458,17 +450,11 @@ class RoomView extends React.Component { findAndObserveRoom = async(rid) => { try { const db = database.active; - const { navigation } = this.props; const subCollection = await db.collections.get('subscriptions'); const room = await subCollection.find(rid); this.setState({ room }); if (!this.tmid) { - navigation.setParams({ - name: RocketChat.getRoomTitle(room), - subtitle: room.topic, - avatar: room.name, - t: room.t - }); + this.setHeader(); } this.observeRoom(room); } catch (error) { @@ -613,12 +599,10 @@ class RoomView extends React.Component { .observeWithColumns(['unread']); this.queryUnreads = observable.subscribe((data) => { - const { navigation } = this.props; - const unreadsCount = data.filter(s => s.unread > 0).reduce((a, b) => a + (b.unread || 0), 0); - if (unreadsCount !== navigation.getParam('unreadsCount')) { - navigation.setParams({ - unreadsCount - }); + const { unreadsCount } = this.state; + const newUnreadsCount = data.filter(s => s.unread > 0).reduce((a, b) => a + (b.unread || 0), 0); + if (unreadsCount !== newUnreadsCount) { + this.setState({ unreadsCount: newUnreadsCount }, () => this.setHeader()); } }); }; @@ -757,16 +741,15 @@ class RoomView extends React.Component { } navToRoomInfo = (navParam) => { - const { room } = this.state; - const { navigation, user, screenProps } = this.props; + const { navigation, user, isMasterDetail } = this.props; if (navParam.rid === user.id) { return; } - if (screenProps && screenProps.split) { - navigation.navigate('RoomActionsView', { rid: this.rid, t: this.t, room }); - ModalNavigation.navigate('RoomInfoView', navParam); + if (isMasterDetail) { + navParam.showCloseModal = true; + navigation.navigate('ModalStackNavigator', { screen: 'RoomInfoView', params: navParam }); } else { - navigation.push('RoomInfoView', navParam); + navigation.navigate('RoomInfoView', navParam); } } @@ -782,18 +765,15 @@ class RoomView extends React.Component { handleCommands = ({ event }) => { if (this.rid) { - const { room } = this.state; - const { navigation } = this.props; const { input } = event; if (handleCommandScroll(event)) { const offset = input === 'UIKeyInputUpArrow' ? 100 : -100; this.offset += offset; this.flatList.scrollToOffset({ offset: this.offset }); } else if (handleCommandRoomActions(event)) { - navigation.navigate('RoomActionsView', { rid: this.rid, t: this.t, room }); + this.goRoomActionsView(); } else if (handleCommandSearchMessages(event)) { - navigation.navigate('RoomActionsView', { rid: this.rid, t: this.t, room }); - ModalNavigation.navigate('SearchMessagesView', { rid: this.rid }); + this.goRoomActionsView('SearchMessagesView'); } else if (handleCommandReplyLatest(event)) { if (this.list && this.list.current) { const message = this.list.current.getLastMessage(); @@ -1016,12 +996,9 @@ class RoomView extends React.Component { return ( <SafeAreaView - style={[ - styles.container, - { backgroundColor: themes[theme].backgroundColor } - ]} + style={{ backgroundColor: themes[theme].backgroundColor }} testID='room-view' - forceInset={{ vertical: 'never' }} + theme={theme} > <StatusBar theme={theme} /> <Banner @@ -1069,6 +1046,7 @@ class RoomView extends React.Component { const mapStateToProps = state => ({ user: getUserSelector(state), + isMasterDetail: state.app.isMasterDetail, appState: state.app.ready && state.app.foreground ? 'foreground' : 'background', useRealName: state.settings.UI_Use_Real_Name, isAuthenticated: state.login.isAuthenticated, diff --git a/app/views/RoomsListView/ServerDropdown.js b/app/views/RoomsListView/ServerDropdown.js index f151f42d1..be28fdbf7 100644 --- a/app/views/RoomsListView/ServerDropdown.js +++ b/app/views/RoomsListView/ServerDropdown.js @@ -3,13 +3,14 @@ import { View, Text, Animated, Easing, TouchableWithoutFeedback, TouchableOpacity, FlatList, Image } from 'react-native'; import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; +import { connect, batch } from 'react-redux'; import equal from 'deep-equal'; -import { withNavigation } from 'react-navigation'; import RNUserDefaults from 'rn-user-defaults'; +import { withSafeAreaInsets } from 'react-native-safe-area-context'; import { toggleServerDropdown as toggleServerDropdownAction } from '../../actions/rooms'; -import { selectServerRequest as selectServerRequestAction } from '../../actions/server'; +import { selectServerRequest as selectServerRequestAction, serverInitAdd as serverInitAddAction } from '../../actions/server'; +import { appStart as appStartAction, ROOT_NEW_SERVER } from '../../actions/app'; import styles from './styles'; import Touch from '../../utils/touch'; import RocketChat from '../../lib/rocketchat'; @@ -21,10 +22,11 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { KEY_COMMAND, handleCommandSelectServer } from '../../commands'; import { isTablet } from '../../utils/deviceInfo'; -import { withSplit } from '../../split'; import { localAuthenticate } from '../../utils/localAuthentication'; import { showConfirmationAlert } from '../../utils/info'; import LongPress from '../../utils/longPress'; +import { headerHeight } from '../../containers/Header'; +import { goRoom } from '../../utils/goRoom'; const ROW_HEIGHT = 68; const ANIMATION_DURATION = 200; @@ -32,12 +34,15 @@ const ANIMATION_DURATION = 200; class ServerDropdown extends Component { static propTypes = { navigation: PropTypes.object, + insets: PropTypes.object, closeServerDropdown: PropTypes.bool, - split: PropTypes.bool, server: PropTypes.string, theme: PropTypes.string, + isMasterDetail: PropTypes.bool, + appStart: PropTypes.func, toggleServerDropdown: PropTypes.func, - selectServerRequest: PropTypes.func + selectServerRequest: PropTypes.func, + initAdd: PropTypes.func } constructor(props) { @@ -122,28 +127,35 @@ class ServerDropdown extends Component { ).start(() => toggleServerDropdown()); } - addServer = () => { - const { server, navigation } = this.props; + navToNewServer = (previousServer) => { + const { appStart, initAdd } = this.props; + batch(() => { + appStart({ root: ROOT_NEW_SERVER }); + initAdd(previousServer); + }); + } + addServer = () => { + const { server } = this.props; this.close(); setTimeout(() => { - navigation.navigate('NewServerView', { previousServer: server }); + this.navToNewServer(server); }, ANIMATION_DURATION); } select = async(server) => { const { - server: currentServer, selectServerRequest, navigation, split + server: currentServer, selectServerRequest, isMasterDetail } = this.props; this.close(); if (currentServer !== server) { const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ server }`); - if (split) { - navigation.navigate('RoomView'); + if (isMasterDetail) { + goRoom({ item: {}, isMasterDetail }); } if (!userId) { setTimeout(() => { - navigation.navigate('NewServerView', { previousServer: currentServer }); + this.navToNewServer(currentServer); this.newServerTimeout = setTimeout(() => { EventEmitter.emit('NewServer', { server }); }, ANIMATION_DURATION); @@ -225,12 +237,14 @@ class ServerDropdown extends Component { render() { const { servers } = this.state; - const { theme } = this.props; + const { theme, isMasterDetail, insets } = this.props; const maxRows = 4; const initialTop = 41 + (Math.min(servers.length, maxRows) * ROW_HEIGHT); + const statusBarHeight = insets?.top ?? 0; + const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0; const translateY = this.animatedValue.interpolate({ inputRange: [0, 1], - outputRange: [-initialTop, 0] + outputRange: [-initialTop, heightDestination] }); const backdropOpacity = this.animatedValue.interpolate({ inputRange: [0, 1], @@ -239,7 +253,13 @@ class ServerDropdown extends Component { return ( <> <TouchableWithoutFeedback onPress={this.close}> - <Animated.View style={[styles.backdrop, { backgroundColor: themes[theme].backdropColor, opacity: backdropOpacity }]} /> + <Animated.View style={[styles.backdrop, + { + backgroundColor: themes[theme].backdropColor, + opacity: backdropOpacity, + top: heightDestination + }]} + /> </TouchableWithoutFeedback> <Animated.View style={[ @@ -280,12 +300,15 @@ class ServerDropdown extends Component { const mapStateToProps = state => ({ closeServerDropdown: state.rooms.closeServerDropdown, - server: state.server.server + server: state.server.server, + isMasterDetail: state.app.isMasterDetail }); const mapDispatchToProps = dispatch => ({ toggleServerDropdown: () => dispatch(toggleServerDropdownAction()), - selectServerRequest: server => dispatch(selectServerRequestAction(server)) + selectServerRequest: server => dispatch(selectServerRequestAction(server)), + appStart: params => dispatch(appStartAction(params)), + initAdd: previousServer => dispatch(serverInitAddAction(previousServer)) }); -export default withNavigation(connect(mapStateToProps, mapDispatchToProps)(withTheme(withSplit(ServerDropdown)))); +export default connect(mapStateToProps, mapDispatchToProps)(withSafeAreaInsets(withTheme(ServerDropdown))); diff --git a/app/views/RoomsListView/SortDropdown/index.js b/app/views/RoomsListView/SortDropdown/index.js index 5dff761af..b0c398b85 100644 --- a/app/views/RoomsListView/SortDropdown/index.js +++ b/app/views/RoomsListView/SortDropdown/index.js @@ -4,6 +4,7 @@ import { } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; +import { withSafeAreaInsets } from 'react-native-safe-area-context'; import styles from '../styles'; import Touch from '../../../utils/touch'; @@ -15,6 +16,7 @@ import { CustomIcon } from '../../../lib/Icons'; import { withTheme } from '../../../theme'; import { themes } from '../../../constants/colors'; import { SortItemButton, SortItemContent } from './Item'; +import { headerHeight } from '../../../containers/Header'; const ANIMATION_DURATION = 200; @@ -26,7 +28,9 @@ class Sort extends PureComponent { groupByType: PropTypes.bool, showFavorites: PropTypes.bool, showUnread: PropTypes.bool, + isMasterDetail: PropTypes.bool, theme: PropTypes.string, + insets: PropTypes.object, setSortPreference: PropTypes.func } @@ -104,9 +108,12 @@ class Sort extends PureComponent { } render() { + const { isMasterDetail, insets } = this.props; + const statusBarHeight = insets?.top ?? 0; + const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0; const translateY = this.animatedValue.interpolate({ inputRange: [0, 1], - outputRange: [-326, 0] + outputRange: [-326, heightDestination] }); const backdropOpacity = this.animatedValue.interpolate({ inputRange: [0, 1], @@ -119,7 +126,13 @@ class Sort extends PureComponent { return ( <> <TouchableWithoutFeedback onPress={this.close}> - <Animated.View style={[styles.backdrop, { backgroundColor: themes[theme].backdropColor, opacity: backdropOpacity }]} /> + <Animated.View style={[styles.backdrop, + { + backgroundColor: themes[theme].backdropColor, + opacity: backdropOpacity, + top: heightDestination + }]} + /> </TouchableWithoutFeedback> <Animated.View style={[ @@ -190,11 +203,12 @@ class Sort extends PureComponent { } const mapStateToProps = state => ({ - closeSortDropdown: state.rooms.closeSortDropdown + closeSortDropdown: state.rooms.closeSortDropdown, + isMasterDetail: state.app.isMasterDetail }); const mapDispatchToProps = dispatch => ({ setSortPreference: preference => dispatch(setPreference(preference)) }); -export default connect(mapStateToProps, mapDispatchToProps)(withTheme(Sort)); +export default connect(mapStateToProps, mapDispatchToProps)(withSafeAreaInsets(withTheme(Sort))); diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 0a9ed1eb0..e8a62c1cf 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -11,7 +11,6 @@ import { } from 'react-native'; import { connect } from 'react-redux'; import { isEqual, orderBy } from 'lodash'; -import { SafeAreaView } from 'react-navigation'; import Orientation from 'react-native-orientation-locker'; import { Q } from '@nozbe/watermelondb'; @@ -30,7 +29,7 @@ import { roomsRequest as roomsRequestAction, closeServerDropdown as closeServerDropdownAction } from '../../actions/rooms'; -import { appStart as appStartAction } from '../../actions'; +import { appStart as appStartAction, ROOT_BACKGROUND } from '../../actions/app'; import debounce from '../../utils/debounce'; import { isIOS, isAndroid, isTablet } from '../../utils/deviceInfo'; import RoomsListHeaderView from './Header'; @@ -46,7 +45,6 @@ import { selectServerRequest as selectServerRequestAction } from '../../actions/ import { animateNextTransition } from '../../utils/layoutAnimation'; import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; -import { themedHeader } from '../../utils/navigation'; import EventEmitter from '../../utils/events'; import { KEY_COMMAND, @@ -59,9 +57,10 @@ import { handleCommandAddNewServer } from '../../commands'; import { MAX_SIDEBAR_WIDTH } from '../../constants/tablet'; -import { withSplit } from '../../split'; import { getUserSelector } from '../../selectors/login'; import { goRoom } from '../../utils/goRoom'; +import SafeAreaView from '../../containers/SafeAreaView'; +import Header from '../../containers/Header'; const SCROLL_OFFSET = 56; const INITIAL_NUM_TO_RENDER = isTablet ? 20 : 12; @@ -89,7 +88,7 @@ const shouldUpdateProps = [ 'StoreLastMessage', 'appState', 'theme', - 'split', + 'isMasterDetail', 'refreshing' ]; const getItemLayout = (data, index) => ({ @@ -100,51 +99,6 @@ const getItemLayout = (data, index) => ({ const keyExtractor = item => item.rid; class RoomsListView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const searching = navigation.getParam('searching'); - const cancelSearch = navigation.getParam('cancelSearch', () => {}); - const initSearching = navigation.getParam( - 'initSearching', - () => {} - ); - - return { - ...themedHeader(screenProps.theme), - headerLeft: searching && isAndroid ? ( - <CustomHeaderButtons left> - <Item - title='cancel' - iconName='Cross' - onPress={cancelSearch} - /> - </CustomHeaderButtons> - ) : ( - <DrawerButton - navigation={navigation} - testID='rooms-list-view-sidebar' - /> - ), - headerTitle: <RoomsListHeaderView />, - headerRight: searching && isAndroid ? null : ( - <CustomHeaderButtons> - {isAndroid ? ( - <Item - title='search' - iconName='magnifier' - onPress={initSearching} - /> - ) : null} - <Item - title='new' - iconName='new-chat' - onPress={() => navigation.navigate('NewMessageView')} - testID='rooms-list-view-create-channel' - /> - </CustomHeaderButtons> - ) - }; - }; - static propTypes = { navigation: PropTypes.object, user: PropTypes.shape({ @@ -173,7 +127,8 @@ class RoomsListView extends React.Component { closeServerDropdown: PropTypes.func, useRealName: PropTypes.bool, connected: PropTypes.bool, - split: PropTypes.bool + isMasterDetail: PropTypes.bool, + rooms: PropTypes.array }; constructor(props) { @@ -190,29 +145,20 @@ class RoomsListView extends React.Component { loading: true, allChats: [], chats: [], - width + width, + item: {} }; + this.setHeader(); } componentDidMount() { this.getSubscriptions(); const { navigation, closeServerDropdown } = this.props; - navigation.setParams({ - initSearching: this.initSearching, - cancelSearch: this.cancelSearch - }); if (isTablet) { EventEmitter.addEventListener(KEY_COMMAND, this.handleCommands); } Dimensions.addEventListener('change', this.onDimensionsChange); - this.willFocusListener = navigation.addListener('willFocus', () => { - // Check if there were changes while not focused (it's set on sCU) - if (this.shouldUpdate) { - this.forceUpdate(); - this.shouldUpdate = false; - } - }); - this.didFocusListener = navigation.addListener('didFocus', () => { + this.unsubscribeFocus = navigation.addListener('focus', () => { Orientation.unlockAllOrientations(); this.animated = true; // Check if there were changes while not focused (it's set on sCU) @@ -222,9 +168,10 @@ class RoomsListView extends React.Component { } this.backHandler = BackHandler.addEventListener('hardwareBackPress', this.handleBackPress); }); - this.willBlurListener = navigation.addListener('willBlur', () => { + this.unsubscribeBlur = navigation.addListener('blur', () => { this.animated = false; closeServerDropdown(); + this.cancelSearch(); if (this.backHandler && this.backHandler.remove) { this.backHandler.remove(); } @@ -251,7 +198,7 @@ class RoomsListView extends React.Component { } shouldComponentUpdate(nextProps, nextState) { - const { allChats, searching } = this.state; + const { allChats, searching, item } = this.state; // eslint-disable-next-line react/destructuring-assignment const propsUpdated = shouldUpdateProps.some(key => nextProps[key] !== this.props[key]); if (propsUpdated) { @@ -270,6 +217,10 @@ class RoomsListView extends React.Component { return true; } + if (nextState.item?.rid !== item?.rid) { + return true; + } + // Abort if it's not focused if (!nextProps.navigation.isFocused()) { return false; @@ -280,6 +231,7 @@ class RoomsListView extends React.Component { width, search } = this.state; + const { rooms } = this.props; if (nextState.loading !== loading) { return true; } @@ -289,6 +241,9 @@ class RoomsListView extends React.Component { if (!isEqual(nextState.search, search)) { return true; } + if (!isEqual(nextProps.rooms, rooms)) { + return true; + } // If it's focused and there are changes, update if (chatsNotEqual) { this.shouldUpdate = false; @@ -305,8 +260,11 @@ class RoomsListView extends React.Component { showUnread, appState, connected, - roomsRequest + roomsRequest, + rooms, + isMasterDetail } = this.props; + const { item } = this.state; if ( !( @@ -324,20 +282,22 @@ class RoomsListView extends React.Component { ) { roomsRequest(); } + // Update current item in case of another action triggers an update on rooms reducer + if (isMasterDetail && item?.rid !== rooms[0] && !isEqual(rooms, prevProps.rooms)) { + // eslint-disable-next-line react/no-did-update-set-state + this.setState({ item: { rid: rooms[0] } }); + } } componentWillUnmount() { if (this.querySubscription && this.querySubscription.unsubscribe) { this.querySubscription.unsubscribe(); } - if (this.willFocusListener && this.willFocusListener.remove) { - this.willFocusListener.remove(); + if (this.unsubscribeFocus) { + this.unsubscribeFocus(); } - if (this.didFocusListener && this.didFocusListener.remove) { - this.didFocusListener.remove(); - } - if (this.willBlurListener && this.willBlurListener.remove) { - this.willBlurListener.remove(); + if (this.unsubscribeBlur) { + this.unsubscribeBlur(); } if (isTablet) { EventEmitter.removeListener(KEY_COMMAND, this.handleCommands); @@ -346,6 +306,52 @@ class RoomsListView extends React.Component { console.countReset(`${ this.constructor.name }.render calls`); } + getHeader = () => { + const { searching } = this.state; + const { navigation, isMasterDetail } = this.props; + return { + headerLeft: () => (searching && isAndroid ? ( + <CustomHeaderButtons left> + <Item + title='cancel' + iconName='Cross' + onPress={this.cancelSearch} + /> + </CustomHeaderButtons> + ) : ( + <DrawerButton + navigation={navigation} + testID='rooms-list-view-sidebar' + onPress={isMasterDetail ? () => navigation.navigate('ModalStackNavigator', { screen: 'SettingsView' }) : () => navigation.toggleDrawer()} + /> + )), + headerTitle: () => <RoomsListHeaderView />, + headerRight: () => (searching && isAndroid ? null : ( + <CustomHeaderButtons> + {isAndroid ? ( + <Item + title='search' + iconName='magnifier' + onPress={this.initSearching} + /> + ) : null} + <Item + title='new' + iconName='new-chat' + onPress={isMasterDetail ? () => navigation.navigate('ModalStackNavigator', { screen: 'NewMessageView' }) : () => navigation.navigate('NewMessageStackNavigator')} + testID='rooms-list-view-create-channel' + /> + </CustomHeaderButtons> + )) + }; + } + + setHeader = () => { + const { navigation } = this.props; + const options = this.getHeader(); + navigation.setOptions(options); + } + // eslint-disable-next-line react/sort-comp onDimensionsChange = ({ window: { width } }) => this.setState({ width }); @@ -461,33 +467,35 @@ class RoomsListView extends React.Component { } initSearching = () => { - const { openSearchHeader, navigation } = this.props; - this.internalSetState({ searching: true }); - if (isAndroid) { - navigation.setParams({ searching: true }); - openSearchHeader(); - } + const { openSearchHeader } = this.props; + this.internalSetState({ searching: true }, () => { + if (isAndroid) { + openSearchHeader(); + this.setHeader(); + } + }); }; cancelSearch = () => { const { searching } = this.state; - const { closeSearchHeader, navigation } = this.props; + const { closeSearchHeader } = this.props; if (!searching) { return; } + Keyboard.dismiss(); + if (isIOS && this.inputRef) { this.inputRef.blur(); this.inputRef.clear(); } - if (isAndroid) { - navigation.setParams({ searching: false }); - closeSearchHeader(); - } - Keyboard.dismiss(); this.setState({ searching: false, search: [] }, () => { + if (isAndroid) { + this.setHeader(); + closeSearchHeader(); + } setTimeout(() => { const offset = isAndroid ? 0 : SCROLL_OFFSET; if (this.scroll.scrollTo) { @@ -506,15 +514,16 @@ class RoomsListView extends React.Component { this.cancelSearch(); return true; } - appStart('background'); + appStart({ root: ROOT_BACKGROUND }); return false; }; // eslint-disable-next-line react/sort-comp search = debounce(async(text) => { - const { searching } = this.state; const result = await RocketChat.search({ text }); + // if the search was cancelled before the promise is resolved + const { searching } = this.state; if (!searching) { return; } @@ -536,14 +545,13 @@ class RoomsListView extends React.Component { getUidDirectMessage = room => RocketChat.getUidDirectMessage(room); onPressItem = (item = {}) => { - const { navigation } = this.props; + const { navigation, isMasterDetail } = this.props; if (!navigation.isFocused()) { return; } this.cancelSearch(); - this.item = item; - goRoom(item); + this.goRoom({ item, isMasterDetail }); }; toggleSort = () => { @@ -625,16 +633,34 @@ class RoomsListView extends React.Component { }; goDirectory = () => { - const { navigation } = this.props; - navigation.navigate('DirectoryView'); + const { navigation, isMasterDetail } = this.props; + if (isMasterDetail) { + navigation.navigate('ModalStackNavigator', { screen: 'DirectoryView' }); + } else { + navigation.navigate('DirectoryView'); + } }; + goRoom = ({ item, isMasterDetail }) => { + const { item: currentItem } = this.state; + const { rooms } = this.props; + if (currentItem?.rid === item.rid || rooms?.includes(item.rid)) { + return; + } + // Only mark room as focused when in master detail layout + if (isMasterDetail) { + this.setState({ item }); + } + goRoom({ item, isMasterDetail }); + } + goRoomByIndex = (index) => { const { chats } = this.state; + const { isMasterDetail } = this.props; const filteredChats = chats.filter(c => !c.separator); const room = filteredChats[index - 1]; if (room) { - this.goRoom(room); + this.goRoom({ item: room, isMasterDetail }); } } @@ -655,9 +681,11 @@ class RoomsListView extends React.Component { // Go to previous or next room based on sign (-1 or 1) // It's used by iPad key commands goOtherRoom = (sign) => { - if (!this.item) { + const { item } = this.state; + if (!item) { return; } + // Don't run during search const { search } = this.state; if (search.length > 0) { @@ -665,18 +693,19 @@ class RoomsListView extends React.Component { } const { chats } = this.state; - const index = chats.findIndex(c => c.rid === this.item.rid); + const { isMasterDetail } = this.props; + const index = chats.findIndex(c => c.rid === item.rid); const otherRoom = this.findOtherRoom(index, sign); if (otherRoom) { - this.goRoom(otherRoom); + this.goRoom({ item: otherRoom, isMasterDetail }); } } handleCommands = ({ event }) => { - const { navigation, server } = this.props; + const { navigation, server, isMasterDetail } = this.props; const { input } = event; if (handleCommandShowPreferences(event)) { - navigation.toggleDrawer(); + navigation.navigate('SettingsView'); } else if (handleCommandSearching(event)) { this.scroll.scrollToOffset({ animated: true, offset: 0 }); this.inputRef.focus(); @@ -687,7 +716,11 @@ class RoomsListView extends React.Component { } else if (handleCommandNextRoom(event)) { this.goOtherRoom(1); } else if (handleCommandShowNewMessage(event)) { - navigation.navigate('NewMessageView'); + if (isMasterDetail) { + navigation.navigate('ModalStackNavigator', { screen: 'NewMessageView' }); + } else { + navigation.navigate('NewMessageStack'); + } } else if (handleCommandAddNewServer(event)) { navigation.navigate('NewServerView', { previousServer: server }); } @@ -723,6 +756,22 @@ class RoomsListView extends React.Component { ); }; + renderHeader = () => { + const { isMasterDetail, theme } = this.props; + + if (!isMasterDetail) { + return null; + } + + const options = this.getHeader(); + return ( + <Header + theme={theme} + {...options} + /> + ); + } + getIsRead = (item) => { let isUnread = item.archived !== true && item.open === true; // item is not archived and not opened isUnread = isUnread && (item.unread > 0 || item.alert === true); // either its unread count > 0 or its alert @@ -734,7 +783,7 @@ class RoomsListView extends React.Component { return this.renderSectionHeader(item.rid); } - const { width } = this.state; + const { width, item: currentItem } = this.state; const { user: { id: userId, @@ -745,7 +794,7 @@ class RoomsListView extends React.Component { StoreLastMessage, useRealName, theme, - split + isMasterDetail } = this.props; const id = this.getUidDirectMessage(item); const isGroupChat = RocketChat.isGroupChat(item); @@ -775,7 +824,7 @@ class RoomsListView extends React.Component { showLastMessage={StoreLastMessage} onPress={() => this.onPressItem(item)} testID={`rooms-list-view-item-${ item.name }`} - width={split ? MAX_SIDEBAR_WIDTH : width} + width={isMasterDetail ? MAX_SIDEBAR_WIDTH : width} toggleFav={this.toggleFav} toggleRead={this.toggleRead} hideChannel={this.hideChannel} @@ -783,6 +832,7 @@ class RoomsListView extends React.Component { getUserPresence={this.getUserPresence} isGroupChat={isGroupChat} visitor={item.visitor} + isFocused={currentItem?.rid === item.rid} /> ); }; @@ -841,16 +891,14 @@ class RoomsListView extends React.Component { showUnread, showServerDropdown, showSortDropdown, - theme + theme, + navigation } = this.props; return ( - <SafeAreaView - style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} - testID='rooms-list-view' - forceInset={{ vertical: 'never' }} - > + <SafeAreaView testID='rooms-list-view' theme={theme} style={{ backgroundColor: themes[theme].backgroundColor }}> <StatusBar theme={theme} /> + {this.renderHeader()} {this.renderScroll()} {showSortDropdown ? ( <SortDropdown @@ -861,7 +909,7 @@ class RoomsListView extends React.Component { showUnread={showUnread} /> ) : null} - {showServerDropdown ? <ServerDropdown /> : null} + {showServerDropdown ? <ServerDropdown navigation={navigation} /> : null} </SafeAreaView> ); }; @@ -869,6 +917,7 @@ class RoomsListView extends React.Component { const mapStateToProps = state => ({ user: getUserSelector(state), + isMasterDetail: state.app.isMasterDetail, server: state.server.server, connected: state.server.connected, searchText: state.rooms.searchText, @@ -882,17 +931,18 @@ const mapStateToProps = state => ({ showUnread: state.sortPreferences.showUnread, useRealName: state.settings.UI_Use_Real_Name, appState: state.app.ready && state.app.foreground ? 'foreground' : 'background', - StoreLastMessage: state.settings.Store_Last_Message + StoreLastMessage: state.settings.Store_Last_Message, + rooms: state.room.rooms }); const mapDispatchToProps = dispatch => ({ toggleSortDropdown: () => dispatch(toggleSortDropdownAction()), openSearchHeader: () => dispatch(openSearchHeaderAction()), closeSearchHeader: () => dispatch(closeSearchHeaderAction()), - appStart: () => dispatch(appStartAction()), + appStart: params => dispatch(appStartAction(params)), roomsRequest: params => dispatch(roomsRequestAction(params)), selectServerRequest: server => dispatch(selectServerRequestAction(server)), closeServerDropdown: () => dispatch(closeServerDropdownAction()) }); -export default connect(mapStateToProps, mapDispatchToProps)(withTheme(withSplit(RoomsListView))); +export default connect(mapStateToProps, mapDispatchToProps)(withTheme(RoomsListView)); diff --git a/app/views/ScreenLockConfigView.js b/app/views/ScreenLockConfigView.js index 1dfdc6fdc..f235f6caf 100644 --- a/app/views/ScreenLockConfigView.js +++ b/app/views/ScreenLockConfigView.js @@ -1,14 +1,11 @@ import React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet, Switch, ScrollView } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import I18n from '../i18n'; -import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; import { themes, SWITCH_TRACK_COLOR } from '../constants/colors'; -import sharedStyles from './Styles'; import StatusBar from '../containers/StatusBar'; import Separator from '../containers/Separator'; import ListItem from '../containers/ListItem'; @@ -18,6 +15,7 @@ import database from '../lib/database'; import { supportedBiometryLabel, changePasscode, checkHasPasscode } from '../utils/localAuthentication'; import { DisclosureImage } from '../containers/DisclosureIndicator'; import { DEFAULT_AUTO_LOCK } from '../constants/localAuthentication'; +import SafeAreaView from '../containers/SafeAreaView'; const styles = StyleSheet.create({ listPadding: { @@ -31,10 +29,9 @@ const styles = StyleSheet.create({ const DEFAULT_BIOMETRY = false; class ScreenLockConfigView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Screen_lock'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Screen_lock') + }; static propTypes = { theme: PropTypes.string, @@ -265,10 +262,7 @@ class ScreenLockConfigView extends React.Component { const { autoLock } = this.state; const { theme } = this.props; return ( - <SafeAreaView - style={[sharedStyles.container, { backgroundColor: themes[theme].auxiliaryBackground }]} - forceInset={{ vertical: 'never' }} - > + <SafeAreaView theme={theme}> <StatusBar theme={theme} /> <ScrollView keyExtractor={item => item.value} diff --git a/app/views/SearchMessagesView/index.js b/app/views/SearchMessagesView/index.js index 856d83713..b918bd60f 100644 --- a/app/views/SearchMessagesView/index.js +++ b/app/views/SearchMessagesView/index.js @@ -2,7 +2,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View, FlatList, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import RCTextInput from '../../containers/TextInput'; @@ -18,17 +17,25 @@ import StatusBar from '../../containers/StatusBar'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; +import { CloseModalButton } from '../../containers/HeaderButton'; class SearchMessagesView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Search'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = ({ navigation, route }) => { + const options = { + title: I18n.t('Search') + }; + const showCloseModal = route.params?.showCloseModal; + if (showCloseModal) { + options.headerLeft = () => <CloseModalButton navigation={navigation} />; + } + return options; + } static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, user: PropTypes.object, baseUrl: PropTypes.string, customEmojis: PropTypes.object, @@ -42,7 +49,7 @@ class SearchMessagesView extends React.Component { messages: [], searchText: '' }; - this.rid = props.navigation.getParam('rid'); + this.rid = props.route.params?.rid; } shouldComponentUpdate(nextProps, nextState) { @@ -152,7 +159,7 @@ class SearchMessagesView extends React.Component { render() { const { theme } = this.props; return ( - <SafeAreaView style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} testID='search-messages-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID='search-messages-view' theme={theme}> <StatusBar theme={theme} /> <View style={styles.searchContainer}> <RCTextInput diff --git a/app/views/SearchMessagesView/styles.js b/app/views/SearchMessagesView/styles.js index 7c5cdd82c..0d3b38d1e 100644 --- a/app/views/SearchMessagesView/styles.js +++ b/app/views/SearchMessagesView/styles.js @@ -3,9 +3,6 @@ import { StyleSheet } from 'react-native'; import sharedStyles from '../Styles'; export default StyleSheet.create({ - container: { - flex: 1 - }, searchContainer: { padding: 20, paddingBottom: 0 diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index 201642905..19131a3e8 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -4,25 +4,20 @@ import { } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; -import Navigation from '../lib/ShareNavigation'; import ServerItem, { ROW_HEIGHT } from '../presentation/ServerItem'; import sharedStyles from './Styles'; import RocketChat from '../lib/rocketchat'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; +import SafeAreaView from '../containers/SafeAreaView'; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.id; const styles = StyleSheet.create({ - container: { - flex: 1 - }, list: { marginVertical: 32, ...sharedStyles.separatorVertical @@ -34,21 +29,21 @@ const styles = StyleSheet.create({ }); class SelectServerView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - ...themedHeader(screenProps.theme), + static navigationOptions = { title: I18n.t('Select_Server') - }) + } static propTypes = { server: PropTypes.string, + route: PropTypes.object, navigation: PropTypes.object, theme: PropTypes.string } constructor(props) { super(props); - const { navigation } = this.props; - const servers = navigation.getParam('servers', []); + const { route } = this.props; + const servers = route.params?.servers ?? []; const filteredServers = servers.filter(server => server.roomsUpdatedAt); this.state = { servers: filteredServers @@ -57,10 +52,10 @@ class SelectServerView extends React.Component { select = async(server) => { const { - server: currentServer + server: currentServer, navigation } = this.props; - Navigation.navigate('ShareListView'); + navigation.navigate('ShareListView'); if (currentServer !== server) { await RocketChat.shareExtensionInit(server); } @@ -88,10 +83,7 @@ class SelectServerView extends React.Component { const { servers } = this.state; const { theme } = this.props; return ( - <SafeAreaView - style={[styles.container, { backgroundColor: themes[theme].auxiliaryBackground }]} - forceInset={{ vertical: 'never' }} - > + <SafeAreaView theme={theme}> <StatusBar theme={theme} /> <View style={[styles.list, { borderColor: themes[theme].separatorColor }]}> <FlatList diff --git a/app/views/SelectedUsersView.js b/app/views/SelectedUsersView.js index 1a1ac044d..eb8c7bc8e 100644 --- a/app/views/SelectedUsersView.js +++ b/app/views/SelectedUsersView.js @@ -2,7 +2,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View, StyleSheet, FlatList } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import { orderBy } from 'lodash'; import { Q } from '@nozbe/watermelondb'; @@ -20,7 +19,6 @@ import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; import { animateNextTransition } from '../utils/layoutAnimation'; import { withTheme } from '../theme'; -import { themedHeader } from '../utils/navigation'; import { getUserSelector } from '../selectors/login'; import { reset as resetAction, @@ -28,36 +26,15 @@ import { removeUser as removeUserAction } from '../actions/selectedUsers'; import { showErrorAlert } from '../utils/info'; +import SafeAreaView from '../containers/SafeAreaView'; const styles = StyleSheet.create({ - safeAreaView: { - flex: 1 - }, separator: { marginLeft: 60 } }); class SelectedUsersView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const title = navigation.getParam('title', I18n.t('Select_Users')); - const buttonText = navigation.getParam('buttonText', I18n.t('Next')); - const showButton = navigation.getParam('showButton', false); - const maxUsers = navigation.getParam('maxUsers'); - const nextAction = navigation.getParam('nextAction', () => {}); - return { - ...themedHeader(screenProps.theme), - title, - headerRight: ( - (!maxUsers || showButton) && ( - <CustomHeaderButtons> - <Item title={buttonText} onPress={nextAction} testID='selected-users-view-submit' /> - </CustomHeaderButtons> - ) - ) - }; - } - static propTypes = { baseUrl: PropTypes.string, addUser: PropTypes.func.isRequired, @@ -72,6 +49,7 @@ class SelectedUsersView extends React.Component { name: PropTypes.string }), navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string }; @@ -79,7 +57,7 @@ class SelectedUsersView extends React.Component { super(props); this.init(); - const maxUsers = props.navigation.getParam('maxUsers'); + const maxUsers = props.route.params?.maxUsers; this.state = { maxUsers, search: [], @@ -89,6 +67,7 @@ class SelectedUsersView extends React.Component { if (this.isGroupChat()) { props.addUser({ _id: user.id, name: user.username, fname: user.name }); } + this.setHeader(props.route.params?.showButton); } shouldComponentUpdate(nextProps, nextState) { @@ -114,13 +93,9 @@ class SelectedUsersView extends React.Component { componentDidUpdate(prevProps) { if (this.isGroupChat()) { - const { users, navigation } = this.props; + const { users } = this.props; if (prevProps.users.length !== users.length) { - if (users.length) { - navigation.setParams({ showButton: true }); - } else { - navigation.setParams({ showButton: false }); - } + this.setHeader(users.length > 0); } } } @@ -133,6 +108,26 @@ class SelectedUsersView extends React.Component { } } + // showButton can be sent as route params or updated by the component + setHeader = (showButton) => { + const { navigation, route } = this.props; + const title = route.params?.title ?? I18n.t('Select_Users'); + const buttonText = route.params?.buttonText ?? I18n.t('Next'); + const maxUsers = route.params?.maxUsers; + const nextAction = route.params?.nextAction ?? (() => {}); + const options = { + title, + headerRight: () => ( + (!maxUsers || showButton) && ( + <CustomHeaderButtons> + <Item title={buttonText} onPress={nextAction} testID='selected-users-view-submit' /> + </CustomHeaderButtons> + ) + ) + }; + navigation.setOptions(options); + } + // eslint-disable-next-line react/sort-comp init = async() => { try { @@ -313,11 +308,7 @@ class SelectedUsersView extends React.Component { render = () => { const { loading, theme } = this.props; return ( - <SafeAreaView - style={[styles.safeAreaView, { backgroundColor: themes[theme].auxiliaryBackground }]} - forceInset={{ vertical: 'never' }} - testID='select-users-view' - > + <SafeAreaView testID='select-users-view' theme={theme}> <StatusBar theme={theme} /> {this.renderList()} <Loading visible={loading} /> diff --git a/app/views/SetUsernameView.js b/app/views/SetUsernameView.js index d6fbb5e3d..a6b7bc4cf 100644 --- a/app/views/SetUsernameView.js +++ b/app/views/SetUsernameView.js @@ -4,7 +4,6 @@ import { Text, ScrollView, StyleSheet } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import Orientation from 'react-native-orientation-locker'; import { loginRequest as loginRequestAction } from '../actions/login'; @@ -16,12 +15,12 @@ import scrollPersistTaps from '../utils/scrollPersistTaps'; import I18n from '../i18n'; import RocketChat from '../lib/rocketchat'; import StatusBar from '../containers/StatusBar'; -import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import { isTablet } from '../utils/deviceInfo'; import { getUserSelector } from '../selectors/login'; import { showErrorAlert } from '../utils/info'; +import SafeAreaView from '../containers/SafeAreaView'; const styles = StyleSheet.create({ loginTitle: { @@ -31,13 +30,9 @@ const styles = StyleSheet.create({ }); class SetUsernameView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const title = navigation.getParam('title'); - return { - ...themedHeader(screenProps.theme), - title - }; - } + static navigationOptions = ({ route }) => ({ + title: route.params?.title + }) static propTypes = { navigation: PropTypes.object, @@ -55,7 +50,7 @@ class SetUsernameView extends React.Component { saving: false }; const { server } = this.props; - props.navigation.setParams({ title: server }); + props.navigation.setOptions({ title: server }); if (!isTablet) { Orientation.lockToPortrait(); } @@ -111,7 +106,7 @@ class SetUsernameView extends React.Component { > <StatusBar theme={theme} /> <ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}> - <SafeAreaView style={sharedStyles.container} testID='set-username-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView testID='set-username-view' theme={theme}> <Text style={[ sharedStyles.loginTitle, diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index 2fda8de9b..b5ba2afbe 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -4,7 +4,6 @@ import { } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import AsyncStorage from '@react-native-community/async-storage'; import { logout as logoutAction } from '../../actions/login'; @@ -26,19 +25,16 @@ import openLink from '../../utils/openLink'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import { showErrorAlert, showConfirmationAlert } from '../../utils/info'; import styles from './styles'; -import sharedStyles from '../Styles'; import { loggerConfig, analytics } from '../../utils/log'; import { PLAY_MARKET_LINK, APP_STORE_LINK, LICENSE_LINK } from '../../constants/links'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; import SidebarView from '../SidebarView'; -import { withSplit } from '../../split'; -import Navigation from '../../lib/Navigation'; import { LISTENER } from '../../containers/Toast'; import EventEmitter from '../../utils/events'; -import { appStart as appStartAction } from '../../actions'; +import { appStart as appStartAction, ROOT_LOADING } from '../../actions/app'; import { onReviewPress } from '../../utils/review'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; const SectionSeparator = React.memo(({ theme }) => ( <View @@ -56,13 +52,12 @@ SectionSeparator.propTypes = { }; class SettingsView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => ({ - ...themedHeader(screenProps.theme), - headerLeft: screenProps.split ? ( + static navigationOptions = ({ navigation, isMasterDetail }) => ({ + headerLeft: () => (isMasterDetail ? ( <CloseModalButton navigation={navigation} testID='settings-view-close' /> ) : ( <DrawerButton navigation={navigation} /> - ), + )), title: I18n.t('Settings') }); @@ -72,7 +67,7 @@ class SettingsView extends React.Component { allowCrashReport: PropTypes.bool, toggleCrashReport: PropTypes.func, theme: PropTypes.string, - split: PropTypes.bool, + isMasterDetail: PropTypes.bool, logout: PropTypes.func.isRequired, selectServerRequest: PropTypes.func, token: PropTypes.string, @@ -84,10 +79,7 @@ class SettingsView extends React.Component { message: I18n.t('You_will_be_logged_out_of_this_application'), callToAction: I18n.t('Logout'), onPress: () => { - const { logout, split } = this.props; - if (split) { - Navigation.navigate('RoomView'); - } + const { logout } = this.props; logout(); } }); @@ -101,7 +93,7 @@ class SettingsView extends React.Component { const { server: { server }, appStart, selectServerRequest } = this.props; - await appStart('loading', I18n.t('Clear_cache_loading')); + await appStart({ root: ROOT_LOADING, text: I18n.t('Clear_cache_loading') }); await RocketChat.clearCache({ server }); await selectServerRequest(server, null, true); } @@ -181,13 +173,9 @@ class SettingsView extends React.Component { } render() { - const { server, split, theme } = this.props; + const { server, isMasterDetail, theme } = this.props; return ( - <SafeAreaView - style={[sharedStyles.container, { backgroundColor: themes[theme].auxiliaryBackground }]} - testID='settings-view' - forceInset={{ vertical: 'never' }} - > + <SafeAreaView testID='settings-view' theme={theme}> <StatusBar theme={theme} /> <ScrollView {...scrollPersistTaps} @@ -195,7 +183,7 @@ class SettingsView extends React.Component { showsVerticalScrollIndicator={false} testID='settings-view-list' > - {split ? ( + {isMasterDetail ? ( <> <Separator theme={theme} /> <SidebarView theme={theme} /> @@ -344,14 +332,15 @@ class SettingsView extends React.Component { const mapStateToProps = state => ({ server: state.server, token: getUserSelector(state).token, - allowCrashReport: state.crashReport.allowCrashReport + allowCrashReport: state.crashReport.allowCrashReport, + isMasterDetail: state.app.isMasterDetail }); const mapDispatchToProps = dispatch => ({ logout: () => dispatch(logoutAction()), selectServerRequest: params => dispatch(selectServerRequestAction(params)), toggleCrashReport: params => dispatch(toggleCrashReportAction(params)), - appStart: (...params) => dispatch(appStartAction(...params)) + appStart: params => dispatch(appStartAction(params)) }); -export default connect(mapStateToProps, mapDispatchToProps)(withTheme(withSplit(SettingsView))); +export default connect(mapStateToProps, mapDispatchToProps)(withTheme(SettingsView)); diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 9a64432ed..40e921ca0 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import { View, Text, FlatList, Keyboard, BackHandler } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import ShareExtension from 'rn-extensions-share'; import { connect } from 'react-redux'; import RNFetchBlob from 'rn-fetch-blob'; @@ -11,9 +10,8 @@ import * as mime from 'react-native-mime-types'; import { isEqual, orderBy } from 'lodash'; import { Q } from '@nozbe/watermelondb'; -import Navigation from '../../lib/ShareNavigation'; import database from '../../lib/database'; -import { isIOS, isAndroid } from '../../utils/deviceInfo'; +import { isIOS } from '../../utils/deviceInfo'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import log from '../../utils/log'; @@ -29,61 +27,13 @@ import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { animateNextTransition } from '../../utils/layoutAnimation'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; +import SafeAreaView from '../../containers/SafeAreaView'; const LIMIT = 50; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.rid; class ShareListView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const searching = navigation.getParam('searching'); - const initSearch = navigation.getParam('initSearch', () => {}); - const cancelSearch = navigation.getParam('cancelSearch', () => {}); - const search = navigation.getParam('search', () => {}); - - if (isIOS) { - return { - headerStyle: { backgroundColor: themes[screenProps.theme].headerBackground }, - headerTitle: ( - <ShareListHeader - searching={searching} - initSearch={initSearch} - cancelSearch={cancelSearch} - search={search} - theme={screenProps.theme} - /> - ) - }; - } - - return { - ...themedHeader(screenProps.theme), - headerLeft: searching - ? ( - <CustomHeaderButtons left> - <Item title='cancel' iconName='Cross' onPress={cancelSearch} /> - </CustomHeaderButtons> - ) - : ( - <CancelModalButton - onPress={ShareExtension.close} - testID='share-extension-close' - /> - ), - headerTitle: <ShareListHeader searching={searching} search={search} theme={screenProps.theme} />, - headerRight: ( - searching - ? null - : ( - <CustomHeaderButtons> - {isAndroid ? <Item title='search' iconName='magnifier' onPress={initSearch} /> : null} - </CustomHeaderButtons> - ) - ) - }; - } - static propTypes = { navigation: PropTypes.object, server: PropTypes.string, @@ -109,18 +59,13 @@ class ShareListView extends React.Component { loading: true, serverInfo: null }; - this.didFocusListener = props.navigation.addListener('didFocus', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); - this.willBlurListener = props.navigation.addListener('willBlur', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); + this.setHeader(); + this.unsubscribeFocus = props.navigation.addListener('focus', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); + this.unsubscribeBlur = props.navigation.addListener('blur', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); } componentDidMount() { - const { navigation, server } = this.props; - navigation.setParams({ - initSearch: this.initSearch, - cancelSearch: this.cancelSearch, - search: this.search - }); - + const { server } = this.props; setTimeout(async() => { try { const { value, type } = await ShareExtension.data(); @@ -183,6 +128,60 @@ class ShareListView extends React.Component { return false; } + componentWillUnmount() { + if (this.unsubscribeFocus) { + this.unsubscribeFocus(); + } + if (this.unsubscribeBlur) { + this.unsubscribeBlur(); + } + } + + setHeader = () => { + const { searching } = this.state; + const { navigation, theme } = this.props; + + if (isIOS) { + navigation.setOptions({ + header: () => ( + <ShareListHeader + searching={searching} + initSearch={this.initSearch} + cancelSearch={this.cancelSearch} + search={this.search} + theme={theme} + /> + ) + }); + return; + } + + navigation.setOptions({ + headerLeft: () => (searching + ? ( + <CustomHeaderButtons left> + <Item title='cancel' iconName='Cross' onPress={this.cancelSearch} /> + </CustomHeaderButtons> + ) + : ( + <CancelModalButton + onPress={ShareExtension.close} + testID='share-extension-close' + /> + )), + headerTitle: () => <ShareListHeader searching={searching} search={this.search} theme={theme} />, + headerRight: () => ( + searching + ? null + : ( + <CustomHeaderButtons> + <Item title='search' iconName='magnifier' onPress={this.initSearch} /> + </CustomHeaderButtons> + ) + ) + }); + } + // eslint-disable-next-line react/sort-comp internalSetState = (...args) => { const { navigation } = this.props; @@ -261,15 +260,11 @@ class ShareListView extends React.Component { initSearch = () => { const { chats } = this.state; - const { navigation } = this.props; - this.setState({ searching: true, searchResults: chats }); - navigation.setParams({ searching: true }); + this.setState({ searching: true, searchResults: chats }, () => this.setHeader()); } cancelSearch = () => { - const { navigation } = this.props; - this.internalSetState({ searching: false, searchResults: [], searchText: '' }); - navigation.setParams({ searching: false }); + this.internalSetState({ searching: false, searchResults: [], searchText: '' }, () => this.setHeader()); Keyboard.dismiss(); } @@ -336,7 +331,7 @@ class ShareListView extends React.Component { renderSelectServer = () => { const { servers } = this.state; - const { server, theme } = this.props; + const { server, theme, navigation } = this.props; const currentServer = servers.find(serverFiltered => serverFiltered.id === server); return currentServer ? ( <> @@ -352,7 +347,7 @@ class ShareListView extends React.Component { > <ServerItem server={server} - onPress={() => Navigation.navigate('SelectServerView', { servers: this.servers })} + onPress={() => navigation.navigate('SelectServerView', { servers: this.servers })} item={currentServer} theme={theme} /> @@ -452,7 +447,7 @@ class ShareListView extends React.Component { const { showError } = this.state; const { theme } = this.props; return ( - <SafeAreaView style={[styles.container, { backgroundColor: themes[theme].auxiliaryBackground }]} forceInset={{ vertical: 'never' }}> + <SafeAreaView theme={theme}> <StatusBar theme={theme} /> { showError ? this.renderError() : this.renderContent() } </SafeAreaView> diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 34c7b18a5..1963e8b47 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -16,33 +16,11 @@ import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isBlocked } from '../../utils/room'; import { isReadOnly } from '../../utils/isReadOnly'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; class ShareView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => { - const canSend = navigation.getParam('canSend', true); - - return ({ - title: I18n.t('Share'), - ...themedHeader(screenProps.theme), - headerRight: - canSend - ? ( - <CustomHeaderButtons> - <Item - title={I18n.t('Send')} - onPress={navigation.getParam('sendMessage')} - testID='send-message-share-view' - buttonStyle={styles.send} - /> - </CustomHeaderButtons> - ) - : null - }); - } - static propTypes = { navigation: PropTypes.object, + route: PropTypes.object, theme: PropTypes.string, user: PropTypes.shape({ id: PropTypes.string.isRequired, @@ -54,13 +32,13 @@ class ShareView extends React.Component { constructor(props) { super(props); - const { navigation } = this.props; - const rid = navigation.getParam('rid', ''); - const name = navigation.getParam('name', ''); - const value = navigation.getParam('value', ''); - const isMedia = navigation.getParam('isMedia', false); - const fileInfo = navigation.getParam('fileInfo', {}); - const room = navigation.getParam('room', { rid }); + const { route } = this.props; + const rid = route.params?.rid; + const name = route.params?.name; + const value = route.params?.value; + const isMedia = route.params?.isMedia ?? false; + const fileInfo = route.params?.fileInfo ?? {}; + const room = route.params?.room ?? { rid }; this.state = { rid, @@ -74,30 +52,48 @@ class ShareView extends React.Component { file: { name: fileInfo ? fileInfo.name : '', description: '' - } + }, + canSend: false }; this.setReadOnly(); + this.setHeader(); } - componentDidMount() { + setHeader = () => { + const { canSend } = this.state; const { navigation } = this.props; - navigation.setParams({ sendMessage: this._sendMessage }); + + navigation.setOptions({ + title: I18n.t('Share'), + headerRight: + () => (canSend + ? ( + <CustomHeaderButtons> + <Item + title={I18n.t('Send')} + onPress={this.sendMessage} + testID='send-message-share-view' + buttonStyle={styles.send} + /> + </CustomHeaderButtons> + ) + : null) + }); } setReadOnly = async() => { const { room } = this.state; - const { navigation, user } = this.props; + const { user } = this.props; const { username } = user; const readOnly = await isReadOnly(room, { username }); - this.setState({ readOnly }); - navigation.setParams({ canSend: !(readOnly || isBlocked(room)) }); + this.setState({ readOnly, canSend: !(readOnly || isBlocked(room)) }, () => this.setHeader()); } bytesToSize = bytes => `${ (bytes / 1048576).toFixed(2) }MB`; - _sendMessage = async() => { + sendMessage = async() => { const { isMedia, loading } = this.state; if (loading) { return; diff --git a/app/views/SidebarView/index.js b/app/views/SidebarView/index.js index 919270c35..ab2448131 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { - ScrollView, Text, View, SafeAreaView + ScrollView, Text, View, TouchableWithoutFeedback } from 'react-native'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; @@ -17,9 +17,9 @@ import SidebarItem from './SidebarItem'; import { themes } from '../../constants/colors'; import database from '../../lib/database'; import { withTheme } from '../../theme'; -import { withSplit } from '../../split'; import { getUserSelector } from '../../selectors/login'; import Navigation from '../../lib/Navigation'; +import SafeAreaView from '../../containers/SafeAreaView'; const Separator = React.memo(({ theme }) => <View style={[styles.separator, { borderColor: themes[theme].separatorColor }]} />); Separator.propTypes = { @@ -39,12 +39,12 @@ class Sidebar extends Component { navigation: PropTypes.object, Site_Name: PropTypes.string.isRequired, user: PropTypes.object, - activeItemKey: PropTypes.string, + state: PropTypes.string, theme: PropTypes.string, loadingServer: PropTypes.bool, useRealName: PropTypes.bool, allowStatusMessage: PropTypes.bool, - split: PropTypes.bool + isMasterDetail: PropTypes.bool } constructor(props) { @@ -69,8 +69,12 @@ class Sidebar extends Component { shouldComponentUpdate(nextProps, nextState) { const { showStatus, isAdmin } = this.state; const { - Site_Name, user, baseUrl, activeItemKey, split, useRealName, theme + Site_Name, user, baseUrl, state, isMasterDetail, useRealName, theme } = this.props; + // Drawer navigation state + if (state?.index !== nextProps.state?.index) { + return true; + } if (nextState.showStatus !== showStatus) { return true; } @@ -83,9 +87,6 @@ class Sidebar extends Component { if (nextProps.baseUrl !== baseUrl) { return true; } - if (nextProps.activeItemKey !== activeItemKey) { - return true; - } if (nextProps.theme !== theme) { return true; } @@ -103,7 +104,7 @@ class Sidebar extends Component { return true; } } - if (nextProps.split !== split) { + if (nextProps.isMasterDetail !== isMasterDetail) { return true; } if (nextProps.useRealName !== useRealName) { @@ -138,41 +139,58 @@ class Sidebar extends Component { navigation.navigate(route); } - renderNavigation = () => { + get currentItemKey() { + const { state } = this.props; + return state.routeNames[state.index]; + } + + renderAdmin = () => { const { isAdmin } = this.state; - const { activeItemKey, theme } = this.props; + const { theme, isMasterDetail } = this.props; + if (!isAdmin) { + return null; + } + const routeName = isMasterDetail ? 'AdminPanelView' : 'AdminPanelStackNavigator'; + return ( + <> + <Separator theme={theme} /> + <SidebarItem + text={I18n.t('Admin_Panel')} + left={<CustomIcon name='shield' size={20} color={themes[theme].titleText} />} + onPress={() => Navigation.navigate(routeName)} + testID='sidebar-settings' + current={this.currentItemKey === routeName} + /> + </> + ); + } + + renderNavigation = () => { + const { theme } = this.props; return ( <> <SidebarItem text={I18n.t('Chats')} left={<CustomIcon name='message' size={20} color={themes[theme].titleText} />} - onPress={() => this.sidebarNavigate('RoomsListView')} + onPress={() => this.sidebarNavigate('ChatsStackNavigator')} testID='sidebar-chats' - current={activeItemKey === 'ChatsStack'} + current={this.currentItemKey === 'ChatsStackNavigator'} /> <SidebarItem text={I18n.t('Profile')} left={<CustomIcon name='user' size={20} color={themes[theme].titleText} />} - onPress={() => this.sidebarNavigate('ProfileView')} + onPress={() => this.sidebarNavigate('ProfileStackNavigator')} testID='sidebar-profile' - current={activeItemKey === 'ProfileStack'} + current={this.currentItemKey === 'ProfileStackNavigator'} /> <SidebarItem text={I18n.t('Settings')} left={<CustomIcon name='cog' size={20} color={themes[theme].titleText} />} - onPress={() => this.sidebarNavigate('SettingsView')} + onPress={() => this.sidebarNavigate('SettingsStackNavigator')} testID='sidebar-settings' - current={activeItemKey === 'SettingsStack'} + current={this.currentItemKey === 'SettingsStackNavigator'} /> - {isAdmin ? ( - <SidebarItem - text={I18n.t('Admin_Panel')} - left={<CustomIcon name='shield' size={20} color={themes[theme].titleText} />} - onPress={() => this.sidebarNavigate('AdminPanelView')} - testID='sidebar-settings' - current={activeItemKey === 'AdminPanelStack'} - /> - ) : null} + {this.renderAdmin()} </> ); } @@ -192,57 +210,63 @@ class Sidebar extends Component { render() { const { - user, Site_Name, baseUrl, useRealName, allowStatusMessage, split, theme + user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme, navigation } = this.props; if (!user) { return null; } return ( - <SafeAreaView testID='sidebar-view' style={[styles.container, { backgroundColor: themes[theme].focusedBackground }]}> + <SafeAreaView testID='sidebar-view' style={{ backgroundColor: themes[theme].focusedBackground }} vertical={isMasterDetail} theme={theme}> <ScrollView style={[ styles.container, { - backgroundColor: split + backgroundColor: isMasterDetail ? themes[theme].backgroundColor : themes[theme].focusedBackground } ]} {...scrollPersistTaps} > - <View style={styles.header} theme={theme}> - <Avatar - text={user.username} - size={30} - style={styles.avatar} - baseUrl={baseUrl} - userId={user.id} - token={user.token} - /> - <View style={styles.headerTextContainer}> - <View style={styles.headerUsername}> - <Text numberOfLines={1} style={[styles.username, { color: themes[theme].titleText }]}>{useRealName ? user.name : user.username}</Text> + <TouchableWithoutFeedback onPress={() => navigation.closeDrawer()} testID='sidebar-close-drawer'> + <View style={styles.header} theme={theme}> + <Avatar + text={user.username} + size={30} + style={styles.avatar} + baseUrl={baseUrl} + userId={user.id} + token={user.token} + /> + <View style={styles.headerTextContainer}> + <View style={styles.headerUsername}> + <Text numberOfLines={1} style={[styles.username, { color: themes[theme].titleText }]}>{useRealName ? user.name : user.username}</Text> + </View> + <Text + style={[styles.currentServerText, { color: themes[theme].titleText }]} + numberOfLines={1} + accessibilityLabel={`Connected to ${ baseUrl }`} + >{Site_Name} + </Text> </View> - <Text - style={[styles.currentServerText, { color: themes[theme].titleText }]} - numberOfLines={1} - accessibilityLabel={`Connected to ${ baseUrl }`} - >{Site_Name} - </Text> </View> - </View> + </TouchableWithoutFeedback> <Separator theme={theme} /> {allowStatusMessage ? this.renderCustomStatus() : null} - {!split ? ( + {!isMasterDetail ? ( <> <Separator theme={theme} /> {this.renderNavigation()} <Separator theme={theme} /> </> - ) : null} + ) : ( + <> + {this.renderAdmin()} + </> + )} </ScrollView> </SafeAreaView> ); @@ -255,7 +279,8 @@ const mapStateToProps = state => ({ baseUrl: state.server.server, loadingServer: state.server.loading, useRealName: state.settings.UI_Use_Real_Name, - allowStatusMessage: state.settings.Accounts_AllowUserStatusMessageChange + allowStatusMessage: state.settings.Accounts_AllowUserStatusMessageChange, + isMasterDetail: state.app.isMasterDetail }); -export default connect(mapStateToProps)(withTheme(withSplit(Sidebar))); +export default connect(mapStateToProps)(withTheme(Sidebar)); diff --git a/app/views/StatusView.js b/app/views/StatusView.js index 335529907..2c91fa294 100644 --- a/app/views/StatusView.js +++ b/app/views/StatusView.js @@ -1,7 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, StyleSheet } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import I18n from '../i18n'; @@ -17,12 +16,11 @@ import log from '../utils/log'; import { LISTENER } from '../containers/Toast'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; -import { withSplit } from '../split'; -import { themedHeader } from '../utils/navigation'; import { getUserSelector } from '../selectors/login'; import { CustomHeaderButtons, Item, CancelModalButton } from '../containers/HeaderButton'; import store from '../lib/createStore'; import { setUser } from '../actions/login'; +import SafeAreaView from '../containers/SafeAreaView'; const STATUS = [{ id: 'online', @@ -39,9 +37,6 @@ const STATUS = [{ }]; const styles = StyleSheet.create({ - container: { - flex: 1 - }, status: { marginRight: 16 }, @@ -60,21 +55,6 @@ const styles = StyleSheet.create({ }); class StatusView extends React.Component { - static navigationOptions = ({ navigation, screenProps }) => ({ - title: I18n.t('Edit_Status'), - headerLeft: <CancelModalButton onPress={navigation.getParam('close', () => {})} />, - headerRight: ( - <CustomHeaderButtons> - <Item - title={I18n.t('Done')} - onPress={navigation.getParam('submit', () => {})} - testID='status-view-submit' - /> - </CustomHeaderButtons> - ), - ...themedHeader(screenProps.theme) - }) - static propTypes = { user: PropTypes.shape({ id: PropTypes.string, @@ -82,8 +62,8 @@ class StatusView extends React.Component { statusText: PropTypes.string }), theme: PropTypes.string, - split: PropTypes.bool, - navigation: PropTypes.object + navigation: PropTypes.object, + isMasterDetail: PropTypes.bool } constructor(props) { @@ -91,8 +71,24 @@ class StatusView extends React.Component { const { statusText } = props.user; this.state = { statusText, loading: false }; + this.setHeader(); + } - props.navigation.setParams({ submit: this.submit, close: this.close }); + setHeader = () => { + const { navigation, isMasterDetail } = this.props; + navigation.setOptions({ + title: I18n.t('Edit_Status'), + headerLeft: isMasterDetail ? undefined : () => <CancelModalButton onPress={this.close} />, + headerRight: () => ( + <CustomHeaderButtons> + <Item + title={I18n.t('Done')} + onPress={this.submit} + testID='status-view-submit' + /> + </CustomHeaderButtons> + ) + }); } submit = async() => { @@ -105,12 +101,8 @@ class StatusView extends React.Component { } close = () => { - const { navigation, split } = this.props; - if (split) { - navigation.goBack(); - } else { - navigation.pop(); - } + const { navigation } = this.props; + navigation.goBack(); } setCustomStatus = async() => { @@ -196,14 +188,7 @@ class StatusView extends React.Component { const { loading } = this.state; const { theme } = this.props; return ( - <SafeAreaView - style={[ - styles.container, - { backgroundColor: themes[theme].auxiliaryBackground } - ]} - forceInset={{ vertical: 'never' }} - testID='status-view' - > + <SafeAreaView testID='status-view' theme={theme}> <FlatList data={STATUS} keyExtractor={item => item.id} @@ -220,7 +205,8 @@ class StatusView extends React.Component { } const mapStateToProps = state => ({ - user: getUserSelector(state) + user: getUserSelector(state), + isMasterDetail: state.app.isMasterDetail }); -export default connect(mapStateToProps)(withSplit(withTheme(StatusView))); +export default connect(mapStateToProps)(withTheme(StatusView)); diff --git a/app/views/Styles.js b/app/views/Styles.js index f17930135..d04cde69a 100644 --- a/app/views/Styles.js +++ b/app/views/Styles.js @@ -1,6 +1,6 @@ import { StyleSheet, Platform } from 'react-native'; -import { MAX_SCREEN_CONTENT_WIDTH, MAX_CONTENT_WIDTH } from '../constants/tablet'; +import { MAX_SCREEN_CONTENT_WIDTH } from '../constants/tablet'; export default StyleSheet.create({ container: { @@ -11,32 +11,18 @@ export default StyleSheet.create({ padding: 15, paddingBottom: 30 }, - containerSplitView: { - flex: 1, - flexDirection: 'row' - }, - tabletContent: { - maxWidth: MAX_CONTENT_WIDTH - }, tabletScreenContent: { justifyContent: 'center', alignSelf: 'center', width: MAX_SCREEN_CONTENT_WIDTH }, - modal: { - alignSelf: 'center', - borderRadius: 10, - overflow: 'hidden' - }, modalFormSheet: { // Following UIModalPresentationFormSheet size // this not change on different iPad sizes width: 540, - height: 620 - }, - modalPageSheet: { - width: '100%', - height: '100%' + height: 620, + overflow: 'hidden', + borderRadius: 10 }, status: { position: 'absolute', diff --git a/app/views/ThemeView.js b/app/views/ThemeView.js index 1db0fb71c..d8cd96902 100644 --- a/app/views/ThemeView.js +++ b/app/views/ThemeView.js @@ -3,11 +3,9 @@ import PropTypes from 'prop-types'; import { FlatList, Text, View, StyleSheet } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import RNUserDefaults from 'rn-user-defaults'; import I18n from '../i18n'; -import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import sharedStyles from './Styles'; @@ -17,6 +15,7 @@ import ListItem from '../containers/ListItem'; import { CustomIcon } from '../lib/Icons'; import { THEME_PREFERENCES_KEY } from '../lib/rocketchat'; import { supportSystemTheme } from '../utils/deviceInfo'; +import SafeAreaView from '../containers/SafeAreaView'; const THEME_GROUP = 'THEME_GROUP'; const DARK_GROUP = 'DARK_GROUP'; @@ -69,10 +68,9 @@ const styles = StyleSheet.create({ }); class ThemeView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Theme'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Theme') + } static propTypes = { theme: PropTypes.string, @@ -167,11 +165,7 @@ class ThemeView extends React.Component { render() { const { theme } = this.props; return ( - <SafeAreaView - style={[sharedStyles.container, { backgroundColor: themes[theme].auxiliaryBackground }]} - forceInset={{ vertical: 'never' }} - testID='theme-view' - > + <SafeAreaView testID='theme-view' theme={theme}> <StatusBar theme={theme} /> <FlatList data={THEMES} diff --git a/app/views/ThreadMessagesView/index.js b/app/views/ThreadMessagesView/index.js index eb664d672..671dd995e 100644 --- a/app/views/ThreadMessagesView/index.js +++ b/app/views/ThreadMessagesView/index.js @@ -4,7 +4,6 @@ import { FlatList, View, Text, InteractionManager } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; import moment from 'moment'; import orderBy from 'lodash/orderBy'; import { Q } from '@nozbe/watermelondb'; @@ -23,9 +22,9 @@ import debounce from '../../utils/debounce'; import protectedFunction from '../../lib/methods/helpers/protectedFunction'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { themedHeader } from '../../utils/navigation'; -import ModalNavigation from '../../lib/ModalNavigation'; import { getUserSelector } from '../../selectors/login'; +import SafeAreaView from '../../containers/SafeAreaView'; +import { CloseModalButton } from '../../containers/HeaderButton'; const Separator = React.memo(({ theme }) => <View style={[styles.separator, { backgroundColor: themes[theme].separatorColor }]} />); Separator.propTypes = { @@ -35,26 +34,32 @@ Separator.propTypes = { const API_FETCH_COUNT = 50; class ThreadMessagesView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - ...themedHeader(screenProps.theme), - title: I18n.t('Threads') - }); + static navigationOptions = ({ navigation, isMasterDetail }) => { + const options = { + title: I18n.t('Threads') + }; + if (isMasterDetail) { + options.headerLeft = () => <CloseModalButton navigation={navigation} />; + } + return options; + } static propTypes = { user: PropTypes.object, navigation: PropTypes.object, + route: PropTypes.object, baseUrl: PropTypes.string, useRealName: PropTypes.bool, theme: PropTypes.string, customEmojis: PropTypes.object, - screenProps: PropTypes.object + isMasterDetail: PropTypes.bool } constructor(props) { super(props); this.mounted = false; - this.rid = props.navigation.getParam('rid'); - this.t = props.navigation.getParam('t'); + this.rid = props.route.params?.rid; + this.t = props.route.params?.t; this.state = { loading: false, end: false, @@ -263,7 +268,10 @@ class ThreadMessagesView extends React.Component { } onThreadPress = debounce((item) => { - const { navigation } = this.props; + const { navigation, isMasterDetail } = this.props; + if (isMasterDetail) { + navigation.pop(); + } navigation.push('RoomView', { rid: item.subscription.id, tmid: item.id, name: item.msg, t: 'thread' }); @@ -284,16 +292,11 @@ class ThreadMessagesView extends React.Component { } navToRoomInfo = (navParam) => { - const { navigation, user, screenProps } = this.props; + const { navigation, user } = this.props; if (navParam.rid === user.id) { return; } - if (screenProps && screenProps.split) { - navigation.navigate('RoomActionsView', { rid: this.rid, t: this.t }); - ModalNavigation.navigate('RoomInfoView', navParam); - } else { - navigation.navigate('RoomInfoView', navParam); - } + navigation.navigate('RoomInfoView', navParam); } renderItem = ({ item }) => { @@ -331,7 +334,7 @@ class ThreadMessagesView extends React.Component { } return ( - <SafeAreaView style={styles.list} testID='thread-messages-view' forceInset={{ vertical: 'never' }}> + <SafeAreaView testID='thread-messages-view' theme={theme}> <StatusBar theme={theme} /> <FlatList data={messages} @@ -356,7 +359,8 @@ const mapStateToProps = state => ({ baseUrl: state.server.server, user: getUserSelector(state), useRealName: state.settings.UI_Use_Real_Name, - customEmojis: state.customEmojis + customEmojis: state.customEmojis, + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(withTheme(ThreadMessagesView)); diff --git a/app/views/VisitorNavigationView.js b/app/views/VisitorNavigationView.js index 4cf4f66e2..3da667699 100644 --- a/app/views/VisitorNavigationView.js +++ b/app/views/VisitorNavigationView.js @@ -37,13 +37,13 @@ Item.propTypes = { theme: PropTypes.string }; -const VisitorNavigationView = ({ navigation, theme }) => { +const VisitorNavigationView = ({ route, theme }) => { let offset; let total = 0; const [pages, setPages] = useState([]); const getPages = async() => { - const rid = navigation.getParam('rid'); + const rid = route.params?.rid; if (rid) { try { const result = await RocketChat.getPagesLivechat(rid, offset); @@ -89,7 +89,7 @@ const VisitorNavigationView = ({ navigation, theme }) => { }; VisitorNavigationView.propTypes = { theme: PropTypes.string, - navigation: PropTypes.object + route: PropTypes.object }; VisitorNavigationView.navigationOptions = { title: I18n.t('Navigation_history') diff --git a/app/views/WithoutServersView.js b/app/views/WithoutServersView.js index 566f6e1bc..e5756ea79 100644 --- a/app/views/WithoutServersView.js +++ b/app/views/WithoutServersView.js @@ -9,7 +9,6 @@ import { CancelModalButton } from '../containers/HeaderButton'; import sharedStyles from './Styles'; import I18n from '../i18n'; import { themes } from '../constants/colors'; -import { themedHeader } from '../utils/navigation'; import { withTheme } from '../theme'; const styles = StyleSheet.create({ @@ -31,15 +30,15 @@ const styles = StyleSheet.create({ }); class WithoutServerView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - ...themedHeader(screenProps.theme), - headerLeft: ( + static navigationOptions = { + title: 'Rocket.Chat', + headerLeft: () => ( <CancelModalButton onPress={ShareExtension.close} testID='share-extension-close' /> ) - }) + } static propTypes = { theme: PropTypes.string diff --git a/app/views/WorkspaceView/index.js b/app/views/WorkspaceView/index.js index 727931e5a..723688ac3 100644 --- a/app/views/WorkspaceView/index.js +++ b/app/views/WorkspaceView/index.js @@ -9,15 +9,13 @@ import styles from './styles'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import FormContainer, { FormContainerInner } from '../../containers/FormContainer'; -import { themedHeader } from '../../utils/navigation'; import ServerAvatar from './ServerAvatar'; import { getShowLoginButton } from '../../selectors/login'; class WorkspaceView extends React.Component { - static navigationOptions = ({ screenProps }) => ({ - title: I18n.t('Your_workspace'), - ...themedHeader(screenProps.theme) - }) + static navigationOptions = { + title: I18n.t('Your_workspace') + } static propTypes = { navigation: PropTypes.object, diff --git a/e2e/helpers/app.js b/e2e/helpers/app.js index 5c5f646aa..5657d4b14 100644 --- a/e2e/helpers/app.js +++ b/e2e/helpers/app.js @@ -4,7 +4,7 @@ const { const data = require('../data'); async function navigateToWorkspace() { - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(10000); await element(by.id('join-workspace')).tap(); await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); await element(by.id('new-server-view-input')).replaceText(data.server); diff --git a/e2e/tests/assorted/01-changeserver.spec.js b/e2e/tests/assorted/01-changeserver.spec.js index e42d25e40..a9d5290bd 100644 --- a/e2e/tests/assorted/01-changeserver.spec.js +++ b/e2e/tests/assorted/01-changeserver.spec.js @@ -10,7 +10,7 @@ const checkServer = async(server) => { await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); await waitFor(element(by.label(label))).toBeVisible().withTimeout(60000); await expect(element(by.label(label))).toBeVisible(); - await element(by.type('UIScrollView')).atIndex(1).swipe('left'); // close sidebar + await element(by.id('sidebar-close-drawer')).tap(); } describe('Change server', () => { diff --git a/e2e/tests/assorted/02-broadcast.spec.js b/e2e/tests/assorted/02-broadcast.spec.js index cd3c95314..04e3964dd 100644 --- a/e2e/tests/assorted/02-broadcast.spec.js +++ b/e2e/tests/assorted/02-broadcast.spec.js @@ -28,7 +28,9 @@ describe('Broadcast room', () => { await sleep(1000); await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000); await element(by.id('create-channel-name')).replaceText(`broadcast${ data.random }`); + await sleep(1000); await element(by.id('create-channel-broadcast')).tap(); + await sleep(1000); await element(by.id('create-channel-submit')).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); await expect(element(by.id('room-view'))).toBeVisible(); diff --git a/e2e/tests/assorted/04-setting.spec.js b/e2e/tests/assorted/04-setting.spec.js index 65a80977a..31d8193bc 100644 --- a/e2e/tests/assorted/04-setting.spec.js +++ b/e2e/tests/assorted/04-setting.spec.js @@ -6,6 +6,7 @@ const { logout, navigateToLogin, login } = require('../../helpers/app'); describe('Settings screen', () => { before(async() => { await device.launchApp({ newInstance: true }); + await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); await expect(element(by.id('rooms-list-view'))).toBeVisible(); await element(by.id('rooms-list-view-sidebar')).tap(); await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); diff --git a/e2e/tests/room/01-createroom.spec.js b/e2e/tests/room/01-createroom.spec.js index f149a98dc..2557171c8 100644 --- a/e2e/tests/room/01-createroom.spec.js +++ b/e2e/tests/room/01-createroom.spec.js @@ -8,13 +8,13 @@ describe('Create room screen', () => { before(async() => { await createUser(); await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(2000); }); describe('New Message', async() => { describe('Render', async() => { it('should have new message screen', async() => { - await expect(element(by.id('new-message-view'))).toBeVisible(); + await expect(element(by.id('new-message-view'))).toExist(); }); it('should have search input', async() => { @@ -27,34 +27,34 @@ describe('Create room screen', () => { it('should back to rooms list', async() => { await sleep(1000); await element(by.id('new-message-view-close')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('rooms-list-view'))).toBeVisible(); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await expect(element(by.id('rooms-list-view'))).toExist(); await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('new-message-view'))).toBeVisible(); + await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(2000); + await expect(element(by.id('new-message-view'))).toExist(); }); it('should search user and navigate', async() => { await element(by.id('new-message-view-search')).replaceText('rocket.cat'); - await waitFor(element(by.id('new-message-view-item-rocket.cat'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('new-message-view-item-rocket.cat'))).toBeVisible(); + await waitFor(element(by.id('new-message-view-item-rocket.cat'))).toExist().withTimeout(60000); + await expect(element(by.id('new-message-view-item-rocket.cat'))).toExist(); await element(by.id('new-message-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(10000); - await expect(element(by.id('room-view'))).toBeVisible(); - await waitFor(element(by.id('room-view-title-rocket.cat'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view-title-rocket.cat'))).toBeVisible(); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(10000); + await expect(element(by.id('room-view'))).toExist(); + await waitFor(element(by.id('room-view-title-rocket.cat'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view-title-rocket.cat'))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); }); it('should navigate to select users', async() => { await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('new-message-view'))).toBeVisible(); + await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(2000); + await expect(element(by.id('new-message-view'))).toExist(); await sleep(1000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('select-users-view'))).toBeVisible(); + await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(2000); + await expect(element(by.id('select-users-view'))).toExist(); }); }) }); @@ -62,19 +62,19 @@ describe('Create room screen', () => { describe('Select Users', async() => { it('should search users', async() => { await element(by.id('select-users-view-search')).replaceText('rocket.cat'); - await waitFor(element(by.id(`select-users-view-item-rocket.cat`))).toBeVisible().withTimeout(10000); - await expect(element(by.id(`select-users-view-item-rocket.cat`))).toBeVisible(); + await waitFor(element(by.id(`select-users-view-item-rocket.cat`))).toExist().withTimeout(10000); + await expect(element(by.id(`select-users-view-item-rocket.cat`))).toExist(); }); it('should select/unselect user', async() => { await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(5000); - await expect(element(by.id('selected-user-rocket.cat'))).toBeVisible(); + await waitFor(element(by.id('selected-user-rocket.cat'))).toExist().withTimeout(5000); + await expect(element(by.id('selected-user-rocket.cat'))).toExist(); await element(by.id('selected-user-rocket.cat')).tap(); await waitFor(element(by.id('selected-user-rocket.cat'))).toBeNotVisible().withTimeout(5000); await expect(element(by.id('selected-user-rocket.cat'))).toBeNotVisible(); await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('selected-user-rocket.cat'))).toExist().withTimeout(5000); }); it('should navigate to create channel view', async() => { @@ -87,9 +87,9 @@ describe('Create room screen', () => { describe('Create Channel', async() => { describe('Render', async() => { it('should render all fields', async() => { - await expect(element(by.id('create-channel-name'))).toBeVisible(); - await expect(element(by.id('create-channel-type'))).toBeVisible(); - await expect(element(by.id('create-channel-readonly'))).toBeVisible(); + await expect(element(by.id('create-channel-name'))).toExist(); + await expect(element(by.id('create-channel-type'))).toExist(); + await expect(element(by.id('create-channel-readonly'))).toExist(); await expect(element(by.id('create-channel-broadcast'))).toExist(); }) }) @@ -98,8 +98,8 @@ describe('Create room screen', () => { it('should get invalid room', async() => { await element(by.id('create-channel-name')).replaceText('general'); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.text(`A channel with name 'general' exists`))).toBeVisible().withTimeout(60000); - await expect(element(by.text(`A channel with name 'general' exists`))).toBeVisible(); + await waitFor(element(by.text(`A channel with name 'general' exists`))).toExist().withTimeout(60000); + await expect(element(by.text(`A channel with name 'general' exists`))).toExist(); await element(by.text('OK')).tap(); }); @@ -109,68 +109,68 @@ describe('Create room screen', () => { await element(by.id('create-channel-type')).tap(); await sleep(1000); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view'))).toBeVisible(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ room }`))).toBeVisible(); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view'))).toExist(); + await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-view-title-${ room }`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible(); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); + await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); }); it('should create private room', async() => { const room = `private${ data.random }`; - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); // await device.launchApp({ newInstance: true }); await sleep(1000); await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(2000); await sleep(1000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(2000); await sleep(1000); await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('selected-user-rocket.cat'))).toExist().withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000); await element(by.id('create-channel-name')).replaceText(room); await sleep(1000); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view'))).toBeVisible(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ room }`))).toBeVisible(); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view'))).toExist(); + await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-view-title-${ room }`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible(); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); + await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); }); it('should create empty room', async() => { const room = `empty${ data.random }`; - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); // await device.launchApp({ newInstance: true }); await sleep(1000); await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(2000); await sleep(1000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(2000); await sleep(1000); await element(by.id('selected-users-view-submit')).tap(); await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000); await element(by.id('create-channel-name')).replaceText(room); await sleep(1000); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view'))).toBeVisible(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ room }`))).toBeVisible(); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view'))).toExist(); + await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-view-title-${ room }`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible(); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); + await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); }); }) }); diff --git a/e2e/tests/room/02-room.spec.js b/e2e/tests/room/02-room.spec.js index 8c279d44f..105a1122a 100644 --- a/e2e/tests/room/02-room.spec.js +++ b/e2e/tests/room/02-room.spec.js @@ -9,14 +9,14 @@ async function mockMessage(message) { await element(by.id('messagebox-input')).typeText(`${ data.random }${ message }`); await element(by.id('messagebox-send-message')).tap(); await waitFor(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toExist().withTimeout(60000); - await expect(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toBeVisible(); + await expect(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toExist(); }; async function navigateToRoom() { await element(by.type('UIScrollView')).atIndex(1).scrollTo('top'); await element(by.id('rooms-list-view-search')).typeText(`private${ data.random }`); await sleep(2000); - await waitFor(element(by.id(`rooms-list-view-item-private${ data.random }`))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id(`rooms-list-view-item-private${ data.random }`))).toExist().withTimeout(60000); await element(by.id(`rooms-list-view-item-private${ data.random }`)).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); } @@ -30,44 +30,44 @@ describe('Room screen', () => { describe('Render', async() => { it('should have room screen', async() => { - await expect(element(by.id('room-view'))).toBeVisible(); - await waitFor(element(by.id(`room-view-title-${ mainRoom }`))).toBeVisible().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ mainRoom }`))).toBeVisible(); + await expect(element(by.id('room-view'))).toExist(); + await waitFor(element(by.id(`room-view-title-${ mainRoom }`))).toExist().withTimeout(5000); + await expect(element(by.id(`room-view-title-${ mainRoom }`))).toExist(); }); // Render - Header describe('Header', async() => { it('should have actions button ', async() => { - await expect(element(by.id('room-view-header-actions'))).toBeVisible(); + await expect(element(by.id('room-view-header-actions'))).toExist(); }); it('should have threads button ', async() => { - await expect(element(by.id('room-view-header-threads'))).toBeVisible(); + await expect(element(by.id('room-view-header-threads'))).toExist(); }); }); // Render - Messagebox describe('Messagebox', async() => { it('should have messagebox', async() => { - await expect(element(by.id('messagebox'))).toBeVisible(); + await expect(element(by.id('messagebox'))).toExist(); }); it('should have open emoji button', async() => { if (device.getPlatform() === 'android') { - await expect(element(by.id('messagebox-open-emoji'))).toBeVisible(); + await expect(element(by.id('messagebox-open-emoji'))).toExist(); } }); it('should have message input', async() => { - await expect(element(by.id('messagebox-input'))).toBeVisible(); + await expect(element(by.id('messagebox-input'))).toExist(); }); it('should have audio button', async() => { - await expect(element(by.id('messagebox-send-audio'))).toBeVisible(); + await expect(element(by.id('messagebox-send-audio'))).toExist(); }); it('should have actions button', async() => { - await expect(element(by.id('messagebox-actions'))).toBeVisible(); + await expect(element(by.id('messagebox-actions'))).toExist(); }); }); }); @@ -80,7 +80,7 @@ describe('Room screen', () => { }); it('should ask for review', async() => { - await waitFor(element(by.text('Are you enjoying this app?'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.text('Are you enjoying this app?'))).toExist().withTimeout(60000); await expect(element(by.text('Are you enjoying this app?')).atIndex(0)).toExist(); await element(by.label('No').and(by.type('_UIAlertControllerActionView'))).tap(); // Tap `no` on ask for review alert }) @@ -88,23 +88,23 @@ describe('Room screen', () => { it('should show/hide emoji keyboard', async () => { if (device.getPlatform() === 'android') { await element(by.id('messagebox-open-emoji')).tap(); - await waitFor(element(by.id('messagebox-keyboard-emoji'))).toBeVisible().withTimeout(10000); - await expect(element(by.id('messagebox-keyboard-emoji'))).toBeVisible(); - await expect(element(by.id('messagebox-close-emoji'))).toBeVisible(); + await waitFor(element(by.id('messagebox-keyboard-emoji'))).toExist().withTimeout(10000); + await expect(element(by.id('messagebox-keyboard-emoji'))).toExist(); + await expect(element(by.id('messagebox-close-emoji'))).toExist(); await expect(element(by.id('messagebox-open-emoji'))).toBeNotVisible(); await element(by.id('messagebox-close-emoji')).tap(); await waitFor(element(by.id('messagebox-keyboard-emoji'))).toBeNotVisible().withTimeout(10000); await expect(element(by.id('messagebox-keyboard-emoji'))).toBeNotVisible(); await expect(element(by.id('messagebox-close-emoji'))).toBeNotVisible(); - await expect(element(by.id('messagebox-open-emoji'))).toBeVisible(); + await expect(element(by.id('messagebox-open-emoji'))).toExist(); } }); it('should show/hide emoji autocomplete', async() => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText(':joy'); - await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(10000); - await expect(element(by.id('messagebox-container'))).toBeVisible(); + await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(10000); + await expect(element(by.id('messagebox-container'))).toExist(); await element(by.id('messagebox-input')).clearText(); await waitFor(element(by.id('messagebox-container'))).toBeNotVisible().withTimeout(10000); await expect(element(by.id('messagebox-container'))).toBeNotVisible(); @@ -114,8 +114,9 @@ describe('Room screen', () => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).replaceText(':'); await element(by.id('messagebox-input')).typeText('joy'); // workaround for number keyboard - await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(10000); - await expect(element(by.id('messagebox-container'))).toBeVisible(); + await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(10000); + await expect(element(by.id('messagebox-container'))).toExist(); + await sleep(1000); await element(by.id('mention-item-joy')).tap(); await expect(element(by.id('messagebox-input'))).toHaveText(':joy: '); await element(by.id('messagebox-input')).clearText(); @@ -124,23 +125,25 @@ describe('Room screen', () => { it('should show and tap on user autocomplete and send mention', async() => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText(`@${ data.user }`); - await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('messagebox-container'))).toBeVisible(); + await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(60000); + await expect(element(by.id('messagebox-container'))).toExist(); + await sleep(1000); await element(by.id(`mention-item-${ data.user }`)).tap(); await expect(element(by.id('messagebox-input'))).toHaveText(`@${ data.user } `); await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText(`${ data.random }mention`); await element(by.id('messagebox-send-message')).tap(); - // await waitFor(element(by.label(`@${ data.user } ${ data.random }mention`)).atIndex(0)).toBeVisible().withTimeout(60000); + // await waitFor(element(by.label(`@${ data.user } ${ data.random }mention`)).atIndex(0)).toExist().withTimeout(60000); await sleep(2000); }); it('should show and tap on room autocomplete', async() => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText('#general'); - await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('messagebox-container'))).toBeVisible(); - await element(by.id('mention-item-general')).atIndex(0).tap(); + await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(60000); + await expect(element(by.id('messagebox-container'))).toExist(); + await sleep(1000); + await element(by.id('mention-item-general')).tap(); await expect(element(by.id('messagebox-input'))).toHaveText('#general '); await element(by.id('messagebox-input')).clearText(); }); @@ -151,8 +154,8 @@ describe('Room screen', () => { await sleep(1000); await element(by.label(`${ data.random }message`)).atIndex(0).tap(); await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Permalink')).tap(); await sleep(1000); @@ -161,8 +164,8 @@ describe('Room screen', () => { it('should copy message', async() => { await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Copy')).tap(); await sleep(1000); // TODO: test clipboard @@ -170,14 +173,14 @@ describe('Room screen', () => { it('should star message', async() => { await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Star')).tap(); await sleep(2000); await waitFor(element(by.text('Message actions'))).toBeNotVisible().withTimeout(5000); await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); - await waitFor(element(by.text('Unstar'))).toBeVisible().withTimeout(2000); - await expect(element(by.text('Unstar'))).toBeVisible(); + await waitFor(element(by.text('Unstar'))).toExist().withTimeout(2000); + await expect(element(by.text('Unstar'))).toExist(); await element(by.text('Cancel')).tap(); await waitFor(element(by.text('Cancel'))).toBeNotVisible().withTimeout(2000); await sleep(1000); @@ -185,30 +188,30 @@ describe('Room screen', () => { it('should react to message', async() => { await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Add Reaction')).tap(); - await waitFor(element(by.id('reaction-picker'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('reaction-picker'))).toBeVisible(); + await waitFor(element(by.id('reaction-picker'))).toExist().withTimeout(2000); + await expect(element(by.id('reaction-picker'))).toExist(); await element(by.id('reaction-picker-😃')).tap(); - await waitFor(element(by.id('reaction-picker-grinning'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('reaction-picker-grinning'))).toBeVisible(); + await waitFor(element(by.id('reaction-picker-grinning'))).toExist().withTimeout(2000); + await expect(element(by.id('reaction-picker-grinning'))).toExist(); await element(by.id('reaction-picker-grinning')).tap(); - await waitFor(element(by.id('message-reaction-:grinning:'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('message-reaction-:grinning:'))).toBeVisible(); + await waitFor(element(by.id('message-reaction-:grinning:'))).toExist().withTimeout(60000); + await expect(element(by.id('message-reaction-:grinning:'))).toExist(); await sleep(1000); }); it('should show reaction picker on add reaction button pressed and have frequently used emoji', async() => { await element(by.id('message-add-reaction')).tap(); - await waitFor(element(by.id('reaction-picker'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('reaction-picker'))).toBeVisible(); - await waitFor(element(by.id('reaction-picker-grinning'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('reaction-picker-grinning'))).toBeVisible(); + await waitFor(element(by.id('reaction-picker'))).toExist().withTimeout(2000); + await expect(element(by.id('reaction-picker'))).toExist(); + await waitFor(element(by.id('reaction-picker-grinning'))).toExist().withTimeout(2000); + await expect(element(by.id('reaction-picker-grinning'))).toExist(); await element(by.id('reaction-picker-😃')).tap(); - await waitFor(element(by.id('reaction-picker-grimacing'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('reaction-picker-grimacing'))).toExist().withTimeout(2000); await element(by.id('reaction-picker-grimacing')).tap(); - await waitFor(element(by.id('message-reaction-:grimacing:'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('message-reaction-:grimacing:'))).toExist().withTimeout(60000); await sleep(1000); }); @@ -221,20 +224,20 @@ describe('Room screen', () => { it('should edit message', async() => { await mockMessage('edit'); await element(by.label(`${ data.random }edit`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Edit')).tap(); await element(by.id('messagebox-input')).typeText('ed'); await element(by.id('messagebox-send-message')).tap(); - await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible().withTimeout(60000); - await expect(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible(); + await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toExist().withTimeout(60000); + await expect(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toExist(); }); it('should quote message', async() => { await mockMessage('quote'); await element(by.label(`${ data.random }quote`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Quote')).tap(); await element(by.id('messagebox-input')).typeText(`${ data.random }quoted`); await element(by.id('messagebox-send-message')).tap(); @@ -243,17 +246,17 @@ describe('Room screen', () => { }); it('should pin message', async() => { - await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible(); + await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toExist(); await element(by.label(`${ data.random }edited (edited)`)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Pin')).tap(); await waitFor(element(by.text('Message actions'))).toBeNotVisible().withTimeout(5000); - await waitFor(element(by.label('Message pinned')).atIndex(0)).toBeVisible().withTimeout(5000); - await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible().withTimeout(60000); + await waitFor(element(by.label('Message pinned')).atIndex(0)).toExist().withTimeout(5000); + await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toExist().withTimeout(60000); await element(by.label(`${ data.random }edited (edited)`)).atIndex(0).longPress(); - await waitFor(element(by.text('Unpin'))).toBeVisible().withTimeout(2000); - await expect(element(by.text('Unpin'))).toBeVisible(); + await waitFor(element(by.text('Unpin'))).toExist().withTimeout(2000); + await expect(element(by.text('Unpin'))).toExist(); await element(by.text('Cancel')).tap(); await waitFor(element(by.text('Cancel'))).toBeNotVisible().withTimeout(2000); }); @@ -266,8 +269,8 @@ describe('Room screen', () => { it('should create thread', async() => { await mockMessage('thread'); await element(by.label(thread)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Reply')).tap(); await element(by.id('messagebox-input')).typeText('replied'); await element(by.id('messagebox-send-message')).tap(); @@ -278,8 +281,8 @@ describe('Room screen', () => { it('should navigate to thread from button', async() => { await element(by.id(`message-thread-button-${ thread }`)).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible(); + await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); + await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); await tapBack(); await sleep(1000); }); @@ -287,14 +290,14 @@ describe('Room screen', () => { it('should toggle follow thread', async() => { await element(by.id(`message-thread-button-${ thread }`)).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible(); + await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); + await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); await element(by.id('room-view-header-unfollow')).tap(); - await waitFor(element(by.id('room-view-header-follow'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view-header-follow'))).toBeVisible(); + await waitFor(element(by.id('room-view-header-follow'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view-header-follow'))).toExist(); await element(by.id('room-view-header-follow')).tap(); - await waitFor(element(by.id('room-view-header-unfollow'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view-header-unfollow'))).toBeVisible(); + await waitFor(element(by.id('room-view-header-unfollow'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view-header-unfollow'))).toExist(); await tapBack(); await sleep(1000); }); @@ -302,8 +305,8 @@ describe('Room screen', () => { it('should navigate to thread from thread name', async() => { await mockMessage('dummymessagebetweenthethread'); await element(by.label(thread)).atIndex(0).longPress(); - await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Message actions'))).toBeVisible(); + await waitFor(element(by.text('Message actions'))).toExist().withTimeout(5000); + await expect(element(by.text('Message actions'))).toExist(); await element(by.text('Reply')).tap(); await element(by.id('messagebox-input')).typeText('repliedagain'); await element(by.id('messagebox-send-message')).tap(); @@ -312,32 +315,32 @@ describe('Room screen', () => { await element(by.id(`message-thread-replied-on-${ thread }`)).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible(); + await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); + await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); await tapBack(); await sleep(1000); }); it('should navigate to thread from threads view', async() => { await element(by.id('room-view-header-threads')).tap(); - await waitFor(element(by.id('thread-messages-view'))).toBeVisible().withTimeout(5000); - await expect(element(by.id('thread-messages-view'))).toBeVisible(); - await element(by.id(`message-thread-button-${ thread }`)).tap(); + await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000); + await expect(element(by.id('thread-messages-view'))).toExist(); + await element(by.id(`message-thread-button-${ thread }`)).atIndex(0).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible(); + await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); + await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); await tapBack(); - await waitFor(element(by.id('thread-messages-view'))).toBeVisible().withTimeout(5000); - await expect(element(by.id('thread-messages-view'))).toBeVisible(); + await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000); + await expect(element(by.id('thread-messages-view'))).toExist(); await tapBack(); }); }); - after(async() => { - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('rooms-list-view'))).toBeVisible(); - }); + // after(async() => { + // await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + // await tapBack(); + // await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + // await expect(element(by.id('rooms-list-view'))).toExist(); + // }); }); }); \ No newline at end of file diff --git a/e2e/tests/room/03-roomactions.spec.js b/e2e/tests/room/03-roomactions.spec.js index bef100fa3..6f970c2bc 100644 --- a/e2e/tests/room/03-roomactions.spec.js +++ b/e2e/tests/room/03-roomactions.spec.js @@ -13,88 +13,89 @@ async function navigateToRoomActions(type) { } else { room = `private${ data.random }`; } - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); await element(by.type('UIScrollView')).atIndex(1).scrollTo('top'); await element(by.id('rooms-list-view-search')).typeText(room); await sleep(2000); await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); await sleep(1000); await element(by.id('room-view-header-actions')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); } async function backToActions() { await tapBack(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('room-actions-view'))).toBeVisible(); + await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + await expect(element(by.id('room-actions-view'))).toExist(); } async function backToRoomsList() { await tapBack(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); } describe('Room actions screen', () => { describe('Render', async() => { describe('Direct', async() => { before(async() => { + await device.launchApp({ newInstance: true }); await navigateToRoomActions('d'); }); it('should have room actions screen', async() => { - await expect(element(by.id('room-actions-view'))).toBeVisible(); + await expect(element(by.id('room-actions-view'))).toExist(); }); it('should have info', async() => { - await expect(element(by.id('room-actions-info'))).toBeVisible(); + await expect(element(by.id('room-actions-info'))).toExist(); }); // it('should have voice', async() => { - // await expect(element(by.id('room-actions-voice'))).toBeVisible(); + // await expect(element(by.id('room-actions-voice'))).toExist(); // }); // it('should have video', async() => { - // await expect(element(by.id('room-actions-video'))).toBeVisible(); + // await expect(element(by.id('room-actions-video'))).toExist(); // }); it('should have files', async() => { - await expect(element(by.id('room-actions-files'))).toBeVisible(); + await expect(element(by.id('room-actions-files'))).toExist(); }); it('should have mentions', async() => { - await expect(element(by.id('room-actions-mentioned'))).toBeVisible(); + await expect(element(by.id('room-actions-mentioned'))).toExist(); }); it('should have starred', async() => { - await expect(element(by.id('room-actions-starred'))).toBeVisible(); + await expect(element(by.id('room-actions-starred'))).toExist(); }); it('should have search', async() => { - await expect(element(by.id('room-actions-search'))).toBeVisible(); + await expect(element(by.id('room-actions-search'))).toExist(); }); it('should have share', async() => { - await waitFor(element(by.id('room-actions-share'))).toBeVisible(); - await expect(element(by.id('room-actions-share'))).toBeVisible(); + await waitFor(element(by.id('room-actions-share'))).toExist(); + await expect(element(by.id('room-actions-share'))).toExist(); }); it('should have pinned', async() => { - await waitFor(element(by.id('room-actions-pinned'))).toBeVisible(); - await expect(element(by.id('room-actions-pinned'))).toBeVisible(); + await waitFor(element(by.id('room-actions-pinned'))).toExist(); + await expect(element(by.id('room-actions-pinned'))).toExist(); }); it('should have notifications', async() => { - await waitFor(element(by.id('room-actions-notifications'))).toBeVisible(); - await expect(element(by.id('room-actions-notifications'))).toBeVisible(); + await waitFor(element(by.id('room-actions-notifications'))).toExist(); + await expect(element(by.id('room-actions-notifications'))).toExist(); }); it('should have block user', async() => { - await waitFor(element(by.id('room-actions-block-user'))).toBeVisible(); - await expect(element(by.id('room-actions-block-user'))).toBeVisible(); + await waitFor(element(by.id('room-actions-block-user'))).toExist(); + await expect(element(by.id('room-actions-block-user'))).toExist(); }); after(async() => { @@ -108,63 +109,63 @@ describe('Room actions screen', () => { }); it('should have room actions screen', async() => { - await expect(element(by.id('room-actions-view'))).toBeVisible(); + await expect(element(by.id('room-actions-view'))).toExist(); }); it('should have info', async() => { - await expect(element(by.id('room-actions-info'))).toBeVisible(); + await expect(element(by.id('room-actions-info'))).toExist(); }); // it('should have voice', async() => { - // await expect(element(by.id('room-actions-voice'))).toBeVisible(); + // await expect(element(by.id('room-actions-voice'))).toExist(); // }); // it('should have video', async() => { - // await expect(element(by.id('room-actions-video'))).toBeVisible(); + // await expect(element(by.id('room-actions-video'))).toExist(); // }); it('should have members', async() => { - await expect(element(by.id('room-actions-members'))).toBeVisible(); + await expect(element(by.id('room-actions-members'))).toExist(); }); it('should have add user', async() => { - await expect(element(by.id('room-actions-add-user'))).toBeVisible(); + await expect(element(by.id('room-actions-add-user'))).toExist(); }); it('should have files', async() => { - await expect(element(by.id('room-actions-files'))).toBeVisible(); + await expect(element(by.id('room-actions-files'))).toExist(); }); it('should have mentions', async() => { - await expect(element(by.id('room-actions-mentioned'))).toBeVisible(); + await expect(element(by.id('room-actions-mentioned'))).toExist(); }); it('should have starred', async() => { - await expect(element(by.id('room-actions-starred'))).toBeVisible(); + await expect(element(by.id('room-actions-starred'))).toExist(); }); it('should have search', async() => { - await expect(element(by.id('room-actions-search'))).toBeVisible(); + await expect(element(by.id('room-actions-search'))).toExist(); }); it('should have share', async() => { - await waitFor(element(by.id('room-actions-share'))).toBeVisible(); - await expect(element(by.id('room-actions-share'))).toBeVisible(); + await waitFor(element(by.id('room-actions-share'))).toExist(); + await expect(element(by.id('room-actions-share'))).toExist(); }); it('should have pinned', async() => { - await waitFor(element(by.id('room-actions-pinned'))).toBeVisible(); - await expect(element(by.id('room-actions-pinned'))).toBeVisible(); + await waitFor(element(by.id('room-actions-pinned'))).toExist(); + await expect(element(by.id('room-actions-pinned'))).toExist(); }); it('should have notifications', async() => { - await waitFor(element(by.id('room-actions-notifications'))).toBeVisible(); - await expect(element(by.id('room-actions-notifications'))).toBeVisible(); + await waitFor(element(by.id('room-actions-notifications'))).toExist(); + await expect(element(by.id('room-actions-notifications'))).toExist(); }); it('should have leave channel', async() => { - await waitFor(element(by.id('room-actions-leave-channel'))).toBeVisible(); - await expect(element(by.id('room-actions-leave-channel'))).toBeVisible(); + await waitFor(element(by.id('room-actions-leave-channel'))).toExist(); + await expect(element(by.id('room-actions-leave-channel'))).toExist(); }); }); }); @@ -173,25 +174,25 @@ describe('Room actions screen', () => { describe('TDB', async() => { // TODO: test into a jitsi call // it('should NOT navigate to voice call', async() => { - // await waitFor(element(by.id('room-actions-voice'))).toBeVisible(); + // await waitFor(element(by.id('room-actions-voice'))).toExist(); // await element(by.id('room-actions-voice')).tap(); - // await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); - // await expect(element(by.id('room-actions-view'))).toBeVisible(); + // await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + // await expect(element(by.id('room-actions-view'))).toExist(); // }); // TODO: test into a jitsi call // it('should NOT navigate to video call', async() => { // await element(by.id('room-actions-video')).tap(); - // await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); - // await expect(element(by.id('room-actions-view'))).toBeVisible(); + // await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + // await expect(element(by.id('room-actions-view'))).toExist(); // }); // TODO: test share room link // it('should NOT navigate to share room', async() => { - // await waitFor(element(by.id('room-actions-share'))).toBeVisible(); + // await waitFor(element(by.id('room-actions-share'))).toExist(); // await element(by.id('room-actions-share')).tap(); - // await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); - // await expect(element(by.id('room-actions-view'))).toBeVisible(); + // await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + // await expect(element(by.id('room-actions-view'))).toExist(); // }); }); @@ -200,8 +201,8 @@ describe('Room actions screen', () => { await element(by.id('room-actions-mentioned')).tap(); await waitFor(element(by.id('mentioned-messages-view'))).toExist().withTimeout(2000); await expect(element(by.id('mentioned-messages-view'))).toExist(); - // await waitFor(element(by.text(` ${ data.random }mention`))).toBeVisible().withTimeout(60000); - // await expect(element(by.text(` ${ data.random }mention`))).toBeVisible(); + // await waitFor(element(by.text(` ${ data.random }mention`))).toExist().withTimeout(60000); + // await expect(element(by.text(` ${ data.random }mention`))).toExist(); await backToActions(); }); @@ -209,90 +210,90 @@ describe('Room actions screen', () => { await element(by.id('room-actions-starred')).tap(); await waitFor(element(by.id('starred-messages-view'))).toExist().withTimeout(2000); await sleep(1000); - await waitFor(element(by.label(`${ data.random }message`)).atIndex(0)).toBeVisible().withTimeout(60000); - await expect(element(by.label(`${ data.random }message`)).atIndex(0)).toBeVisible(); - await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); - await waitFor(element(by.text('Unstar'))).toBeVisible().withTimeout(2000); - await expect(element(by.text('Unstar'))).toBeVisible(); + await waitFor(element(by.label(`${ data.random }message`).withAncestor(by.id('starred-messages-view')))).toExist().withTimeout(60000); + await expect(element(by.label(`${ data.random }message`).withAncestor(by.id('starred-messages-view')))).toExist(); + await element(by.label(`${ data.random }message`).withAncestor(by.id('starred-messages-view'))).longPress(); + await waitFor(element(by.text('Unstar'))).toExist().withTimeout(2000); + await expect(element(by.text('Unstar'))).toExist(); await element(by.text('Unstar')).tap(); - await waitFor(element(by.label(`${ data.random }message`))).toBeNotVisible().withTimeout(60000); - await expect(element(by.label(`${ data.random }message`))).toBeNotVisible(); + await waitFor(element(by.label(`${ data.random }message`).withAncestor(by.id('starred-messages-view')))).toBeNotVisible().withTimeout(60000); + await expect(element(by.label(`${ data.random }message`).withAncestor(by.id('starred-messages-view')))).toBeNotVisible(); await backToActions(); }); it('should show pinned message and unpin it', async() => { - await waitFor(element(by.id('room-actions-pinned'))).toBeVisible(); + await waitFor(element(by.id('room-actions-pinned'))).toExist(); await element(by.id('room-actions-pinned')).tap(); await waitFor(element(by.id('pinned-messages-view'))).toExist().withTimeout(2000); await sleep(1000); - await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible().withTimeout(60000); - await expect(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible(); - await element(by.label(`${ data.random }edited (edited)`)).atIndex(0).longPress(); - await waitFor(element(by.text('Unpin'))).toBeVisible().withTimeout(2000); - await expect(element(by.text('Unpin'))).toBeVisible(); + await waitFor(element(by.label(`${ data.random }edited (edited)`).withAncestor(by.id('pinned-messages-view')))).toExist().withTimeout(60000); + await expect(element(by.label(`${ data.random }edited (edited)`).withAncestor(by.id('pinned-messages-view')))).toExist(); + await element(by.label(`${ data.random }edited (edited)`).withAncestor(by.id('pinned-messages-view'))).longPress(); + await waitFor(element(by.text('Unpin'))).toExist().withTimeout(2000); + await expect(element(by.text('Unpin'))).toExist(); await element(by.text('Unpin')).tap(); - await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeNotVisible().withTimeout(60000); - await expect(element(by.label(`${ data.random }edited (edited)`))).toBeNotVisible(); + await waitFor(element(by.label(`${ data.random }edited (edited)`).withAncestor(by.id('pinned-messages-view')))).toBeNotVisible().withTimeout(60000); + await expect(element(by.label(`${ data.random }edited (edited)`).withAncestor(by.id('pinned-messages-view')))).toBeNotVisible(); await backToActions(); }); it('should search and find a message', async() => { await element(by.id('room-actions-search')).tap(); await waitFor(element(by.id('search-messages-view'))).toExist().withTimeout(2000); - await expect(element(by.id('search-message-view-input'))).toBeVisible(); + await expect(element(by.id('search-message-view-input'))).toExist(); await element(by.id('search-message-view-input')).replaceText(`/${ data.random }message/`); - await waitFor(element(by.label(`${ data.random }message`)).atIndex(0)).toBeVisible().withTimeout(60000); - await expect(element(by.label(`${ data.random }message`)).atIndex(0)).toBeVisible(); + await waitFor(element(by.label(`${ data.random }message`).withAncestor(by.id('search-messages-view')))).toExist().withTimeout(60000); + await expect(element(by.label(`${ data.random }message`).withAncestor(by.id('search-messages-view')))).toExist(); await backToActions(); }); }); describe('Notification', async() => { it('should navigate to notification preference view', async() => { - await waitFor(element(by.id('room-actions-notifications'))).toBeVisible(); - await expect(element(by.id('room-actions-notifications'))).toBeVisible(); + await waitFor(element(by.id('room-actions-notifications'))).toExist(); + await expect(element(by.id('room-actions-notifications'))).toExist(); await element(by.id('room-actions-notifications')).tap(); - await waitFor(element(by.id('notification-preference-view'))).toBeVisible().withTimeout(2000); - await expect(element(by.id('notification-preference-view'))).toBeVisible(); + await waitFor(element(by.id('notification-preference-view'))).toExist().withTimeout(2000); + await expect(element(by.id('notification-preference-view'))).toExist(); }); it('should have receive notification option', async() => { - await expect(element(by.id('notification-preference-view-receive-notification'))).toBeVisible(); + await expect(element(by.id('notification-preference-view-receive-notification'))).toExist(); }); it('should have show unread count option', async() => { - await expect(element(by.id('notification-preference-view-unread-count'))).toBeVisible(); + await expect(element(by.id('notification-preference-view-unread-count'))).toExist(); }); it('should have notification alert option', async() => { - await expect(element(by.id('notification-preference-view-alert'))).toBeVisible(); + await expect(element(by.id('notification-preference-view-alert'))).toExist(); }); it('should have push notification option', async() => { - await waitFor(element(by.id('notification-preference-view-push-notification'))).toBeVisible(); - await expect(element(by.id('notification-preference-view-push-notification'))).toBeVisible(); + await waitFor(element(by.id('notification-preference-view-push-notification'))).toExist(); + await expect(element(by.id('notification-preference-view-push-notification'))).toExist(); }); it('should have notification audio option', async() => { - await waitFor(element(by.id('notification-preference-view-audio'))).toBeVisible(); - await expect(element(by.id('notification-preference-view-audio'))).toBeVisible(); + await waitFor(element(by.id('notification-preference-view-audio'))).toExist(); + await expect(element(by.id('notification-preference-view-audio'))).toExist(); }); it('should have notification sound option', async() => { // Ugly hack to scroll on detox await element(by.type('UIScrollView')).atIndex(1).scrollTo('bottom'); - await waitFor(element(by.id('notification-preference-view-sound'))).toBeVisible(); - await expect(element(by.id('notification-preference-view-sound'))).toBeVisible(); + await waitFor(element(by.id('notification-preference-view-sound'))).toExist(); + await expect(element(by.id('notification-preference-view-sound'))).toExist(); }); it('should have notification duration option', async() => { - await waitFor(element(by.id('notification-preference-view-notification-duration'))).toBeVisible(); - await expect(element(by.id('notification-preference-view-notification-duration'))).toBeVisible(); + await waitFor(element(by.id('notification-preference-view-notification-duration'))).toExist(); + await expect(element(by.id('notification-preference-view-notification-duration'))).toExist(); }); it('should have email alert option', async() => { - await waitFor(element(by.id('notification-preference-view-email-alert'))).toBeVisible(); - await expect(element(by.id('notification-preference-view-email-alert'))).toBeVisible(); + await waitFor(element(by.id('notification-preference-view-email-alert'))).toExist(); + await expect(element(by.id('notification-preference-view-email-alert'))).toExist(); }); after(async() => { @@ -304,34 +305,34 @@ describe('Room actions screen', () => { // Currently, there's no way to add more owners to the room // So we test only for the 'You are the last owner...' message it('should tap on leave channel and raise alert', async() => { - await waitFor(element(by.id('room-actions-leave-channel'))).toBeVisible(); - await expect(element(by.id('room-actions-leave-channel'))).toBeVisible(); + await waitFor(element(by.id('room-actions-leave-channel'))).toExist(); + await expect(element(by.id('room-actions-leave-channel'))).toExist(); await element(by.id('room-actions-leave-channel')).tap(); - await waitFor(element(by.text('Yes, leave it!'))).toBeVisible().withTimeout(2000); - await expect(element(by.text('Yes, leave it!'))).toBeVisible(); + await waitFor(element(by.text('Yes, leave it!'))).toExist().withTimeout(2000); + await expect(element(by.text('Yes, leave it!'))).toExist(); await element(by.text('Yes, leave it!')).tap(); - await waitFor(element(by.text('You are the last owner. Please set new owner before leaving the room.'))).toBeVisible().withTimeout(60000); - await expect(element(by.text('You are the last owner. Please set new owner before leaving the room.'))).toBeVisible(); + await waitFor(element(by.text('You are the last owner. Please set new owner before leaving the room.'))).toExist().withTimeout(60000); + await expect(element(by.text('You are the last owner. Please set new owner before leaving the room.'))).toExist(); await element(by.text('OK')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); }); it('should add user to the room', async() => { - await waitFor(element(by.id('room-actions-add-user'))).toBeVisible(); + await waitFor(element(by.id('room-actions-add-user'))).toExist(); await element(by.id('room-actions-add-user')).tap(); await element(by.id('select-users-view-search')).tap(); await element(by.id('select-users-view-search')).replaceText(data.alternateUser); - await waitFor(element(by.id(`select-users-view-item-${ data.alternateUser }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`select-users-view-item-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id(`select-users-view-item-${ data.alternateUser }`))).toExist().withTimeout(60000); + await expect(element(by.id(`select-users-view-item-${ data.alternateUser }`))).toExist(); await element(by.id(`select-users-view-item-${ data.alternateUser }`)).tap(); - await waitFor(element(by.id(`selected-user-${ data.alternateUser }`))).toBeVisible().withTimeout(5000); - await expect(element(by.id(`selected-user-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id(`selected-user-${ data.alternateUser }`))).toExist().withTimeout(5000); + await expect(element(by.id(`selected-user-${ data.alternateUser }`))).toExist(); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); await element(by.id('room-actions-members')).tap(); await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist(); await backToActions(1); }); @@ -345,39 +346,39 @@ describe('Room actions screen', () => { it('should show all users', async() => { await sleep(1000); await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist(); }); it('should filter user', async() => { - await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist(); await element(by.id('room-members-view-search')).replaceText('rocket'); await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeNotVisible().withTimeout(60000); await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeNotVisible(); await element(by.id('room-members-view-search')).tap(); await element(by.id('room-members-view-search')).clearText(''); - await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist(); }); // FIXME: mute/unmute isn't working // it('should mute user', async() => { // await sleep(1000); // await element(by.id(`room-members-view-item-${ data.alternateUser }`)).longPress(1500); - // await waitFor(element(by.text('Mute'))).toBeVisible().withTimeout(5000); - // await expect(element(by.text('Mute'))).toBeVisible(); + // await waitFor(element(by.text('Mute'))).toExist().withTimeout(5000); + // await expect(element(by.text('Mute'))).toExist(); // await element(by.text('Mute')).tap(); - // await waitFor(element(by.id('toast'))).toBeVisible().withTimeout(10000); - // await expect(element(by.id('toast'))).toBeVisible(); + // await waitFor(element(by.id('toast'))).toExist().withTimeout(10000); + // await expect(element(by.id('toast'))).toExist(); // await waitFor(element(by.id('toast'))).toBeNotVisible().withTimeout(10000); // await expect(element(by.id('toast'))).toBeNotVisible(); // await element(by.id(`room-members-view-item-${ data.alternateUser }`)).longPress(1500); - // await waitFor(element(by.text('Unmute'))).toBeVisible().withTimeout(2000); - // await expect(element(by.text('Unmute'))).toBeVisible(); + // await waitFor(element(by.text('Unmute'))).toExist().withTimeout(2000); + // await expect(element(by.text('Unmute'))).toExist(); // await element(by.text('Unmute')).tap(); - // await waitFor(element(by.id('toast'))).toBeVisible().withTimeout(10000); - // await expect(element(by.id('toast'))).toBeVisible(); + // await waitFor(element(by.id('toast'))).toExist().withTimeout(10000); + // await expect(element(by.id('toast'))).toExist(); // await waitFor(element(by.id('toast'))).toBeNotVisible().withTimeout(10000); // await expect(element(by.id('toast'))).toBeNotVisible(); // }); @@ -385,12 +386,12 @@ describe('Room actions screen', () => { it('should navigate to direct room', async() => { await waitFor(element(by.id(`room-members-view-item-${ data.alternateUser }`))).toExist().withTimeout(5000); await element(by.id(`room-members-view-item-${ data.alternateUser }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-view'))).toBeVisible(); - await waitFor(element(by.id(`room-view-title-${ data.alternateUser }`))).toBeVisible().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ data.alternateUser }`))).toBeVisible(); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); + await expect(element(by.id('room-view'))).toExist(); + await waitFor(element(by.id(`room-view-title-${ data.alternateUser }`))).toExist().withTimeout(60000); + await expect(element(by.id(`room-view-title-${ data.alternateUser }`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); }); }); }) @@ -401,14 +402,14 @@ describe('Room actions screen', () => { }); it('should block/unblock user', async() => { - await waitFor(element(by.id('room-actions-block-user'))).toBeVisible(); + await waitFor(element(by.id('room-actions-block-user'))).toExist(); await sleep(1000); await element(by.id('room-actions-block-user')).tap(); - await waitFor(element(by.label('Unblock user'))).toBeVisible().withTimeout(60000); - await expect(element(by.label('Unblock user'))).toBeVisible(); + await waitFor(element(by.label('Unblock user'))).toExist().withTimeout(60000); + await expect(element(by.label('Unblock user'))).toExist(); await element(by.id('room-actions-block-user')).tap(); - await waitFor(element(by.label('Block user'))).toBeVisible().withTimeout(60000); - await expect(element(by.label('Block user'))).toBeVisible(); + await waitFor(element(by.label('Block user'))).toExist().withTimeout(60000); + await expect(element(by.label('Block user'))).toExist(); }); }); }); diff --git a/e2e/tests/room/04-roominfo.spec.js b/e2e/tests/room/04-roominfo.spec.js index 9055fd484..5fc10eb95 100644 --- a/e2e/tests/room/04-roominfo.spec.js +++ b/e2e/tests/room/04-roominfo.spec.js @@ -11,24 +11,24 @@ async function navigateToRoomInfo(type) { } else { room = `private${ data.random }`; } - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); await element(by.type('UIScrollView')).atIndex(1).swipe('down'); await element(by.id('rooms-list-view-search')).typeText(room); await sleep(2000); await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); await sleep(1000); await element(by.id('room-view-header-actions')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); await sleep(1000); await element(by.id('room-actions-info')).tap(); - await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); } async function waitForToast() { - // await waitFor(element(by.id('toast'))).toBeVisible().withTimeout(10000); - // await expect(element(by.id('toast'))).toBeVisible(); + // await waitFor(element(by.id('toast'))).toExist().withTimeout(10000); + // await expect(element(by.id('toast'))).toExist(); // await waitFor(element(by.id('toast'))).toBeNotVisible().withTimeout(10000); // await expect(element(by.id('toast'))).toBeNotVisible(); await sleep(5000); @@ -42,8 +42,8 @@ describe('Room info screen', () => { }); it('should navigate to room info', async() => { - await expect(element(by.id('room-info-view'))).toBeVisible(); - await expect(element(by.id('room-info-view-name'))).toBeVisible(); + await expect(element(by.id('room-info-view'))).toExist(); + await expect(element(by.id('room-info-view-name'))).toExist(); }); }); @@ -55,34 +55,34 @@ describe('Room info screen', () => { describe('Render', async() => { it('should have room info view', async() => { - await expect(element(by.id('room-info-view'))).toBeVisible(); + await expect(element(by.id('room-info-view'))).toExist(); }); it('should have name', async() => { - await expect(element(by.id('room-info-view-name'))).toBeVisible(); + await expect(element(by.id('room-info-view-name'))).toExist(); }); it('should have description', async() => { - await expect(element(by.label('Description'))).toBeVisible(); + await expect(element(by.label('Description'))).toExist(); }); it('should have topic', async() => { - await expect(element(by.label('Topic'))).toBeVisible(); + await expect(element(by.label('Topic'))).toExist(); }); it('should have announcement', async() => { - await expect(element(by.label('Announcement'))).toBeVisible(); + await expect(element(by.label('Announcement'))).toExist(); }); it('should have edit button', async() => { - await expect(element(by.id('room-info-view-edit-button'))).toBeVisible(); + await expect(element(by.id('room-info-view-edit-button'))).toExist(); }); }); describe('Render Edit', async() => { before(async() => { await sleep(1000); - await waitFor(element(by.id('room-info-view-edit-button'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); }); @@ -96,45 +96,45 @@ describe('Room info screen', () => { }); it('should have description input', async() => { - await expect(element(by.id('room-info-edit-view-description'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-description'))).toExist(); }); it('should have topic input', async() => { - await expect(element(by.id('room-info-edit-view-topic'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-topic'))).toExist(); }); it('should have announcement input', async() => { - await expect(element(by.id('room-info-edit-view-announcement'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-announcement'))).toExist(); }); it('should have password input', async() => { - await expect(element(by.id('room-info-edit-view-password'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-password'))).toExist(); }); it('should have type switch', async() => { // Ugly hack to scroll on detox await element(by.type('UIScrollView')).atIndex(1).swipe('up'); - await expect(element(by.id('room-info-edit-view-t'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-t'))).toExist(); }); it('should have ready only switch', async() => { - await expect(element(by.id('room-info-edit-view-ro'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-ro'))).toExist(); }); it('should have submit button', async() => { - await expect(element(by.id('room-info-edit-view-submit'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-submit'))).toExist(); }); it('should have reset button', async() => { - await expect(element(by.id('room-info-edit-view-reset'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-reset'))).toExist(); }); it('should have archive button', async() => { - await expect(element(by.id('room-info-edit-view-archive'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-archive'))).toExist(); }); it('should have delete button', async() => { - await expect(element(by.id('room-info-edit-view-delete'))).toBeVisible(); + await expect(element(by.id('room-info-edit-view-delete'))).toExist(); }); after(async() => { @@ -150,8 +150,8 @@ describe('Room info screen', () => { // await element(by.id('room-info-edit-view-name')).replaceText('invalid name'); // await element(by.type('UIScrollView')).atIndex(1).swipe('up'); // await element(by.id('room-info-edit-view-submit')).tap(); - // await waitFor(element(by.text('There was an error while saving settings!'))).toBeVisible().withTimeout(60000); - // await expect(element(by.text('There was an error while saving settings!'))).toBeVisible(); + // await waitFor(element(by.text('There was an error while saving settings!'))).toExist().withTimeout(60000); + // await expect(element(by.text('There was an error while saving settings!'))).toExist(); // await element(by.text('OK')).tap(); // await waitFor(element(by.text('There was an error while saving settings!'))).toBeNotVisible().withTimeout(10000); // await element(by.type('UIScrollView')).atIndex(1).swipe('down'); @@ -163,7 +163,7 @@ describe('Room info screen', () => { await element(by.id('room-info-edit-view-submit')).tap(); await sleep(5000); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); await sleep(1000); await expect(element(by.id('room-info-view-name'))).toHaveLabel(`${ room }new`); // change name to original @@ -212,14 +212,14 @@ describe('Room info screen', () => { await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); await sleep(1000); - await expect(element(by.label('new description').withAncestor(by.id('room-info-view-description')))).toBeVisible(); + await expect(element(by.label('new description').withAncestor(by.id('room-info-view-description')))).toExist(); }); it('should change room topic', async() => { await sleep(1000); - await waitFor(element(by.id('room-info-view-edit-button'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); await sleep(1000); @@ -228,14 +228,14 @@ describe('Room info screen', () => { await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); await sleep(1000); - await expect(element(by.label('new topic').withAncestor(by.id('room-info-view-topic')))).toBeVisible(); + await expect(element(by.label('new topic').withAncestor(by.id('room-info-view-topic')))).toExist(); }); it('should change room announcement', async() => { await sleep(1000); - await waitFor(element(by.id('room-info-view-edit-button'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); await sleep(1000); @@ -244,14 +244,14 @@ describe('Room info screen', () => { await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); await sleep(1000); - await expect(element(by.label('new announcement').withAncestor(by.id('room-info-view-announcement')))).toBeVisible(); + await expect(element(by.label('new announcement').withAncestor(by.id('room-info-view-announcement')))).toExist(); }); it('should change room password', async() => { await sleep(1000); - await waitFor(element(by.id('room-info-view-edit-button'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); await sleep(1000); @@ -276,8 +276,8 @@ describe('Room info screen', () => { // await sleep(1000); // await element(by.type('UIScrollView')).atIndex(1).swipe('up'); // await element(by.id('room-info-edit-view-ro')).tap(); - // await waitFor(element(by.id('room-info-edit-view-react-when-ro'))).toBeVisible().withTimeout(2000); - // await expect(element(by.id('room-info-edit-view-react-when-ro'))).toBeVisible(); + // await waitFor(element(by.id('room-info-edit-view-react-when-ro'))).toExist().withTimeout(2000); + // await expect(element(by.id('room-info-edit-view-react-when-ro'))).toExist(); // await element(by.id('room-info-edit-view-react-when-ro')).tap(); // await element(by.id('room-info-edit-view-submit')).tap(); // await waitForToast(); @@ -288,29 +288,29 @@ describe('Room info screen', () => { await sleep(1000); await element(by.type('UIScrollView')).atIndex(1).swipe('up'); await element(by.id('room-info-edit-view-archive')).tap(); - await waitFor(element(by.text('Yes, archive it!'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Yes, archive it!'))).toBeVisible(); + await waitFor(element(by.text('Yes, archive it!'))).toExist().withTimeout(5000); + await expect(element(by.text('Yes, archive it!'))).toExist(); await element(by.text('Yes, archive it!')).tap(); - await waitFor(element(by.id('room-info-edit-view-unarchive'))).toBeVisible().withTimeout(60000); - await expect(element(by.id('room-info-edit-view-unarchive'))).toBeVisible(); + await waitFor(element(by.id('room-info-edit-view-unarchive'))).toExist().withTimeout(60000); + await expect(element(by.id('room-info-edit-view-unarchive'))).toExist(); await expect(element(by.id('room-info-edit-view-archive'))).toBeNotVisible(); // TODO: needs permission to unarchive // await element(by.id('room-info-edit-view-archive')).tap(); - // await waitFor(element(by.text('Yes, unarchive it!'))).toBeVisible().withTimeout(5000); - // await expect(element(by.text('Yes, unarchive it!'))).toBeVisible(); + // await waitFor(element(by.text('Yes, unarchive it!'))).toExist().withTimeout(5000); + // await expect(element(by.text('Yes, unarchive it!'))).toExist(); // await element(by.text('Yes, unarchive it!')).tap(); - // await waitFor(element(by.text('ARCHIVE'))).toBeVisible().withTimeout(60000); - // await expect(element(by.text('ARCHIVE'))).toBeVisible(); + // await waitFor(element(by.text('ARCHIVE'))).toExist().withTimeout(60000); + // await expect(element(by.text('ARCHIVE'))).toExist(); }); it('should delete room', async() => { await sleep(1000); await element(by.type('UIScrollView')).atIndex(1).swipe('up'); await element(by.id('room-info-edit-view-delete')).tap(); - await waitFor(element(by.text('Yes, delete it!'))).toBeVisible().withTimeout(5000); - await expect(element(by.text('Yes, delete it!'))).toBeVisible(); + await waitFor(element(by.text('Yes, delete it!'))).toExist().withTimeout(5000); + await expect(element(by.text('Yes, delete it!'))).toExist(); await element(by.text('Yes, delete it!')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); // await element(by.id('rooms-list-view-search')).typeText(''); await sleep(2000); await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeNotVisible().withTimeout(60000); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 3803e81ee..514e76782 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -360,6 +360,8 @@ PODS: - React - react-native-orientation-locker (1.1.8): - React + - react-native-safe-area-context (3.0.2): + - React - react-native-slider (2.0.9): - React - react-native-webview (9.4.0): @@ -437,7 +439,9 @@ PODS: - React - RNBootSplash (2.2.4): - React - - RNCAsyncStorage (1.10.0): + - RNCAsyncStorage (1.10.3): + - React + - RNCMaskedView (0.1.10): - React - RNDateTimePicker (2.3.2): - React @@ -458,12 +462,12 @@ PODS: - React - RNGestureHandler (1.6.1): - React - - RNImageCropPicker (0.28.0): + - RNImageCropPicker (0.30.0): - React-Core - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.28.0) + - RNImageCropPicker/QBImagePickerController (= 0.30.0) - RSKImageCropper - - RNImageCropPicker/QBImagePickerController (0.28.0): + - RNImageCropPicker/QBImagePickerController (0.30.0): - React-Core - React-RCTImage - RSKImageCropper @@ -562,6 +566,7 @@ DEPENDENCIES: - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`) - react-native-notifications (from `../node_modules/react-native-notifications`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) + - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - "react-native-slider (from `../node_modules/@react-native-community/slider`)" - react-native-webview (from `../node_modules/react-native-webview`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) @@ -583,6 +588,7 @@ DEPENDENCIES: - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" + - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) @@ -710,6 +716,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-notifications" react-native-orientation-locker: :path: "../node_modules/react-native-orientation-locker" + react-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" react-native-slider: :path: "../node_modules/@react-native-community/slider" react-native-webview: @@ -750,6 +758,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-bootsplash" RNCAsyncStorage: :path: "../node_modules/@react-native-community/async-storage" + RNCMaskedView: + :path: "../node_modules/@react-native-community/masked-view" RNDateTimePicker: :path: "../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: @@ -868,6 +878,7 @@ SPEC CHECKSUMS: react-native-jitsi-meet: f89bcb2cfbd5b15403b9c40738036c4f1af45d05 react-native-notifications: ee8fd739853e72694f3af8b374c8ccb106b7b227 react-native-orientation-locker: f0ca1a8e5031dab6b74bfb4ab33a17ed2c2fcb0d + react-native-safe-area-context: b11a34881faac509cad5578726c98161ad4d275c react-native-slider: e51492f1264d882a8815b71c5870f8978e52887d react-native-webview: cf5527893252b3b036eea024a1da6996f7344c74 React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c @@ -887,13 +898,14 @@ SPEC CHECKSUMS: rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: 7cb9b4fe7e94177edc0d11010f7631d79db2f5e9 - RNCAsyncStorage: 6d99641f8e6f15d169d695d8ef184bf187903f11 + RNCAsyncStorage: cd7234ff15c010723ed7c499ae4eedc605eac1fd + RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f RNDateTimePicker: 4bd49e09f91ca73d69119a9e1173b0d43b82f5e5 RNDeviceInfo: e2102056bde3ad5d137fd029d8d431510a00486a RNFastImage: 35ae972d6727c84ee3f5c6897e07f84d0a3445e9 RNFirebase: 37daa9a346d070f9f6ee1f3b4aaf4c8e3b1d5d1c RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38 - RNImageCropPicker: cf129d17e042ce3e96fb9ada967c28f21f977c82 + RNImageCropPicker: a606d65f71c6c05caa3c850c16fb1ba2a4718608 RNLocalize: b6df30cc25ae736d37874f9bce13351db2f56796 RNReanimated: 955cf4068714003d2f1a6e2bae3fb1118f359aff RNRootView: 895a4813dedeaca82db2fa868ca1c333d790e494 diff --git a/ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedView.h b/ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedView.h new file mode 120000 index 000000000..d386e270c --- /dev/null +++ b/ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedView.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/masked-view/ios/RNCMaskedView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedViewManager.h b/ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedViewManager.h new file mode 120000 index 000000000..56292ccdb --- /dev/null +++ b/ios/Pods/Headers/Private/RNCMaskedView/RNCMaskedViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/masked-view/ios/RNCMaskedViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RCTView+SafeAreaCompat.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RCTView+SafeAreaCompat.h new file mode 120000 index 000000000..7ad3e9a1c --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RCTView+SafeAreaCompat.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RCTView+SafeAreaCompat.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProvider.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProvider.h new file mode 120000 index 000000000..8744bf748 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProviderManager.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProviderManager.h new file mode 120000 index 000000000..b4359380d --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaProviderManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaProviderManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaShadowView.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaShadowView.h new file mode 120000 index 000000000..03ea438e5 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaShadowView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h new file mode 120000 index 000000000..7476be42b --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewEdges.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewEdges.h new file mode 120000 index 000000000..438fe1839 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewEdges.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewEdges.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewLocalData.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewLocalData.h new file mode 120000 index 000000000..f1d32636f --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewLocalData.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewLocalData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h new file mode 120000 index 000000000..5e022746e --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewMode.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewMode.h new file mode 120000 index 000000000..6e8a59301 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewMode.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewMode.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedView.h b/ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedView.h new file mode 120000 index 000000000..d386e270c --- /dev/null +++ b/ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedView.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/masked-view/ios/RNCMaskedView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedViewManager.h b/ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedViewManager.h new file mode 120000 index 000000000..56292ccdb --- /dev/null +++ b/ios/Pods/Headers/Public/RNCMaskedView/RNCMaskedViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@react-native-community/masked-view/ios/RNCMaskedViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RCTView+SafeAreaCompat.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RCTView+SafeAreaCompat.h new file mode 120000 index 000000000..7ad3e9a1c --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RCTView+SafeAreaCompat.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RCTView+SafeAreaCompat.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProvider.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProvider.h new file mode 120000 index 000000000..8744bf748 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProviderManager.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProviderManager.h new file mode 120000 index 000000000..b4359380d --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaProviderManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaProviderManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaShadowView.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaShadowView.h new file mode 120000 index 000000000..03ea438e5 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaShadowView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h new file mode 120000 index 000000000..7476be42b --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewEdges.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewEdges.h new file mode 120000 index 000000000..438fe1839 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewEdges.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewEdges.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewLocalData.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewLocalData.h new file mode 120000 index 000000000..f1d32636f --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewLocalData.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewLocalData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h new file mode 120000 index 000000000..5e022746e --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewMode.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewMode.h new file mode 120000 index 000000000..6e8a59301 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewMode.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewMode.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json b/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json index d3e56d09a..421bbb1ff 100644 --- a/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json +++ b/ios/Pods/Local Podspecs/RNCAsyncStorage.podspec.json @@ -1,9 +1,9 @@ { "name": "RNCAsyncStorage", - "version": "1.10.0", + "version": "1.10.3", "summary": "Asynchronous, persistent, key-value storage system for React Native.", "license": "MIT", - "authors": "Krzysztof Borowy <krizzu.dev@gmail.com>", + "authors": "Krzysztof Borowy <hello@krizzu.dev>", "homepage": "https://github.com/react-native-community/react-native-async-storage#readme", "platforms": { "ios": "9.0", @@ -11,7 +11,7 @@ }, "source": { "git": "https://github.com/react-native-community/react-native-async-storage.git", - "tag": "v1.10.0" + "tag": "v1.10.3" }, "source_files": "ios/**/*.{h,m}", "dependencies": { diff --git a/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json b/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json new file mode 100644 index 000000000..261de0045 --- /dev/null +++ b/ios/Pods/Local Podspecs/RNCMaskedView.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "RNCMaskedView", + "version": "0.1.10", + "summary": "React Native MaskedView component", + "license": "MIT", + "authors": "Mike Nedosekin <crespo8800@gmail.com>", + "homepage": "https://github.com/react-native-community/react-native-masked-view#readme", + "platforms": { + "ios": "9.0", + "tvos": "9.0" + }, + "source": { + "git": "https://github.com/react-native-community/react-native-masked-view.git", + "tag": "v0.1.10" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/RNImageCropPicker.podspec.json b/ios/Pods/Local Podspecs/RNImageCropPicker.podspec.json index bb3fff0c5..59bc7a1da 100644 --- a/ios/Pods/Local Podspecs/RNImageCropPicker.podspec.json +++ b/ios/Pods/Local Podspecs/RNImageCropPicker.podspec.json @@ -1,6 +1,6 @@ { "name": "RNImageCropPicker", - "version": "0.28.0", + "version": "0.30.0", "summary": "Select single or multiple images, with cropping option", "requires_arc": true, "license": "MIT", @@ -10,7 +10,7 @@ }, "source": { "git": "https://github.com/ivpusic/react-native-image-crop-picker", - "tag": "v0.28.0" + "tag": "v0.30.0" }, "source_files": "ios/src/*.{h,m}", "platforms": { diff --git a/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json b/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json new file mode 100644 index 000000000..b2226e20e --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "react-native-safe-area-context", + "version": "3.0.2", + "summary": "A flexible way to handle safe area, also works on Android and web.", + "license": "MIT", + "authors": "Janic Duplessis <janicduplessis@gmail.com>", + "homepage": "https://github.com/th3rdwave/react-native-safe-area-context#readme", + "platforms": { + "ios": "9.0", + "tvos": "9.2" + }, + "source": { + "git": "https://github.com/th3rdwave/react-native-safe-area-context.git", + "tag": "v3.0.2" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 3803e81ee..514e76782 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -360,6 +360,8 @@ PODS: - React - react-native-orientation-locker (1.1.8): - React + - react-native-safe-area-context (3.0.2): + - React - react-native-slider (2.0.9): - React - react-native-webview (9.4.0): @@ -437,7 +439,9 @@ PODS: - React - RNBootSplash (2.2.4): - React - - RNCAsyncStorage (1.10.0): + - RNCAsyncStorage (1.10.3): + - React + - RNCMaskedView (0.1.10): - React - RNDateTimePicker (2.3.2): - React @@ -458,12 +462,12 @@ PODS: - React - RNGestureHandler (1.6.1): - React - - RNImageCropPicker (0.28.0): + - RNImageCropPicker (0.30.0): - React-Core - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.28.0) + - RNImageCropPicker/QBImagePickerController (= 0.30.0) - RSKImageCropper - - RNImageCropPicker/QBImagePickerController (0.28.0): + - RNImageCropPicker/QBImagePickerController (0.30.0): - React-Core - React-RCTImage - RSKImageCropper @@ -562,6 +566,7 @@ DEPENDENCIES: - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`) - react-native-notifications (from `../node_modules/react-native-notifications`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) + - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - "react-native-slider (from `../node_modules/@react-native-community/slider`)" - react-native-webview (from `../node_modules/react-native-webview`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) @@ -583,6 +588,7 @@ DEPENDENCIES: - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" + - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) @@ -710,6 +716,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-notifications" react-native-orientation-locker: :path: "../node_modules/react-native-orientation-locker" + react-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" react-native-slider: :path: "../node_modules/@react-native-community/slider" react-native-webview: @@ -750,6 +758,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-bootsplash" RNCAsyncStorage: :path: "../node_modules/@react-native-community/async-storage" + RNCMaskedView: + :path: "../node_modules/@react-native-community/masked-view" RNDateTimePicker: :path: "../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: @@ -868,6 +878,7 @@ SPEC CHECKSUMS: react-native-jitsi-meet: f89bcb2cfbd5b15403b9c40738036c4f1af45d05 react-native-notifications: ee8fd739853e72694f3af8b374c8ccb106b7b227 react-native-orientation-locker: f0ca1a8e5031dab6b74bfb4ab33a17ed2c2fcb0d + react-native-safe-area-context: b11a34881faac509cad5578726c98161ad4d275c react-native-slider: e51492f1264d882a8815b71c5870f8978e52887d react-native-webview: cf5527893252b3b036eea024a1da6996f7344c74 React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c @@ -887,13 +898,14 @@ SPEC CHECKSUMS: rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: 7cb9b4fe7e94177edc0d11010f7631d79db2f5e9 - RNCAsyncStorage: 6d99641f8e6f15d169d695d8ef184bf187903f11 + RNCAsyncStorage: cd7234ff15c010723ed7c499ae4eedc605eac1fd + RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f RNDateTimePicker: 4bd49e09f91ca73d69119a9e1173b0d43b82f5e5 RNDeviceInfo: e2102056bde3ad5d137fd029d8d431510a00486a RNFastImage: 35ae972d6727c84ee3f5c6897e07f84d0a3445e9 RNFirebase: 37daa9a346d070f9f6ee1f3b4aaf4c8e3b1d5d1c RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38 - RNImageCropPicker: cf129d17e042ce3e96fb9ada967c28f21f977c82 + RNImageCropPicker: a606d65f71c6c05caa3c850c16fb1ba2a4718608 RNLocalize: b6df30cc25ae736d37874f9bce13351db2f56796 RNReanimated: 955cf4068714003d2f1a6e2bae3fb1118f359aff RNRootView: 895a4813dedeaca82db2fa868ca1c333d790e494 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index c9791839a..c8644622f 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -238,25 +238,25 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = E92A46AC09F3A4C210BF6DC717FE1128 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C86D9C85FFFD3CADFC1CA464B0086CAA /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF7FCBDBE58FF824E55296C47D01FB9 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2CA54231C14F8186AD91A1F2145F55 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D43B9A81C5CFB7CC964B198C8BF176 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = BEAE5B8B071B90BC75B81752AC66B8E0 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD52E8807306F1A909DC3E63E9B01D3E /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = D035D0010E8DE2D35059CEE7EDBEBE4C /* UMNativeModulesProxy.m */; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C01FD55251E04D79D54389D9E2505CB1 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B31BEBB5858E81C44FEE36887BB30D4 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8CCF2AA86951C0C89788443FC66288 /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 4867946AE62EB71973F0CB1AB2E3EDCD /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D791AE312E93DF3F3AFD4C628799188 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D882CD265BAAC8C8EB8DBD2BE886AF69 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 00D27218A8199A050BC7FA8E8564170F /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 674B6F2710F83FD4E8D65327654F702A /* GULAppDelegateSwizzler.m */; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75543B5F65557EF58DF3162759B936C6 /* Flipper-dummy.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = C10B86FB420804CA03EF2E7C13B7A0D4 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B7FB9B863028BB9152BC5789EF883D /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C59082BABF59E77460D9147952C110 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC90A42F976DFA2E0DA3EBCBBB308286 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0109658EA8CF256D8B289ADCDC7FA70A /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B71E8C8EB282CC6A581AD96F05FC4C12 /* SDImageIOCoder.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 185B2034CAF6E1EE0931F67A5783DDA9 /* README.md */; }; 011CCC7448DA0EED688075A9B65EC55C /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7AC696022DBE83B7A382DB0BB9E3B5 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = AE3B096A68F34EC3F272AB427CE2F32E /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D013E58A4B0CF45BD86DAB1BE88BBAC /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69227533CC8398DB1B4E51347D096821 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC1FF6A3E958EEB34084535FBCC6A2F /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EFD8A78E58DE590D240B9A06419AED /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B43F51A5F2BF1C0DE5C049B0B83F385 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = D3625BCCC0F421D853BC5DA8F0AF5BAF /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B957890B4CC126477F060EE903D4729D /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -264,144 +264,144 @@ 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 09710EAB22C0612FDD4330603A259BED /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 788EDF0678F695FC0BC67274CEAD5F0C /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = C1692BEEAD627DEF8994CE572CFB1A59 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2A01DC99BBC7CD86517EEED9666713 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 38F39BCA112CDB5A3FE2B699C153AD24 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 012BB9E56B33EBF4790164443F9F9352 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 01DC61744399BD2FC81739D0D16C7640 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 02CF5ED1CEA40B42508C26E0FC2A66E1 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BD8055150F383E0BD14DF2F2AAAC255 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0A30FBAAA3F331107EA451DD10260C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B5011534201E3763AB22784CE8E753 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCCC69679F935D7E2F10ACACD5E79F6 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AFECC51B07E34A8F3B2628E70F3F713F /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A91812CFCB70941FF3D33C6FA8F1D6 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 56ADD42358572A2B87D543D6BA6CA0FF /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E640E63AE6E09C9C8167553D7BA5808F /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C2D5BD8C0270331BC9B6E938A4466600 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 466D597AD1459F3BC853D24ED8127E57 /* SDDiskCache.m */; }; - 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A2157B8FCBCB981A4B4B8E321B1257B5 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFAFAC3EF4E67E8ED649AB357974741 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6C7B879BFD452E4DCD69E7D8407DB1 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1098524967543792A0E135B7C05633 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = D42CB44BA9C69CBAF899C96FE903676E /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03C2E903CC5B4C7A1E6F9080A24B4926 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = F072BFD907A6FCC7834CFE7FCFC1883F /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 485F6A036642CBC1CC852BE2FFBC1556 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 26468D7FEAB555E9EB117944B5F283BA /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A638D0FA7AB3205099F7E8D5BCCD88E9 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = F53E266ABBA0580FDCE7E1B40F1D99F3 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C672F4FBFB383A097DDBA19A88F15DE /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DECE78FD5A2983C4A35967B61B994F5 /* REAAllTransitions.m */; }; - 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D70454DF8F9142E88B85515B1C4DF172 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FA32DC2FFD7D3C5521D0A2AC95BC00 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = E392F401361980335B1D0994034FDA60 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 04720781CE919EF591D835B54D25129A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB8F0B2E82C8ECF93A3A1068CBF2DA7 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = FD80D3557B7F95C1F231BFF7DD19C97F /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 63105F52D965E142E96F80DC3CF4FC18 /* REAAllTransitions.m */; }; + 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A2A89B3C14D61E41B4004651846E25 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 676AC51213B44BDACA97E33DA530D6A8 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 04720781CE919EF591D835B54D25129A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C7E2D98FA30BBB9A085F507411C7CA /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24ACE2A977F7AB793D9A93778CD16E /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04AA55BE7FB64746D55ECB9C8714BE6C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6910297F97EEA607B6EFFFAB321DB97 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 5500E6F36870F3141E33609BD3C5966C /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04B65BFF8935AF4B13C7566F91CABA0B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEAF8647E8C72ABA05FDA860A421E4D0 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04D6704283C3418A8C24ADB8AE9B5F11 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 67128EB79907D7A2D1BE62C9A068CCB3 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 658414AB81E9A68B93362D1497A8B2E4 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04B65BFF8935AF4B13C7566F91CABA0B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DB84CAA9FFF35B26830F2F6B2E1093 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04D6704283C3418A8C24ADB8AE9B5F11 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = EBCD948AC4674100418902BD3A89E2E3 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04DEBAD199A26C30F3E532330C05B716 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F40B1861D13D01526C617DBCA79546 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 976AAC54063299BD9B1366B0AF3E1F08 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A5C2C297EE96B3D047E7C74B236045AB /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F0941D08E0154A154AD3BE25420FBC /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 436A2C1CF5C436FE19DEA09C716D9B49 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE2BFF0F123F1A27CF0D9AC2F84DA1A /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 052C6452C9F9919E496F077C5D882140 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A0403F0F9C1AC41CDC6A65C8AA14B4A0 /* GDTCORAssert.m */; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEE2BBDF9379116DDC81BC3AEDE175F /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1158A11775C169614615E653BE1B25AB /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = A718F215712FCDE08A545C92FAB53377 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F83BAA8354FE1415F44E732F1032CE1 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 057FDA20D3830D25C8F9230D8460A02D /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E72A96C3E51340E4B917875C909221D /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 88B0DC4FC7F96FDEE51F498194964D78 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC0D7F44F4D32A037596050EADFCB2A /* ARTRadialGradient.m */; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4CD1EA00042DB134AE0FCB59D02089 /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C75B5F8947006AB1C73BB46B4267E5 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1050F1435196CED15B61398817AEC9B8 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 4ACA231A5AF8AF7BDB90244762C19195 /* BSG_KSString.c */; }; + 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 005FE8CEE0A32FC4A24106623708ACF3 /* BSG_KSString.c */; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E1940DEEAC17A92734A7038D221AE41D /* nanopb-dummy.m */; }; 05D0FAA0AE5364F5271A2ED3B96DAABA /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4A6D9BE1A5F271A1EBB343B090BF4A /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 84046FDF23D7C27F377792E34B6A6862 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 829D6AD9B342CF6AF4A53197E757E4D6 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 05EE2DF1D5661FA03933D9C8CB868392 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CB2F905B2A1849FB7D8078F2C1203A0 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 05EE2DF1D5661FA03933D9C8CB868392 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC4B27BF8CC6D6FBCA5B4FB3FF957EA7 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 05EED5AD8FFA478A9641A7703EFC6674 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = CC0BEC0B3F3C44148680AA1B3E1299F5 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7217016DDD92C1D480FFAD050AC3B7 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D2434308FE9078AFFD7425B11C23CCF /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9986C9FE4567E0B8DC9DB83136204FF3 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9C5F48C11EF7F770DDBD7E7AB64805 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF8B876AEED4AC249E46457AF985862 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CDDE079106BB87DDEE8D61B3FBFD01 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D67A0C91A2C8F802E131D64416F0A3 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C6B5F5057A29AECC758D204F8E4B02 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 087C97C5E3BD5E3E1260D6BD7227A17D /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 1795A7DF13A680DD10B81AF83A303B58 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D00F8D02BC30C9CD3C92F08AA8B19D /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4396AF01347CCA03B9E7140BADCE88BE /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F79539D21D6441938E9FF2E4BAD4CF73 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B49794982FBDADB0177CBE38BCD190 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 70FDFC2CE9916A1C39912D2D86454292 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 0701F05311F4120F2BED97A9A7D492C8 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 07017D11692DC682C8E03BB2FA2823DF /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BF8E9A99B123336E4490F22C58A6A56 /* FIRComponentType.m */; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 291D6C2C49433692B9FE34BC24939C2B /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 075E4EEBCB43B2419651CE229A433CF2 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EE9536804A5BAB743C11B8E69AF4A6 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = A99701059C883EFBE32DCFD2FF0BE5D0 /* QBVideoIconView.m */; }; + 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD4AB29C51CF8BDA8D6DC0DFFFC923D /* QBVideoIconView.m */; }; 07912AE1EFEFB82A90F50403C9214FD5 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE3E2D34034CCBEFBE5A22102D9E078 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8C7B604F47671DB78576D860213C75 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F6988F2F1099FE226606BFA0B639416 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E038C449F763C718AE5E2ADB78A8957 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = E782834353877A71A4602A05FE560CF6 /* BugsnagSessionTracker.m */; }; - 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CAECA76E8396085CB984BF6927F6A3 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FBFC75084DECB3CEC5950D42179801 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 484F71D2F1FE4AFC1C9AA945E58569D6 /* BugsnagSessionTracker.m */; }; + 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BD6E5AED675450ABB68C160C6386CD /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 080D996C588B3246A97741FDB942CC79 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E082AC97CA13A0B9F95EABCDB5C2542 /* GULNSData+zlib.m */; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 23C3C5F08BD13409D8FDE9FE4D1CC598 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 989E10982D7047A7DAB8A37A30CC1E6D /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF1B2A24DF85F35EA84548F4AB66F11 /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CE034C6B186B447C39072B20294DFD2 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5F851DD103B3122A832F14307F000D /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B50440F83C769FB72C446E4454AFE6D2 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = F343E8E6DDBCE646DDC08C75FF9C4A8B /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0831A0057F646251FD8B9F72008F0F52 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A34D813C9BE0C4D2D9FB56A59FE8BB /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CFFD22667604FFF6621EF6AFFAC0ABF /* SDWebImageCacheSerializer.m */; }; 086AF342FFBEEBA94A504AA18CF754E7 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ECBD724ABF1B2436022114B32A7B1C /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 086D7D199B167A5E3CC16B2157B3D167 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 280D09B7AD881B183B9C2BF25975FBF6 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 3829AEC3DC988CD50673B1724E7A381E /* UIImage+Resize.m */; }; + 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 49C3ADC6C2C4519340F0B60372FFA46E /* UIImage+Resize.m */; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0A89CE53B60C565AEBF54AE0DAB4AB /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06DA217DBD0FA2E42BDB897AA049CCC2 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E14F4C3F2A2C314AC444FDF3BD90749 /* RCTTypeSafety-dummy.m */; }; + 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BA16C8E1EE792F051C468252733D6A9 /* RCTTypeSafety-dummy.m */; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B2E2615F1D5C5A3DB51CFC1E41D2A4 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A154AAB79A96C5D3BFAEE70156CBCF0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C52A92AE75468F558576E0077F7E11D /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B12190FAA3292458A918B4AFC24225 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4EFD036EC6654875D4D04D71657858 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BE233E2230EC56C6EA5ECA34C40DC2 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0311B13879609FE9DF91F2242EF8880B /* GULLogger.m */; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BF60A7D435C7C7CF382B46B1A2CDE9DD /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C108D7A13CAD13104F3AFC3364E34AF3 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDEF6694588702A45512615587873C /* FIRAppAssociationRegistration.m */; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = C33183C92E539AF4523A9F436DED40AC /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8751552E35893BDF83F6025B06D03C /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94CDAAC8014342546C86775C00F6A589 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD56DD05E452DC489C5852DF2964668C /* ARTTextManager.m */; }; - 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C90AD6F3E02455B90B994E4FFAC8DCF6 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F53BCCEADEADB82BF87B66397B482947 /* ARTTextManager.m */; }; + 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1CB6BECF058E3A4985899EE7B0B23A2 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0A12C7C7EEE78E6E740FBBC9B85CCD4A /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AEFCED6B75662F6CD5BDDEE99FDDF9 /* FBLPromise+Validate.m */; }; - 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D313A35B48E6F08CC4890B066E0381E2 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D5427FE4E48FF6C6F79AD17B6DE1C649 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0A2BB595766F80BB96DA17C3497BF549 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3746F217CFFCA932F738BE27F5EDB9 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B818ED8284E70A4FF6D5BABE203876F5 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F36B529E6062EAD987C661D1F6E7DF4 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 792A074CA8DB2DC75B300A6053CE8C1D /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F27ED42340D5A5BC7673FE3E360FA70 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2598E2C79750DFB023DA23A9AFB1C983 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4BF455D2EB8C3B0ED975E7D28C952D /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F0331910FDB15B21D137B5FFB94526 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27500E1C3EC9295178F620CC41A73CA3 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F81B0B9AF74EA1B9823E923967ECB355 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A99514320870DC97F9BB77ED6044E0 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = F116C4C2B2E4866A92F2576A64F4BFB0 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8604E2095003058E3A036F99D16F0F0E /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = A57EAC7845873FDBDBDF56091C146267 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1AF0557324DCAE519580AEC76A8CC4D4 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 865687D8992B9721808E1ED5B153B8D1 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06F09B2B54ABF89A0E692B008AA9D6F9 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C1ABC56AA99C63DED52C9F73ED634A /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 775244808FA9C3FF8CB7F2A4E4A7EECB /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = C325978CFDAB8C04548FF1E460600969 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C070EBE531AE402204E3CF9512505C8 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = E2060A315A5DB499B27EACB59616E6FB /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 0B9E2306C3BE47E02155DE8E960D6B32 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 459327D88106B828E8FED49069C1B8DB /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = E341FC9946689900657B6982A61A5D02 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F231D7CA282303549AA44A7AD81A60 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 6937D064C749EA2BD80D9E075CB49CC1 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 99CF9BBC8C3D785A1135FA10C0D87201 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = E382B59B493959CD33D743A3005D0F11 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B00B20AB994D8DF90BA02B6753B4568 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C8D29707DFA2F60DD8508F64D0E029B /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C47CCCE3A4B09237C87F96F1BE1D8A /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 228CEFF2E2C187172950B2CE3A62B9A8 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 0021C6A7A997A06C2776B974C7821251 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A803CD8A3F7CDDDA5937C6C863FFB920 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EA2F015CC2FF6A8803D9BD622FC9A4 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 598C6FCDFC1133042CCDACFFF06EBC6B /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0C8D29707DFA2F60DD8508F64D0E029B /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E8C3D3C610C6144595BD88455E3153 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CA7C850CA1800B14065B9E58A5ACC80 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8285F659DA66A30E841A40EBB7C03DCE /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0CDE1736E199F42AF437784B3351CE31 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 1894C6BB2FA24DEE867B6C235CA2F8B9 /* FBLPromise+Async.m */; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA97D54CF9ACDAC4793DBE3A9798D4F /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6488D764E9CC6A04FCB067377339CA78 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B3F6A2C254EF6FDD66D17C7F17F393 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 91812A384E0D24CDD31A1A2C7D42DE82 /* SDImageCoderHelper.m */; }; 0D4C1FE8B07E8FBD0752A7EED502914E /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B2E2FAE979095438F3921A484FF5914 /* FBLPromise+Recover.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 110A2B745F49BAC59EE79316D115A6D6 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E0C101451EA03BB79D6AAFC9A07CBB /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C85FC8A04DE7C7381E6363E09976B77 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C01BA1E846A7F4D9FDDE492D4B367F4 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 83427F2327EFE23208D29702FC463EC2 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DE3744A7455AAFA32B39C9ADDAD79D7 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 130FA934D6D11BFD2912B48CBBD9657A /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DFDE05F3E991B70E27D2F6A9C2D5017 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFEE578BDACDF8A7DAAA1CD21387886 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F2B7C17FD11CCB4337CB031447D5287 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6D3E35BECB150CD5F980483BC52243 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B717BAB93B56433B8D02225FB7155342 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0E103FDA6751439951C099EB863C4E9C /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CCC35D452C44CE4E6354148EF5F188 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1047E03A54517A95C80F04356C0BAC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CA643B7C9426F0218624D4222E051D /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = D8F27D693A9D70A1E15610ED01D638D6 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A3F412A544C3D5566023402CD9659172 /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F2B2FB1E278B24DF0352FFF93299CD9B /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C3FC9ADAB83B11E93EFE083DBD9D33 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B631E5FB8A084E0D4D78C8C64AB5B9B0 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB2A3F2B7BC082B52E02D5D06D423EF /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC46BC75E9FB785073AB403AED85863 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E6CDDD3662E67C0C8965B8F0CE41EA6 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E8308DA306318053FC61547E4649A8 /* FBLPromise+Do.m */; }; @@ -410,147 +410,148 @@ 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C82C3C911EF776B47AE70152D5C2B2C9 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 631CC48B9CD6ECAE17C232840A63B4F9 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC288156FCAC5528EE9A32A0D0BD1666 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2692F96A70C996939FCF0292FF468288 /* BSG_RFC3339DateTool.m */; }; - 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F538E8A4AEBF8C5386B7716F6F9998F /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4BEC03C02A6ED4B4E77A9D08060ABD /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FB428D3C7FD683A121181252C5246E28 /* ja.lproj */; }; + 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E651B07840425D4D95B5723F1449AE /* BSG_RFC3339DateTool.m */; }; + 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E99D2AE48FA6673B685C713DACBAD36 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = A8134D4E8FEF2248A87CFF788DE69B83 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 958E52FEE245E3C364A04B23B5C26A34 /* ja.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A88BA7B3FD0C44D083A54567E699CE9F /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FA9C97403FEF053C862AA37D7419213 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = B066A05A05739142F9F5D70FA459BC44 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = ABABCF020F0069E7D380C9AE62914445 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DC3D71773A522EB2F7C6F3723730BA /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D69C09EADAE5AB9F3A5B910990EAC6AB /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 320E0B1A25EB2F637CBF4290094ED6B3 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 094E326AC4141C1616866FA844A2ABB9 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 505C5615C155C91CD06C7CF8DEF8CD78 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE0697F33D7E0B7DA1149A396065DD3 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = BCAB4E18232CFF7D83C09A37E1AADCAF /* FBLPromise+Race.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D02ED6C4ECB2318D9F7A5B1B79581974 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10188187C279960B337C15DCD889FF13 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A51ABC586C299853B08123F512C1DA70 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = A62B7F9D8BA15A75694B82E48D5AD161 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6AD4758068A2DA90FF3E153F456A00FB /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1078F8A5ABD7343177E99B9FD3D71932 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D725E31D5F0F9D6B097C523E2C876AC3 /* React-jsinspector-dummy.m */; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 370D292975A2043376B9EA3E171BDC19 /* RNFirebaseAdMobRewardedVideo.m */; }; - 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4AD027FCF42D8DFD3D1DC59D05781C /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = F0D5EB0C0AF1B46416A6E4E7E3D33DA5 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1078F8A5ABD7343177E99B9FD3D71932 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C23A2F489E66C0BBE98BDB2082178AC6 /* React-jsinspector-dummy.m */; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 80888C4D60C85D341F05D74889DFFA4C /* RNFirebaseAdMobRewardedVideo.m */; }; + 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 569B2202C973C9A08DF9A19D4DEDE4B9 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1530C9267EBA1AD0A80EE430F809CC9 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA920F7A204F39086184DEF6A3EEC4F1 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D0293F53C01FE2EC7861CAC2794DAE /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A00768B9736810750DF8C347AFFDD01D /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EBD406BEE74B29CAAD099B5F5623B78 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DE315D70E5C21E0A0D947E0AF34567A /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1FD42F2DDF1DE25C6108AC6123ABD8 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2684476A26F9AA36378CCD73BB417EC2 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C06A74260BEBB5976EC38B84C16A54A /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B9E241EABF8A5A40C7EDD67432603C /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E54E5325C0D655C94D6ABAEE7C9C18 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 4701A56E6E6454DF97BC15234A739DF5 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D16C2613A98591C7433A92989CB9FB /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD301F98FAB37D5BBC99A45991CEDFD /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D4120D59CC721ACCDF291C39035972A3 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 883CE30B7B37BAB794DE3D07B226F4A2 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EAAB1D38023ABD96763E62FA496CC3 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE5A2D2336BDACC59D1DDE28C598F1FB /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 11BC921BEE2F3EE5F764D72CC571FF96 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 76DB7DDFA5ABBBF55411E285875E8DA1 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DFF2067FCB29BDC2048C01A70055C83 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 425948E172F368C6A68D1CED6CBE3686 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB9836A0870E8AED5574E9DEB215076 /* SDImageCache.m */; }; - 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = FA6EAD5FB226DE03EAEA90D17A3793FD /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 927951445A92363AB98995673F37BD60 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0A207F5DECC90BA9748FB44FE35C67 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5624E0E20A589ECAA03A7C6C028BDF /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 915FFD88627EF3D1AA7B5CCC61FD9B82 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FFC168E8AAAFFC31E531B9F8EF58A2C /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 120EE91B70D7148A00CE2E064E96F61E /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8F6E233D037583958956D70CBE4920 /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C71CAF2DCC6B9F802938E7F57B0A976 /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC6A673372926D61D8997915CCE6D97 /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC3411E2C598037179D556382232F0A /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F5AAC557AD3C7CADEF6306178A3FF636 /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FEFC3571A6FD5B34B0ACFE04575228A /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1168C19E7D2E04FB41C7C7B44D739771 /* RNPushKitEventHandler.m */; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F37C3569D69F6D9FE0DF0B78ABC8991 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2A8BDD5B43E8C53B1B17CAB035C90C /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 698C573E2A3AE5D9A2AF05020316C4C4 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DCAC264BA4ED2D4100C356EA1ACB22 /* SDWebImageDownloaderDecryptor.m */; }; 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D8DC65E6AEE62F2E8C0681847C6771 /* SDImageAPNGCoder.m */; }; 137F2AB84ACCC13A5B70189CC62DA277 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 391809D6099DBCF7ED4F67B5CF7C077B /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E48D44415F84BF7AED6E1B9F0504D132 /* SDWeakProxy.m */; }; - 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E7806F9CAB5FC3C3A6D2F4B19FB0D7 /* React-RCTText-dummy.m */; }; + 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 007F599147497FC96A4178C305AEABCD /* React-RCTText-dummy.m */; }; 13D7C34FEC43A4568FD21A4221A2C1EC /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D78469224A31FF4998FBF1572479254 /* FBLPromise+Wrap.m */; }; - 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 82E230E1B2623136263E9BDB47B3D045 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C4F9E3BF3C9734CFD410F10F8CFBFE9 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 13DE1BD1D694029E6A9CA5A6422D1297 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D17211126B230DF5446557FE9998B37C /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379FE274E8A7DCAC4B987B18D6867063 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B4127266B5EC6DD89FE1F94CCA4B6A1 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 143BDF277DE6C458540A99AB32A6912A /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3634D87B73924CC5131F6B0E98980D02 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2185F0EE77134879331967B033BDBFC /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED94D1793B8A55328B5B64B884D106DD /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CB305FB16C6980DFAEF89A3008ACF2E /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 143BDF277DE6C458540A99AB32A6912A /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB778FAD940294AABA45B65ABA0C8374 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C93543FE01A6C97729A0C5783545D254 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4DAFBC77BCC1C80EB8B9301EC253D6 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F3552D4BB7A4C91B6ABB4CDF3A78488 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DFDE8B8F51B84DD08D0D7AF871A04C4 /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B25EC8B033867DDBBFA3107CD3017C /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A56E0999D905D918357F9A626E97294 /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7DFF3A414B0E7D5C751B535DB89338 /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C93A77331F2DCB76AC9069C20CBB68FF /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 468D763FD715BA65BBA48C21E8A5C2E6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 39CCAC4A2D7E157D625AE2E79DD5784F /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 34AE55DEA5FFA61EFF3FEC80D5A8FD8D /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14CAFF1ED4661468AB0080B8A886439A /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D6A7F603D91A945AC9ECFF83721FD2 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E01627C9FADCDFAD3407038312E4CF57 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A61CD93CD86B2847C62012BC8201AC8 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C26F973618AB9F44097E0D662C8273 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 988BA3376729A3D79C86FB6308A2522D /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 55285077E38ED492DD98E9A9AFB8EB33 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 120C6FE790E1CAAAE33978DE80E762D2 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = D44BDADBDF0681FFA576594C2A54A0FB /* ARTLinearGradient.m */; }; - 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FFB9C319EA3BC2AF3541DA4BBD1CC3 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = D40FE7367A96160310E0FA038F585E92 /* ARTLinearGradient.m */; }; + 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AFCC848706AC146667C33200C1CD2C /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15619A9FEFEB4C7FBEB38264BCF2F170 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C26D9E8BA9B0C1C3FD84643E3A62C9 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB7118678737F1D828984D9FBCFEB0F /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 4861260C10C20CC6A6F44A2E9425059B /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1570CDD55121E52EEF123C763B2B0B4F /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4FBE8F8986D0FC6EEDD2B850A3F16B /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1578046795E51ADF624F9E6A5C60939A /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB4574B3B770599A9B8E3F74E2411F3 /* FIRInstallationsVersion.m */; }; 157804CF2C9474129EA1324545E3ACA6 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6AC95E7AD35654EAD053C4678D5D0A /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = CE304DE590FA295283860C223B5CA63E /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 91297C5FA5AA16DE081A805FF346F321 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; 159E6CC104E3A31FD10E4BFF4D2B6910 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 478FF91049F877DC033DD166C1CD7FD4 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 132BB75E02D031FB28B8179A0D011290 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15D5FFEEA2DFB87AC3BAE1F6656DB482 /* MessageQueueThreadCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81170979608C08D4D1521530F5DFBD1E /* MessageQueueThreadCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72E407D70F10CC8ADED44E16BD591EA9 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15D5FFEEA2DFB87AC3BAE1F6656DB482 /* MessageQueueThreadCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EC9F608FFDDB8D66E233F17B837EDC /* MessageQueueThreadCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 245B33E1F4D089A1FF002688512F44F6 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4767264FEFC132643C5311D5096788E0 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 380AEA85EBA61336850CB2319530876A /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 0194255A68262603732E2E4F4F9BDAA3 /* RNPushKit.m */; }; + 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 6571DF5436311985C9F0ECDD2F9B822D /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 207A93E311A2B2567CB197FE30D9BFD6 /* RNPushKit.m */; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 96049167E2D8523393613FF3443A968C /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB09839249259D0536286005A085F8E0 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8554BE05B4CA68DFDF521065515DA78F /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBE416D50F6F76A7D7A8C9AF48F18D14 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 57533F6BD93D2DE4244B0735402B9DA4 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 362DCF91A55A56D69B0ECA55A973800F /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9991420F4188227A754E034852D2FC13 /* ARTNodeManager.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CBC29214A35D70A6460363696F3A412 /* ARTNodeManager.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = E877B24BBCFEEB3B33063DAB3FC98BC2 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FB91F4227F109724D2B112490C4FCC26 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D935B87E7D5BC9E3AC3E2CF9C81D1084 /* AudioRecorderManager.m */; }; - 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAA202C801CE16AB694D62DA2603A7C /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B7EFA3C553FFA3C0E411FD9481118B5 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB1789515B4B57A57BBA01180625822 /* AudioRecorderManager.m */; }; + 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E7291BDC9D10EED12CC97D6CD1827 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 173644F783112230316D4E6FCC53ED4A /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E9128F86352D76A79FF505730FB26393 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F5FB874B08672C02FB2BFC14D2D529 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = D95779B2CED449A629C8A758700E46AF /* REAClockNodes.m */; }; + 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA5D52946D5146220F0C1D6E7DA0956 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = EA02EC2BFDF7958CBC02B8993CBB85D4 /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 098EB243A3EC052B12C874589238C80D /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC86F16A869C08B98514E4FAD3877FA2 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 177039A182568496EEAD8B000C4CB5EF /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = AA766FEB8AFF1DEADB72485E6526D9DE /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A2191BF801355D0DA84F034E7EB2E83C /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 780B702EB55C3166E65CB713785F0053 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B98C43EBEB9ED9E996C65F076BCB5B5E /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = B798C6C06396008B406AB7FCBAD216BB /* RNCSafeAreaViewEdges.m */; }; + 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3DD063E32E5E8662D6A1C1443DB935 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93CC7E8B8374FB50C008B576F253CC58 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B19946E7CBE7C12C9863BD084871818 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF7BEDE2D56C8BC667725D4ADAB7536 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B4F226B18548F31137F52D5071D0332 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DC3494FB12543357BB8575BAAE65AA /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 966C8893779B8233236017371E619B1F /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D2496821890C3957B6369CCC233D5079 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A87117E5612E6AD894A505E87DA09C5 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = CDD07198F82534ACCC69AB9FDAE1BEB8 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDF1CE1F1DF8F2EBBEAEEB8B361FF4C /* EXRemoteNotificationPermissionRequester.m */; }; + 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 167D5828800E44CC2451087243F40F39 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FC0110D216D4372BFFF4A82540AE74AD /* EXRemoteNotificationPermissionRequester.m */; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E74C3E2B6D38A98EDC7095EBDF0D894 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = A076E128ACA2FF44ED8BE10CE4C8F2D9 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 7181B076C72B5D8B4BAB9CA9A56A536E /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = D569C8EBC11F560FC5CA66BF071F7634 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F351CE4D2108C412E825050B755F4A2 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = C894BDC9326638A226C65B45A7437B07 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1902EBB8C42BEB7A31086863B86BE089 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36E87CC503F95E7DCBCF552BC0BF04D6 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 191ED4B1AD846F05B02798563A781F70 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B44E198E1118013F10E109C936D5CE5 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BBDBB22145B78714CD090797BE20365 /* QBAssetsViewController.m */; }; - 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F1997B8A8F8C837D13423F0AE602CD4B /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F08AB5F4C1F34510E8E82AA7FD7A56AA /* QBAssetsViewController.m */; }; + 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D86900F642AF3628250062901E3B6C /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6C4FAE5AC01C6228E1DEE8D1D7642E /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 196ECC69DF946B7C4054EBA6F7889BAC /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E62C69369E251ACD8E2B0D16898898E /* GoogleUtilities-dummy.m */; }; 197BAE778D92018BC73EC6A9A055401A /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EBBBA654E5B9311944BB828A0B747C /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19912572D88D09628C2942291E7C9ED0 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 412D48D731E53A5618B1DBB917CB8899 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3575F3A9BC08A5FAD6227C9E2CE3926 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = C553B6048128E6C5C2010F54DCFFFF32 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2FCFF1B74797ED46F81119F1ACFE14 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 76507D6BDFF3A2955E6C896931880428 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B59FE6153A8CC3B19F7CA6B444C1A15 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 19BB6A5959515A1DBDDC1B41C2E63739 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3008B2D7E12E475B9A4DC48370E2DA /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE8B85B9E36A416752CDE135629619D /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 594C6F33F1EC10518B8B4A0F2B753591 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7275F5DA65E28AFA745D1F5F25FF0B08 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D22FD21AD985123581E35E174568B3C3 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B23E78F9CD6F4E202C67819674071F /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5B93B33A7BFFBA1E32BDBAB88A5605 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = A89A5E13A345AB0BD7A3A25759280635 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69D6106A77F649DDCAE006388446B24D /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A3FDE33AD424E36E91196E972FCC4CF /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2983C8167A247EF469501A4EBFBE4D7C /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A9191026A065A4591600142C46139A3 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 259032220E882F1A3F9C8364086DAF94 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F8CDB3CB84B4918F82BCE04073C480B /* RNUserDefaults-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D17C3735E61F4FB2ACCB176EC13A4190 /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BF4FA651BEEAAF5ED8F95C925D0291C /* FIRErrors.m */; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFDA2AABF60471FA0DE4B952CECB3F4 /* EXLocalAuthentication.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = CE11CF764C991280625C47C38B5C8F31 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C007EF19AC1F93CB99375FEB25E78C0 /* RNFirebaseMessaging.m */; }; - 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FE08082A646B5291E0826CBC729CBA /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 330566AE5AF4C4FFF95E7C2D625511FB /* EXLocalAuthentication.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E71855F5E7A8418726894F59E554B8 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = C68C178CF4D65216F2D9DACEAA476D1B /* RNFirebaseMessaging.m */; }; + 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B33F8494FFD6A13CFAEAD5298CB749D7 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = F61DA646F70603FFB9B2E7890FC424F2 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB084C6DEBA0DC96061D8A514AC4DBA /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F61EA0F96EAB1BD9DD7607D35EAF450 /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94BD5EC2A42468D9F9E45F78B2A3BFAE /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C70C0DE50B1BDE4F31EE82E99A4926 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 215C261D87D5D65CAC10CBA91012E7E4 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3115F7E0E2ABB73E131A40586F98AD /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -558,215 +559,217 @@ 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C8773F55A4F4A5653989E3D9049C88 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F5E5E7947A5559B8B8DDDD4748189BF /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1D8002FB0B3678187844345027A132 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBA549B24B6B26CE6809AD5C97D0D7C /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1AD786AD2B5B7C57E86680A8E002A0 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 12569BA1E5FD08B4ED65AE7842806DD3 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = F36308EEFC7D2B93E991A98340CDC649 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DFDEB74B14A09BB7A2CB49B451ADDD9 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C647BDA4A4AB160D974BD55DB2E0A02 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B391B9CA0B494C6195981505D1E076FA /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D142D9DB4D58940C58B19712A5E24AF6 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 1C75E58E5C7129F8CA3F013D567B692A /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 18230B4DBA48A8F3656B5C7AC20A3B75 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01C61CDCDB208940081BCB076A189961 /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F68FADC2E5D1F3308B07EF0A1A621E3 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFD3C57B3BD3377FEF14E236D53E795 /* ARTShapeManager.m */; }; + 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 86E4F8E331A1E8766EE7DFC72710CFFB /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 54AA020BD3FF830AE950170EBEB58E8A /* ARTShapeManager.m */; }; 1CDFFE7C9DF69F03E29F9F02205DF675 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BF33E3D337BB985790D01909BD9E7E4 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 312AAE5A6C6467B1BD4D1576263C73E2 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = F0D0C520E720F849C7F93F61AA0D4AC7 /* BugsnagBreadcrumb.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C42F9714A09EB66DC4FEA36E14C86E5 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 437CE74CA59C58F794EBC32E2CB8FC0E /* BugsnagBreadcrumb.m */; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A65D1F437F3BF3FD561C475B7FDF42B /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DA838978E3266512EFD9B40E12CE5CBB /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F93518BC798B6148F9C4B8FC8C045423 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 1D6326675CA2E7855A721EFF933961F1 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CB983279B4EE789CC6DCECC42768786 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CBA4D64E832107DF8DEDDD7AD46ABA1D /* RCTRawTextShadowView.m */; }; - 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC4950F11A5BAE422A01CD661DDE700 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BFEA28EBCFB4C01668FFB09B9DEBDCF /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A41718993E223E88F65EF3AF1ED7FD /* RCTRawTextShadowView.m */; }; + 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 107D451387B07A0C867AD34BC92323BC /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DE91DD8D31AD923BC2F28C70E8E6F9C /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 592374A4AECA89B1BB68DE278A852A29 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C6F6060D92552F751A5A438DD7F1E9 /* RCTConvert+REATransition.m */; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = D21F9B54F5152321C81F1E4B947973E3 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A91D4BB1CF8EFD075D25BCF7E2FCBB8A /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A966DDAE0BE49D85728B6C2FEA74EDD /* RCTConvert+REATransition.m */; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 046876CB45E8677AA2A5F488330696D6 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D4C0D09B8BC735DD7F524E05248601A /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1E5283D2800D1D93A49EC9AA71FBBBC5 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F754BA97D31F81C0D2C840E3F713C40 /* GULUserDefaults.m */; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = E7051E62EA10F5A1688EE25CBA946028 /* RNSScreenContainer.m */; }; - 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2282B9C099E923015053646C706DFEB7 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 441F02D10BB61823144938EE3580E748 /* RNSScreenContainer.m */; }; + 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF67609001A45E16F9812CB6552BC57 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1EC6E839250BB5EE3E900F898BA75362 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E77D6A25ADD24D6F07341AF8523362 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F257D3DC2A8E4E89D3BB0AD17B0D129D /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 153B693BA836AD28207153834B3D3DC0 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B18B97F7B5BC32789739B993A2AA870 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F6DFF890D73A3400DF2B04DD1601E79 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7024B63B6A0592729A9DBFFA7058446D /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1F8D9EC1018173D1167AD8857D3E4CA0 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6031C2D1663B56C2BFC3DC302D3269 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC763AB25BB02EE3DE6A7C2352B487E /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BD539FB8E9853340BBBC966D4714DBFE /* RNNotificationEventHandler.m */; }; + 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9C7858F5095094776156A4627310E3 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAA73BB8821C72D48536DF5F9AF61C2 /* RNNotificationEventHandler.m */; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 61383164C8977EA49DC60163A8512601 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F7E8C7767E4DCA4EDDAF759C14E8C7B /* QBAssetCell.m */; }; - 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AED6104FB755CAB53662F840A8C88E5 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = DB30904BAAE60FADA3C166321E867CFA /* QBAssetCell.m */; }; + 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = A9632268AF154A6CABA4DAE26034D98B /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3D6F2F0BD6A80301C0154FB416A93F /* FIRBundleUtil.m */; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EF404723C321D1CE272E4AB802BD15 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1FF5C452F6AC78D240C19A97251FBFF9 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9796627BDD27EEB4F1131083745509 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EB3043B14271CB50A41A02E51FFCB5 /* BugsnagUser.m */; }; + 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE8F1E2A57485398832FABA2C87BED8 /* BugsnagUser.m */; }; 202E0AA3695D0381D384CE7180F47ABD /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E60978F54BEFC76D758C52F2DCE696B /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E500DA4066B4BC698E1361F118D3F3C /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ADBD2E2A0CCC65EE9926134BEE529124 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E947376F560B801ED9ED40D457FF7E09 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20787CEC79E25AA6516AD59C8BEEB419 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D1EFB411756EBD8F39F077B8FDE62A /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 77193EA92359874A8A909A3F19EB06FF /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E426055F0DD1A897CF3CCD3618F3143 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A21F660C6F4A88B7477EE0F663966EA6 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B0C57A6DE9D3137B0AD31EFF574741 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 770DF2A3BFCED53A3069E3AA80AC34E4 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B883649B7B86E3C65B40C1BE9C6C11 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = C1EC005937337A3AF4021FD78FFF4A61 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A6FAF621DD8E42929F3FA9DE1FB33C /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B48725A57C02BE892258A5F0E381FFD /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4113C049E565A753E96474638C645F /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AE0B052526B55F3E3B0A632AC1A9AD /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B4FA6C21FE7D85DD4A2A26A3536958 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8F65DBBDC35F4D499274A0E87B121A /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 77EB8DCB463F84D34C3F69C528F50742 /* RNFirebaseAdMobInterstitial.m */; }; - 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0149F9ECF69B7586A6E5B0877111F8 /* BugsnagApiClient.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FFF036081EEA50E6911CC3C72539F1C /* RNCMaskedView.m */; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 4335EF4928C61574AB47E7CD8B7BFA1B /* RNFirebaseAdMobInterstitial.m */; }; + 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E0327631D614F964926C116CE2D0667 /* BugsnagApiClient.m */; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C22917C00943A72650B1A5BFECAB205 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A37ECECFF215A4E4752D225E775EE54 /* RCTBaseTextInputViewManager.m */; }; - 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF24138049CFE68DD50C74C1145242A /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2402DEF5C89B3561B39DD69D485EAC1 /* REANodesManager.m */; }; + 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 930C07D496B0306731EE1E12EB49EE36 /* RCTBaseTextInputViewManager.m */; }; + 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C416507DDE2D7C53BF5DDF7DB76AD238 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1F97993C8D8F56705CB4CAEDDEAC3C /* REANodesManager.m */; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = F673F7A4451F2EB7B7CAC0BDBB6536EF /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5147B173FBF4AE07E220CCCDA9C0D551 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EE6352FEB572021F497970361E22E2 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E15100946BAC576970F1812C06DAF4 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AAFFE9015819EE8C6E0EB64991023F /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E16122AFBEA16EAC94D13B6DDB01FB /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3B9F2E2045D0788B9F558559D9E3279 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 2212B6827D7BC81F77DBB7C361B61548 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = B794065BBDF365D9EBD7C6655644DEFD /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = B08A96271A96C96F79C23505E40F7239 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EBEC90FAEC6FCB04E4466E74D48C5F4 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 419D7F99EC80B8052540CD50BC3163FA /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C584564A24FC9F29346D46E78173808E /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 72446B354D5BD5E6C67A34FFA3A5735E /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 574CAC2BE1FDC0C3A64A41100E04D1B8 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD1A7C15C31FA648D8509671D563123 /* RNFirebaseStorage.m */; }; - 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A55C32FF9E9C1A62EEB8C335B948100 /* RCTUITextView.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B547B5B2FB6D8A1B67CEF47329FA12 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 205328114E4BF15CC8CF7906A5B8671D /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B79C8BD3D16E22D3EF6179CA31D62F /* RNFirebaseStorage.m */; }; + 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 144F317E09F4B5D8DFB7D8D6606A1DB8 /* RCTUITextView.m */; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 84405E5212A26FB31331C0561D1B6213 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8F4675CC8307D777C968A879851B36B /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67E42338FFC645BC4772588D7419BD56 /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85808F8B10091CD0E52075D763A399BC /* ARTSurfaceViewManager.m */; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6E489D62F906EF168083EA18447111 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 890605CD3E314EC9B9611BEDAD9196E0 /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 98197B703C5B25832FEF5F172B51223C /* ARTSurfaceViewManager.m */; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4E5E73B879B9EC13468395FE769AE5 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E39D773243E62889778C6F995D48E88 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2353A8FB4CFCDCAE359ACE46CFC9E24F /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 8576E63209765A1063F39CC81ECED255 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9915994EECACD7D790907711164FF55 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2353A8FB4CFCDCAE359ACE46CFC9E24F /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 65512EE3A272FEA187D7F68BB2CBF52A /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 566BDC3CA9E55B141F1F03BA37242126 /* YogaKit-dummy.m */; }; - 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = DF68F8C05ED0D441CA88D7C0FB9706E8 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 71BD46623AC3B0A68515B1DFAF4ECABD /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 238F9CA702A2EB39A52476B90FCF4CA8 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A718E68D26BDCFE9B9CDA4F834EF9883 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB49E839110038FF4DC5076B280566C /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FD43A814135FF3A79FCCD0F3B3AED0 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8A87482535B796BF26E80DC743B5D2 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E211A0B094C454F064C853CA7D597DE /* BSG_KSCrashSentry_Signal.c */; }; + 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = E3ED780732B909991C8A1D797B113375 /* BSG_KSCrashSentry_Signal.c */; }; 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 516E8E98B631789DD4E1138D1F45C97A /* SDImageCachesManager.m */; }; - 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F0CFF18CE4552B3CF163C7268A9870 /* RCTInputAccessoryViewManager.m */; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 6509F99A2B26E0DC23794301BE53B4AA /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F499C1B29AA068DB65988968E24DAE59 /* RCTInputAccessoryViewManager.m */; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C18F5EBFB911662933AB752A409FCB5B /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 00855890B735951AA5162A55E8A97890 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = A284C22076F6E210152F6954E6818433 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = D2C27F372D793E139B6108DFE137291D /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 40EC405B3CC16154B3954F379C47921A /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3908931CC3AD282C86A05F921B3D10D0 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D035F17BAE0EC5F3DF65863518DAE9DE /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 322C21C553A1DAB04CC9C758267576DC /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E119A66BD3B26DE1ED3C51B35208E3 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B35CFDE05E5FE5FAFAC03053278BEC26 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3455EB917ECE0988D4BC9BB519933A28 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 25308C703762C1B6541C05420395E4E1 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C1830D09C7AD962D9E9C6B21D60E848 /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 25308C703762C1B6541C05420395E4E1 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2CD41FE5D4488D18AEA8D0FE2255E01B /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 914E5C444B63DD254F036CB9D76BB996 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254B9E5D97F740F5EA8A278A150F25CE /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5364F369762F2D9A787AA4C0E3A83302 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF586CD523D95A658AADA902B005000D /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 257916A7CD095FA0808F4A1ABBA1E93D /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05A3D55CAA8DED5C74FC5C2B3BA51AFC /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6210D07A896201E57DE39B266F754E6E /* RCTSinglelineTextInputView.m */; }; + 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1669CBA419AEEEB6CAC6C9F52448BD9 /* RCTSinglelineTextInputView.m */; }; 25B0C379434647D92E7295C0CC6A1B1C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A52A66D6ECB595B10AB378B99C8CFD /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D38B789AFA3E08A0D80B75C3C58CF03C /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 25CDA6B573F9FA265790119B75DE62BD /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7620C33D98CA444273207FD555ABAF /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4F966BA5BAE51CD8161E3BFB19A697 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 391FA89E4A62EA22768FB6CA3B8C06A5 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = B7E893291B40C123F6EC0C9A4AB35FB6 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5205F507564DE7F6518EB49735BEEB0E /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E212ED79BB2DBDB1AC098B2D414E584 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 25FAE9EB053A32C666CBD08A58F59158 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F1FD68918CD5F6B8A22695713E741D /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2605224350F37496F63ADC7DC13F4AB0 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F3A22757CCF4CD86B5ABA167EC115F4 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C971578E953F8059B4413C67425989 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3950213BA5881CF4D302913A641927 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ADF759622DF370A2C32EDEA6407D22 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F68E0CE6A3A45B21DAE0ADB89241CD9 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 266F0607CAD1CEDE6B8FDA659AC9564D /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = FB5F65DB5FC23042D7F48B3043F93673 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 266F0607CAD1CEDE6B8FDA659AC9564D /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75834989E18D8E87AC3EE1830D7DCDFB /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 2688470222A93D85CD64C619D255D87F /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 191E0AB4AB70334DAAFC00A760F3A31F /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = C087057E1CB78F04BB1E4D342FC4B961 /* SDWebImagePrefetcher.m */; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6506E90DBEE865CCE7B43373CCE642E2 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093C1F142FB1F8383A757053CAF1B48C /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BA25394971C4CB64AA8DD418868BF293 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = F31709B9ECEE7B00CAB3EAE784D2CF59 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 850919EAE9825E1550B656DF21466B86 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE9C7F9E630710AE14DC0088B128EB6 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4921858537797DF6DE8FEF93F73B84 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = FE82543F068334B0331886A3E9D99352 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = CE12368EE0E36359BB5A4EB2F69DC467 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F47523D4E6432D68674A050EBBF338 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27E334C4DE66739FE2189761220D2152 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8EC08DA57FEC621D53E2C37A998546 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CD110FCD349863CA704AC151DEEAA3 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CD6713AD3426DD32DF3BCAA79C2CFA /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28061C86241C297891AF6D19B17288A7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BD76F1F3F5837C4EE2BF0B840A9F71BC /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF35AEBAC7F7D5E574BAE659430B77F /* SDWebImageDownloader.m */; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 49EAB33DEDA451ECE220EC8AF4ACAA1A /* RCTConvert+ART.m */; }; - 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28CFF1631686533CBDAC4F58170D6326 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 9675F13CB46425163B7D8B264DAB751A /* RCTConvert+ART.m */; }; + 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A73FCFE546A7888540B3404F38F752AC /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 28BD2154EFEF4A904B84DFF396BD6598 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA41DC73155E4E6BCFB2D091C2B7773 /* SDAnimatedImageView+WebCache.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E59B66F081BE096170439BC02D93F4 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC846BEA11D8CD633342B9E54C48FAF /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE23695884956B445D045A5A4F2BEBD2 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 817C4CDF2FF40398C12C7B51816D040E /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D281EDC9696B7F44BEA76E706891017 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = DD00CB56D91621F69493ADDD3139090A /* FIRApp.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AF5331168A419623C9D015644797290 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 296F07BAEFF63EE74DBFD1A4936E42BF /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A45B3636081D58B3A2C76BD76B56B8 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 687220EBC07C9E6FAC205C6519208563 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C972F667E84E4CEA53674B8077942E /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F932A9BB7CDCDC99B0DD8738E4601E0 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2987B38812445E03CDA22FA3542465CB /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5FF49744979D40ECA028E79C2184AC /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 147C723753E754518402BEB9ED7DC51E /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 04D663D51FF3BC07BC8331ADD75706C5 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6049C82BC2C47603E9076739B55CF121 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B77E80DAEB31320DB5131AA2DF21943B /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 29A57A56B88B85230E7202D1741D4057 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB564E3DAC37E01D80AAAA34088B6182 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC8C93413C4A20B2CEDDF097CA3F6B4 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 355DED01991AF95805580082EE4D8736 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 29BB93429B225681D5E327FA55D79FCA /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4730CAE79DB9E448ACFBF47D5A9CF3EC /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F975ABCF1DDACF01397576F14A4E751 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BB93429B225681D5E327FA55D79FCA /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF265AB52B23A7E06EB3545394C853D7 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0F7031B485AFA3CB77A34F11BB9B63 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA79E45CD6C4B455D971CD4CEB2489B /* RNRootView-dummy.m */; }; - 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08829BC9C202EA1752192651200FF24B /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BCA7D25953AD7B71A4DDEF46B0CFA17 /* RNRootView-dummy.m */; }; + 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFA32E7F3C5F31B35D111D6C612DA04 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 29EF263F0219112B7A83EB6282AC6BC8 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = C52827FE3E33A2486E9F3E9A5DB53FA6 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D13696AB91A111CF4B17AF8A82344F04 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3990E460FB5F9E245B9B637945C22C /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 892F5AE1354CFFA17AE1881B08925A3C /* RNFirebaseNotifications.m */; }; - 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C13ACF4C333704044F230487F185C5 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01E111A92A8C204D121A7CE95801F180 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80CEA4C9FB7CDC667CB53E2C1DC471CD /* react-native-document-picker-dummy.m */; }; - 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23ACE1E4D86A9BF4A43FB04E8C62EE20 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F118877102B5F49DE30F73F4133164 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFB52B3033BBB7AE6287ED693E36B0A /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B3521A9FE101B163F2C9A187BD1E7E3 /* RNFirebaseNotifications.m */; }; + 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0E1885FF6218CDFE9982E05F1A5588 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B47F771593D230817BD77F43EE081FC /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70953D120538AAD374CEED481B327482 /* react-native-document-picker-dummy.m */; }; + 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B4692F054A0876E2EE22CB02FCF1D54 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2A55289CBCBD22F409A68DB6A7D7DE51 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2570B45F50BCBB7DCDAE727C311DDD99 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FDE46C73DBE3989EF7943C600233A1 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AF32D081EB6E524CB3E39D7F94422EE /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A70291ECEF7C38CC3D4003CC6E27B9B /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A2CE6670F1063CE769F4F38D99C6814 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2B1E991CC4B64389ECA30647B4B02A1A /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60C29C33923424EA722B44C2EEEF50A4 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5387872CDB3E69D6850D5774F27155 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A816BAA178104A152A615160293198EE /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC8E451D38E2E7D63F049CAB6CB0967 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B194002894F596571B50ECA498E7A4 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 70EB5207D74CBEE1C7F7A1F94CB901FD /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 641D8F8FA1DD9B786D2ACCE319365B95 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2B574EC6E9241E8B84C6A3846272F8F3 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E14E803222896FFB5A5FD3579D2F497 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A61C638B1EA38EE4558EF4004C289962 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2B574EC6E9241E8B84C6A3846272F8F3 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C1D1FB6C7ABB76EFBA9EA6555779B9 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA9E989106978D4E80BC8EE286D6304 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = B65C102AD065AC51BB431EEFFF98E5BA /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E64AFA5C6D9BA5AD3C6FE804F1376F2 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 2BA0D059223373A39DCB8B59BD18557C /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 33AE5102B7218B102D9683C94F8937BA /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = EA487FB8FB99E1AACE8BD924399C4214 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 338C2E7D2F893B9F7B7644A561785505 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2C03900917DC61024FD067977229C3D1 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E73DD428C053251E496A070FEE4D7D9 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 840917B509BB30F5BFB4937EACC877C1 /* fr.lproj */; }; + 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2B8F0CB7B18252642B5D4A076198B56E /* fr.lproj */; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C225153782F80BD27563133AD2D2C29 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27C4185FF117BB68E954C769B2CD4FB8 /* QBCheckmarkView.m */; }; + 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 670F0EBAC9E68A6388175F2D2C39F1E9 /* QBCheckmarkView.m */; }; 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DFB76D2A04133AF31E767C7B34973 /* SDWebImageManager.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F439BD20B5301F3B48D4563AAF2F7D5F /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 30169015F3924A9D83E887FACFD06434 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC6222422A5D872EBEC5AE4557AA1FF /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C76D04357B9263B3E31FF7C30424670 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8446493A26CBD5A047B2F877C460C9F3 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3080E77E5BB8B52647E6EC7E3C8497 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1230732873EB5B79DA0BB896FAA32E99 /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B7C68AC1C8AACB3FBE5504BDA2DFA6 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE0B684D1BCA6EEDD82AD1128AEB955 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DE66979ACFC098CDFA80B17DFB56FD /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F0D73E173764C933D18F25FDB16526AB /* UMReactNativeEventEmitter.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D2B610AE30090AFFD9BBDEDEF1E802 /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EE4D05DA2D8345EE7790161750FF38 /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8434817DF7DB6B629F1E9F0F61B96CBF /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 770471FC3A474BFDD86AE79038B839A3 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A6C91F2959D078E7D6060F10431C3E5 /* UMReactNativeEventEmitter.m */; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2315781F7CD76456E6007795F77ABC /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2D9814A90579824EBBFDB633BB165AC3 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE560EEF8A1CB47F4F99B57FAE6174E /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B102EAAB4D0FBD79C2C8B6A1F75831 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 26347F9EA70B7827CA27CB21148817BA /* REATransitionValues.m */; }; + 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1CE6E3724E76CA87B21FCF16692A6CC /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = D7F56A33A983244B08AECC4C4EEBDAAC /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3224500CF0F3FB09AC30951ED4C8EE14 /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 2E5DDB53500E43F9F5A51245136962A6 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5423FE419658ABF1C4299BB4D59D4F88 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8702444E910F691432A5D807F6E85DB1 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5979A1FEA57DFC724A635015F53D1860 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C17EAD202035E688B4B171F70E4195 /* SDAnimatedImage.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7AB37A4C9A9CD685B607A810B44352 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 559974B33C84BD097B301DF7D8404708 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1946593FF1D9E84793A440A468B2A8DD /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8298BAC346CB5AC0D7AC4552EFF754A8 /* EXAudioSessionManager.m */; }; - 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 73A1A47BA2AAE5E8122BE06317B1CF8B /* RCTProfileTrampoline-i386.S */; }; - 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E98FB986B1050EDE8F591208A677D9 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 8141097306C15C605D00A0BDEA23135F /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D751A822A49D4F471406EE2D233255E /* EXAudioSessionManager.m */; }; + 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 57EB8B51C0ACBDB44AFD9D3D36D858E1 /* RCTProfileTrampoline-i386.S */; }; + 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 169B70DFB43463F4A423B7467E996A60 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC0AD4A9E6F7A208407E5570B8E8EE1 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 109AC22229D7FE4FC59622872467FD09 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECB8F518E3152C17333DA9EC01844D0 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C8D38F7CD6C7A1F5D3C85CE2F0D181 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 598B021AE50CDB012A9AFF42DF032658 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F998A4B72485CE3C7114765011202B1 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2820A02A351356A0FFD7017542CFF65A /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3DFEFF8AB18EB244F07350AC46618F /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FB4E6CEC54F509D46FCEBE53DEA65A1 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F89E7F7223E6EE2A483ECECED9329B /* GULAppEnvironmentUtil.m */; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19A0371EDA218B45309ECCF1B5BC2AB4 /* RNCWebViewManager.m */; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A040E75C09052596DFD08A69E7D684A3 /* RNCWebViewManager.m */; }; 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = DDF8A6BC140C502062CFC253CD1CB371 /* SDWebImageDownloaderConfig.m */; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1518213D9F7823AF378BF59C0A4A8DF /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3008E5C197E529C941CA606774D1BEB9 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = A87B512D4AC3E8861D8E208D7977CFDD /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F136F4A0BF2386B15DAFCC1D67A2AAB0 /* RCTTextViewManager.m */; }; + 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 67925FC22407721697D6FED16443727F /* RCTTextViewManager.m */; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = F38814CB2CC48101D8965CF484BDB1C6 /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 050E27E3EE0CA10437F5D07EEEF18F99 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F565A0716A8A2504C090CBEAD20E1D /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C08D00A4D32EE9C330329164648195A /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3065F04E0401C33C4AC2E4E36A416605 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE70113AB1891B8700EF3061EA21E74 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54401F61C3357D1E96C80C18C4E2DED0 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -776,23 +779,23 @@ 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EF1554E3531643AC1338DA8F2FA7A6FD /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 95D930E8CF335BCB777CCE4419A7A5B9 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 314BEFBCD6A8C616A4589D1939461D15 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E1116AD4989C13E56247AB3EF0B0FA /* GULKeychainStorage.m */; }; - 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F1A04BA784448DEC961E7C30C4D18845 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E29109E6A7C3311A875A32A0F2C452 /* RNCSlider.m */; }; + 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E57CB5393938F05134054752FF3A5ACC /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 019221C7B171A8784728465F9FE50ABE /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4B9E8D6A2DDF29D5C5F6F40BA57D60F /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 319A95BB763E66FA343B43AB20D262F3 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CBE7F26DEF6EDEE75A2D06F79C5DC21 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC1E3AD3A3C7D5EF940D5A3C236CFF1 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 71265F598C7E83D4369BFDDC2E80304E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7848DEE31ADA7C35A64A67BAC27B14D6 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31F3C1F1C0E29CC26D3A6B81776FC9E1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 750FEC2522192194F49682A49D5C29D6 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = B376A4DB64A47998145400EB1CA0826C /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C3BACABD1DEE98808417FBA2514893 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD005D0F8167E89E726EC24D86EF397 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = E7107D2046052CD7A4AF313913FC9584 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 114720C62A8083FA6E1CAC4FDCB5AA47 /* RNForceTouchHandler.m */; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FD9D4DA6F7E2E53B3677395C1BA2F28 /* RNForceTouchHandler.m */; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3541D06EB8C59BDE0027D1E6341BC285 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 125C498FB2BFE1A4DDEFD3D0C53E71D2 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54BDD31F4BCD765222811E370F3F4CE8 /* EXVideoView.m */; }; - 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 4363F3255126FD5D35E83B598067BC60 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 760DD8DEC20023A36378BBBBF751F203 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = E04944B846FE8EC84AA406381ADE1C0A /* EXVideoView.m */; }; + 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = EF588114EB45D0C58E840F95E882905C /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D9D9D03BFCBCAD2A7339B4C6A86B467B /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E5A6C4B35F1E9A3742289D9C5D441F7 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E242EDC375AF5831097F51B852EB51A6 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 329D8DC4DF1F87F450F10F8695FAF36A /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 180BB68A3404C4AABAC8DB91377B1B66 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A725DD12977D66DE1D185F429EAD35 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 855DBEE3B15C3FE08EA26326134055C0 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5A918CEABBA94E7ADF5E0E0F4590B7C /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -803,89 +806,88 @@ 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = F50EDCAB794DF60CA055C1158F9F2FD0 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E061E500898E80FE2F24E34CCB6EBFE6 /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 337E0C9857B179E5EC97369CE3EAFB0F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D736667E4999E61DA48BC2CD9FD5C /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E5FC0EB2299670FBD2C634949EB2EC /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E755722461C854C58CF07583BB456258 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A42CBD5BC645142890154390C26E63 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D2D1A48C5247A0B54FA16DBF05D106B /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E427264B56A7CEB31CA0BF7DDE13B5BB /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1672F4FBDCDB899F8282004CD26D8164 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 338C33E4A2EB50C20A830E837384EED8 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D0EFC89B228A007FAAD0BBC50F4A310 /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F60F10980AAC342007E29131CC884E6 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = D5909B93C9C610D2749ECF8B8182B240 /* BugsnagErrorReportApiClient.m */; }; - 33CE9B0F1DD86596E16561ABB74768E6 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAB7BBA6B2EAFE4A03E8253AD541AAC /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C024CB1EEE85D32F026EB14C85AAAA /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 248C390820FCFC0AD4DC2D486FBF2E6B /* BSG_KSJSONCodecObjC.m */; }; - 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEE1539257DAA24137CF84BA756B2F3 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B84CA60CCBACB2094EC597E1D54171 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C01850FCE0DC70E3D118328348F262 /* BugsnagErrorReportApiClient.m */; }; + 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E8087BF3CD1AC8E9B10155B51E4636 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 086D2E21CD2C375481D131006EE2FA13 /* BSG_KSJSONCodecObjC.m */; }; + 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD27C318E641AEF3FEF91B013B97BEE /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB3A000770E89F8E15885543D6BA2CBD /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 409330992F3D3BF12E89545D9C524637 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE27740D59217F5C5C5DBE3AC02D64A0 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DEA3D9B5C8E4A8DE486F429B4D13D521 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = F89F92D9698B360DCDB85F764ADCF471 /* RNFetchBlobConst.m */; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = C92A4D9EF00891FC7DA6BA1F8703778C /* RNFirebaseAnalytics.m */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1ED5503A25804AC17F6D80724CA290 /* RNFetchBlobConst.m */; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 789BC1B4A708A2D8B704E3B951491BFC /* RNFirebaseAnalytics.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D02598A0900902A1CF01D1AE846AFDD /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A08D7DDCA509340F213D190D49CD7EAD /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4949D1467B88E537DAB04E4BBECF0830 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B1F88420B5770F50963F4972B2105D /* Yoga-dummy.m */; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B840ED032943756ABB8E10A0DB084CBE /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D07EC03A0A4F60605B5636E6D82BDA69 /* Yoga-dummy.m */; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = ACAC7108EA37ACF52A7DC94BAED1242B /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = A11D53345D3B620DEA2CDECBB877F258 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5F77C74FD6C937AC517FC100AC8913EA /* zh-Hans.lproj */; }; + 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0DCCBD85E6089FDD00DB6B0FC02A2A35 /* zh-Hans.lproj */; }; 35DDD6805DDD9E1BD962EFE1F8B3FDE1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = AD584385DF132AD660066524FD6C7DBE /* FBLPromise+Await.m */; }; 360DEDF4ABD8983B2E0C41923685FB55 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = F506EB52B1FEE22D69A75A5E5B317979 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 361A2F0A5202176F40E488F6D554E381 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E6B2F05DCEA24E835E98078C3E4C42 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C6B32E86597D164E92D87CF1F9DBBC /* UIImageView+WebCache.m */; }; 3645C6820057437CDBE24F59A3694F89 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 27FB570FDC9BAD136561E512D148BD88 /* FBLPromise+Catch.m */; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = B65C0FA6FE5F4F65EA69175719D35C80 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = DE419D5973B7551B6077FD66A45A82D3 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E5C1A08ABAADFAF8C3B9A3F8F5E8C5 /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = D16622E365F819469AFB29E1F0A2BBE5 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E227691798690C6BE6692621F1ACC5EC /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 36925435DBBCDF40101DF4DA0D176285 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4B8B5C2E23AD3CA3584BC627836DDD /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 41050FCF0778A13F7C853A6BE64BAA9C /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = ADA216A86E675AF295541A6639172074 /* RNBootSplash.m */; }; + 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 69057191801F0C641AB39F2B2D45F311 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4BB708C72F52907ACD07FE64B773D5 /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0965FFAA87384FB3EFC7139043049D /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B57D3294265E219668F64D7A40FC3DA /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 374D90D2D94D95FB6B3CD0907FC7E9DC /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = FC429F00E2DBFC7193540F246B0E6365 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D593C9AF6F9078D07746B21F87EDCC /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = BCE08215FEB482996BDC533DD5732EC9 /* SDWebImageIndicator.m */; }; 37454D1D4E48456581921A7287508CE1 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B73D281691D1D3BF67EC85499B788F /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE25BCA0D02084E2F1F55FDCE671098 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 79FFEE5AF9B5AA2CC0E521E993BF0299 /* BSG_KSCrashState.m */; }; + 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BE3635EEFB4A7DDF77DAF374D06EF6 /* BSG_KSCrashState.m */; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AC887141E35A329AE5DE15C7AB64B7E /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E29A53F4EC69F389C3F573D82C0D9A /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C5EF509288FDF5231D590D463F153A7E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 19ADD9F952E059D819C83F0167A49E7C /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5FA9017C33745EB9B935A35633FADD /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = B48188F0A471F30821CE698FBF7E9133 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C1F9D6EF27CEFC969B213B1F6DA6C1 /* UIButton+WebCache.m */; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6402C81734852C6895A864A7CA21C5 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 953453F81B33399A8EEA663B3ACE3F22 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDB4F771CE941B081304B03114DB50D /* EXFileSystem.m */; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 26F445F6D03A3A82E37268A22BAE1C95 /* EXFileSystem.m */; }; 38073539C1CF74A17AC81285509C60EA /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AF9E815C4396263953D3EBC91A3EBB /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381F3D7E2878B051D339526BFD2EE849 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F8068D1256D1B5ED47B12E0763EDB8 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 382D1B33DF592436E96A9505F8E9E725 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6EB4D43D4CE0873654D240C4D32BFC /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 30B93E1F6A28A2113ADF5C4963E92F75 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B204995C87BCE66C2F9E44926EC1E42B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52EA19B187157B29F6D3FBFFF458D18F /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFBAF76F2517CC481FBA77F96333C94 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 501FB7ABD2FF16391752851CE4688092 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 10948D14C4E7407ECEE6A3F05531E47B /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DEF4697C35F84407BB74729FC41F9B7B /* RNCAsyncStorage.m */; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86041AB3988B0BFA2E77B2DB32AF362A /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3903BECE2CB09D1D3A70A5824DE36B4F /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D363ABCB37DA623B13B7291B95128006 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B80F4933CEB39971843D1192358D422 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0BBA4F76E2DC81178258BFB7841B712 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 302D978B412665C395F56FFE0369AF17 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 419ED541E249724B97BD0D0933226484 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6599B27F5A6D52B23377F0CF4891290F /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 397BCE98217DEEB9A0A1DD81E3DE5389 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE83F13041CB58575BDAA697C2391857 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 397BCE98217DEEB9A0A1DD81E3DE5389 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = C90FC567524FA661866C611EA3773C32 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; 3999E05ED92EC4228CA26EB230DB43AC /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF8610EC5A6F59C3F89C83050AE6580 /* GDTCORTransport.m */; }; - 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = F667AC2D3D09DD438C19041E4272E121 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = FBD525F9951F719112FDE4F81AC9A678 /* RNFetchBlob.m */; }; + 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 0230A9B1EF23B78768AEC32DC03858BC /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEBC18A46494601D218BB6CFF822423 /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF2260DF2EE76044A040F7CDB9D71C1 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FBD593E74F1B8207D1D3986F9C57E7 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C01A812FB78D4ED8C9A4A20A5F17386 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BCEA20D9679960A873A33DAFFF74DA /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = C36F97D7D93D5B97F862D205C4603D0D /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D2807855DB1F9BEE53DE18F1E705AD /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F907ED2066512531D35AFF9606DE706 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D1B3F889FBAF209826646F25972B3E /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EBD396E277E6D7DD574B77821C8CCB /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29E37543C5ADBF976E44895AD6B574A2 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = D2CC1817740E6DFC947F082AC2AFACA4 /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF0923B395BB82C667BCA5BC7DC5E21 /* UMAppLoader-dummy.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = D19AEAB77CA49609892379D559CF1C5A /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F672DB4D92F66DE84FD03E7D200DE65 /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91A7D18C1595AEAD91301315D90BB800 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3A6B7B5EA8B4C74A3B3628907AF2C361 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E9632FB76AF581218D4D18086B48C4 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 730EDD9E1FC8A1388C7167F75A186D6D /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BC2F7696C4C7E09B59D4C3ADB56340D2 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3AF8B694617A74F8749ADBA3E1C57FB2 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CE861D402B237A53DD459BB593E2C81 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AFEBD8603F5475633372854B818713A /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 604F918E26DCE54BC4597CCF44A5589F /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3AFED154CE58A7877754321B3D5B17DB /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EC8E8F8B257145DBAEFE598A889D3C /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -894,159 +896,164 @@ 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE370EB5ACBFEDAC95A623C204E89B60 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3127D00DF32C10EF345C5A607BA2F0EB /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3B40FCB8E0BF9B46F95712AEF680A135 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B4A4767E25C7E05A7D2CAD7CD5270CE /* glog-dummy.m */; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = ED50360998A713927A9D76A7C9AD1258 /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = AB406EA6A821F2164139861136834116 /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B618CBAF356FE1C8D760FF63D6DD6812 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C7FF7F0A41C0A62CCD4081A769B7D1 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4B41CDA8779639320AC3BC88A739BA /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D51A595C752C87ADD691D3A6411EA0 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B88C46013ACB4DFEA5D4244B205A3C41 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA0F3CBB6D7743D677C5BE964F67CD7 /* FIRAnalyticsConfiguration.m */; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5048E399774757D1D19822C71300239E /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FED0C26864204D28F9566CE99D8F3406 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 562584E82F2BA44F023797AC4AEF56C4 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA846683603BFF27115ED2F9AA693B3 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = D66DFEAA4B35B13F8EB0D273776197F9 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 3866A25D361D738C3C4146B8EEECEC71 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C008A80723631991A60FE5E10F7628 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 456318FB0B8675792A19156602488932 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = A6718C4C72542DF368C21A46B50D9DA5 /* BSG_KSCrashSentry.c */; }; + 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D4D955BD35DCD869F66D0B9054109D3 /* BSG_KSCrashSentry.c */; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AFB9EF0F7EC114EBB0227EE16AF9BE /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 8850B2D087A164CD76E6AB7EB464E572 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B55EEE00637AB2BB164C5B985CAE324 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB130C9164156FE7274E191816FBF3B /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DBFB6FC23DD895FC46ACA29C74B980 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9540A2D9667B50079020C6B62A09F05B /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 33DDA7B76998A58E33B738D9F35141B1 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6BDE235AC6D6B65B136696A1278875 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 26FA8683647426F62DBA9EF6375C2573 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C4E24A310EEFBA07294381C4AE6E302 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C496112AB5D4B2E1ABBB90DB4AB235E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = FFCF1286995BA59CE4B88776CFA9CF5A /* RNNotificationParser.m */; }; - 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 893DE73C522ACCA3827A6DD88EEB84C0 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B260C54E830F6E4E7F93F1EB1025642 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C69E3FF7D00E712ADC55D418F69C916 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C68614C14BDA7E46DCF9BB1270D5937 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FE4B0A71FFF0E6C533997C0590F4B4 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 26BFB0467BB9E53213E8BCEDE7E73CD1 /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 076DABD1E77AED8A0B388AFE75D74F9D /* RNNotificationParser.m */; }; + 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00CBC60CA92F11200494D717671FEDDB /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 633A906CE55E133E541EECD104AA1625 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 807D0468E3C3AA6AE839A3E3EB4A86AA /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C68614C14BDA7E46DCF9BB1270D5937 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBB8B36DA44725BA3658B8988038B04 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A38F9408FEA21E580CAEB9C2D22CB895 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4914C39A474FEA542A599FA1359394 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B241AA9D04AEF43CDC2F805CE7DCE3 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9730B90DF9CBFC3873545D88B5EA10 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF1D6AF8629BAB66F153FAF672DB8D6 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3425EA6F10A8D06F7055B161E70740CF /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A4A381355DC64EAB844B04A5BA6970 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F486AF3EF93E58CBFFF2F7DE1D4870F4 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C961736240DE8782C3CEB40773DC64 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD9657B5CDE67AE647DA7FC86A341A7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 097D3E2988DF59797BFB5B084495142D /* RSKTouchView.m */; }; 3CE9795118C3E5792C3D682BCDC67671 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540F25F5C89E7F63205430278E6B3C42 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3D28C702086FF74739928D70196FA81D /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 508E3344833774F5D374394A9E2D6D68 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FC6C17D33789636AF3270BA5FAF23E /* RCTKeyCommandsManager.m */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D2C92F5996698B3543761A1E4CB038 /* UMModuleRegistry.m */; }; - 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 363D688DA87AE4DEBF94D3FE2907EE02 /* React-RCTImage-dummy.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD707FAB446B9FD7708C85ADB7EEE19 /* RCTKeyCommandsManager.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D947ED0FFEF4F648CED33D72400571E /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7736E765A07A194B46126DE3DA84CACE /* RNCSafeAreaViewMode.m */; }; + 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF7D4167A48ECE14628804DB78D760E /* React-RCTImage-dummy.m */; }; 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 43732A94F78C75F675A29E3EF54DD945 /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B49A5CA9B65652F90ECE77BE649EB704 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 23BE60BE79A13A031B7B515290AF3DEB /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 976108395F5BF08ECF1B472A86D069EF /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 53D1D015FAA87C1F89DCFE418908A9FD /* NativeExpressComponent.m */; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E79C9C256AF6B3FA26D8859642FD8E2 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F137720240DA2F405C2B3E33C02EAB7 /* NativeExpressComponent.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = F885840BD15DE323B145CA94BB4F6B67 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E5F4AA9BC4B59F72BBCB8B243D8AA76 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 689EADB3E0A7641AC1A34081430CEBCE /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D05F90C02C4C146D38A1263DD93B325 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 43198AA2A2C1F738A912581A6215A2C2 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 86142F493DDE680A50CF9D3BC242BEA1 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FF7FD7528AEF1B48986584185A487A /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 839A67A9ABC1ECD7C2ABFF8F45C0ED40 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD6B475F506A117D93185B7968288B5 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 433622B6D6E6EA72C4501936123F1D6A /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EE1BBD1D425E3C37DDB027A7AA79791 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = C5159A4213843DB8A8585B6B10AD39D2 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F68779B9EFBFA5B435E339716B3EFC5 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D610CC92CA12331CC2CE9B30968B59E /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E80F9E4B9F1E0CD1D7E847EECA4E1E40 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A2DEE319766A8749B0B5CFA95F0B5E /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C5C1C3B3F9691C527AE26DB0182F75 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E875E5D8F30242B23D7B7AFD926CE3D /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F0795B53F3F7136750F1F4752176FD /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D90EADE13FE1E34BD47BE0C21C5EB80 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F92210457EDD0ACA1619BAFE752413F /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB0F4F98997582A5EC1D8A33181BE067 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3F93027B044BA4ABF4D115764CB29244 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF9EA4FE7261AD88C6508FF0BA7DC190 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3F9348227893EA6B31E31FD5F58CEA7F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = A3CC1960619FE028FB7D20D56AC1819D /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3C201CBA9DD4D3768A730BE5C94681 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 067D46A826FD4774A6ED6EC1D61863D0 /* UMModuleRegistryHolderReactModule.m */; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B3F54749A87CE4A5D8040256402A95 /* UMModuleRegistryHolderReactModule.m */; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5B9ECF7C0213402392EDEA2A5E6BDF /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A7B482B2EDA7BF7FCAF15DFB04DE80B /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40012AF9A094885E9B287E998C5F218C /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = A086110668900BFCCD33139690B5B7F3 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BECAE76A3B465BA23A1C66051C5F853 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CAA07C9FAE1CBC5F8CED9BE1DAA8808 /* BugsnagReactNative-dummy.m */; }; + 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D8121F726CDAE6ADCD01AAC8172BAA9 /* BugsnagReactNative-dummy.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69D6226D851FB99D77632AE7B571420A /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = FACAB515A9E0BC51A4C6B8B8159EE2F5 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4055AAFEDDE879890C0A9470247141DF /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9D4CCE27BAFB6DDCB41CBAB00A7C0D /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9EB56BF7B71436C19576C6ECAB7DBA /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4A21FD613E3CD8508D15E894998478A /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE9E3426A9471A947A2DE6F39932D8F /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 70061EAFA4A32A9FB6554029E9BBFBE1 /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 8426E0809BE8286029A688A5BC03C254 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E360366BF27FDA8105101E74F33F934 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BCFE0872A1AE3E60EB9F2929A0CB8D /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = B40930E9744DF8E998CB3411B59C0FF3 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE540B0639E42FA08FF08C3E0FD9BF5 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1492AF4560D763A11F95C42DB674A29E /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 40A23638886D0871919E8248E4E765E0 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7973F5964A02BF972030B48325357E4F /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D39C1ADDBE7C4E3812E0AE674209FBB8 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E434EC2FB629FBB95FFA4D9637BFFBC6 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 40C5F7BC48B53F2B5C4EF3B60F4C21B6 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F86FED6A4F58E1E8D6AE7AE417A1718 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CCFC9A0010B28776BA6E3D13C6B6E89 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1CB7104EC36C7D721043229510EFF /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 40CF73FCDA240596DC19AA28D4083E53 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D401696460DC234C4D3BC0A6A16DA8C /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 827552D6A3A46085C0AF955B74724589 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CE1F0F6B0DAC9A7AF9B7AA5F60C3FCCA /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 40CF73FCDA240596DC19AA28D4083E53 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = AE9645B6A346D32DFC512DE5ACE3F419 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 268E537109136434EE2FF5DFF465541C /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40ED423DFB93BE77EF57A2C13318964E /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB988AF47DDAFFB88712AC01ADC2D8 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = D627FC3A36A65F2A9BF801553C386C8A /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A09F5693FCBF0E75179043D265B44BF /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B64C61FBE22440787B42BDCA2FBA23 /* EXConstants-dummy.m */; }; - 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 18077DE12EEB948837CCA17BAEE0D115 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EF651BF797D77457B649715E63526E00 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6589B4CFEA7DB445518B81CCEA6184 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A88369EA1BA308AADC69E71FC52944A5 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1F33BCFDCCC075AA536A7B3EA7B04F /* EXConstants-dummy.m */; }; + 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 93F4EB0ABAEF7024B00B36EB5E3A629B /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF64CC66CF7F5FF11173BDC12E514A54 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E397BE7F402417B1ED72709AB86BF0 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42153C09FC24FE15AD327A468CF1700B /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E68F8DDA9D284449FE4EA765590F3D /* GDTCORPlatform.m */; }; - 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A81ED96AF7133ACD2DFDF9C9433C37 /* BugsnagCollections.m */; }; - 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2E4C12A402ED62394D590463CEF58D /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6FCF94C80C1D5782D49CE8FF488110 /* BugsnagCollections.m */; }; + 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F851C04DBFE8CA57312A9FF7D4AD29B8 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC63A93A6E7140E3290A8F899E63F0F /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 126042AC158442964596E9906F817DF5 /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = D77C8FDBD8C98A9B0CD979D89DE2145B /* RNNotificationCenterMulticast.m */; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 735297AC68B26100B5A9CDFE7D2204D3 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B90463474E1454D60D3BDA3C4699CB69 /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 755098AE1D1B51F73FA9D687E6F48A81 /* RNNotificationCenterMulticast.m */; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D058CA8909B39B41CBDE50B374B7BEE /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF83013A1711096B536E31351B50797 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FA335B90F2FA11F4F3680BECA99C737 /* RCTView+SafeAreaCompat.m */; }; 42C3C38FC0F225C773DA5A837CFD8196 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 478B71F6F87C9F9BA4F0B8BF8CAB0621 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C18966B17EABF5EE73C6D4828A293FC5 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 468376E377086F72089C0879AD2F764F /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42D6D2B79FF8FC8F0FFEC2AC126ACC37 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B69D88565423B3C09FDE136BF8C5B66 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE529DB2A0C5D64AD0F79B6CEE37A44 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5C6074F0DB669A0756E635E550B3B1 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 431778336B1ACE03A58ACD10E0BDAC1D /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 12179522A08FFAFDA91630E0E2B476CC /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 64A7ACF5EA2DC554B6551D507DF09BA1 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 565B3AB90D3B33DFB09E81B36CFECE06 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 451695E95BEB3B65629C4D2E02D043AD /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C48F897B5BA1914E197F527232FA527 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3334E27A81D92C38902F3EF06E65C508 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7190B98479467AC89F1225BBA3158917 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B07187600368D19AB68107BB7E39DED /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 436A6BFE7B20D2A6B3F135835E3530F5 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = B21E31C8653B3F3ACA24962099B2B330 /* cct.nanopb.c */; }; 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = AF245F65561B9AEF79DAAA1575BBEABC /* SDWebImageDownloaderResponseModifier.m */; }; 4395F7FF43E68CA106DE3C9C9EE8EB6A /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B4837B8DBEAF4CB10666E81FD53885D /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1094E1D52DB502F9DFF547244DF3E0 /* SDWebImageTransition.m */; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 99EB79250CAFBE831DD800AC96C545FA /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EF0ACF7318680C3D44E958FA684B972 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 43FF764C9A571CDCDC54C22C16462EB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B1CA8C2D400559E299CF2BA94A19268 /* RCTInputAccessoryViewContent.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B0804DDA19990B55B19859CB56F43267 /* RNBootSplash-dummy.m */; }; + 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A3F3B67C53BA4E6624587FB504709E /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43FF764C9A571CDCDC54C22C16462EB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 064B454F7BC2B101368FF9057395ACE5 /* RCTInputAccessoryViewContent.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8722295C25B3943AF10E50B691C16D55 /* RNBootSplash-dummy.m */; }; 4409E6512D39E11B09F0A04BAEE9A0EC /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A91653C144A67CF27BF3BD101E38506 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85E39C4D756AD3813BDE4F2E6F37FEC8 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 44497A704D0C992E58AFCC35D072B3A1 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6A17F744A234DBBCFEF2BF3E73F956 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 444F98C1E4DD386225533E8C80FBA788 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD8000385E0B18CACE3190FC574A7C3 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 260818DEDE2BCFEDCEAF97E551C02FB0 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D103280379F139280B1760C31B0B51 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B53679E1F1A2D3957C5AA499F38D05 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 43569936956F579DDE780457A99DF58F /* RNFirebaseCrashlytics.m */; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E7D4E693B09406B129387AF3530146 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1D4A55EA9BEA7C6F854E7A48AA4BE6 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F91FBD8C02402B3464620BBA5223D9D /* RNFirebaseCrashlytics.m */; }; 44DEAD0A33C7D76B606E996CF39F0A81 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = F0574453A93A0711AB29EE7CDFFB0BEE /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C23AAA3ACA5A3651F5838320939F2A /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DA22F428291426C74C1FB9D997E8AC /* RNFirebaseRemoteConfig.m */; }; - 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AE2BC1D2DCEB0F8F2A47F3D7F10F2C /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 947DC1D9D5F537AC8ADD1652D178F627 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A6492D18FCBF482B6DBECD94BCFE3721 /* RNFirebaseRemoteConfig.m */; }; + 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F05A51C7F86B2D2B14B62F6F1248FC /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 458213474465102B117267E9161B7363 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A037A46EF17388BD951F5073AAA0CF /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DBA39AABE42FF88D5DF1E88BEBD3575 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C6DB336E61CE73B46E0B14D8395C228 /* ARTRenderableManager.m */; }; - 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB3F5F0FB4F5504EA197220EF0E89A5 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BAFBBE57DAE334A1168DBD0F4E64ACB /* ARTRenderableManager.m */; }; + 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 9934CD4A1C48A1C1391DA60625F6E769 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B314E38EF1834612C35C527E15D00B3B /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D96E80E0B8C87F6390DA8CB6B41F85C0 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1DAD175A268826B15CB5D378F14B34 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = E63199558C4A6FD2AC4B36A19B0751C6 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 90391A5AE4407FE1CB8B1C8683025E53 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA2A6EC73EE326023BEECFD3CA14B23 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2963D7695879E13F81FD71BE68242A99 /* RNCSliderManager.m */; }; - 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F231D7CA282303549AA44A7AD81A60 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7F8C9696E0DC4FEDE9AF7CDDAFAA37 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 96B9B8CD197067EDE176D4D55AB7C171 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46C30CCC695ECBE006BD20B5B0B5569E /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F00F28BA9A6B4D31407EB9B4FA91743 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B046608AA8A7D8A59531002F3211BE4C /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9E4ED8267D8374BA9BFC9B190F5982 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF19FC14AA6BAF3B58FBF8FF15C1F3C /* RNCSliderManager.m */; }; + 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0556DB0C37E1FB6783E6ADB0D5A4AF0F /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46C30CCC695ECBE006BD20B5B0B5569E /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CAADB612BE02D149D127DC9EDBD247F /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E749EFFD4D169830F385E39E74FEEAE2 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 46F677887FF3768DDC04707CD0DDE1A1 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D25A04C7AECFBB3914686C7377373D8 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 46FF233827FD9F59855A0707AD6320FE /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1385A1BC08D636A83049E80BA675A8 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 51FA1E11B631E141216E9525FC620226 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9D3EBF1958D478F2E1A4516BF26487 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8E65D4CAF118B5E5E0C783A74FE67AF /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 92303CFE59349CD41F2BC8F4FBC5E555 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EACEDE1384944AD4FE47AD6D5F548BC2 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ACF4DAE836F3A6D95CFD47CA16B8438 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 47590AEF8918372FE41C5480D9091E6D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DA260ADC6E41432919E15F5F76D429 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4777554C153B236B131B65B82D265D9B /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5962EE39CB504F050E47855D7409C9 /* GDTCORLifecycle.m */; }; - 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E128E50F8F17712E6D31986A49F70B7 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB473145F59E8DC9380B2AB5CC8F00E8 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A6E5DF69708A9B554DB9510EA2B78C /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = C458CD06CE7469FC32F205CDA8F81E86 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47B66FF514DE8F14DA8B915436661C1A /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAC7A2D66B155F138335B0C2F002778 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5A257EA1403422F1C7049818917BCB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A250758E44F4A5F1DCD80E124D73D269 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFA8D39408945A8A01CD6A4CB446A71 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47FD2A663D13ED9D779AB1B4A7D517BE /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CF24201B2DC334D3A02990C1D0DD5 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; @@ -1055,105 +1062,105 @@ 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 86722D3FADF92702FC6ED523BCA655A6 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3C161BE83097E80AB9684DB3F8A1CA /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = CF32217F64402E516166B0907FBF62A3 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DA7436B67D3250B60725838F5FBD34 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CA9C1814EF70798E8818D6752EFD1D /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C3FBEC0791669A99849D0E5D8DF61D /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8791F28043B93FB45126A4FF1B18FD25 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 448A21A3CB44AC4AD2A39C5D90D61041 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 48E8DF65D2A2A6278FF46469CF948058 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 323E1B424291F692103EBDFD456C1BDB /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D22FD21AD985123581E35E174568B3C3 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 930A91478BCD1BC247D48A71AEA9B47E /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 489D5376AA4DD9E40E97D572C797336D /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B623689BA218C0D34E963D0C41B7614 /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA9389FB996FEF7B5314F042E0E1CF5 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FEFB251B624E2112058C5823DFFBCA /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D45484A1A289F44F405566817D9650B /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 447D548BC3C3A6985F7B1265A736866A /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EF474563AFA5D4DE1AE9D6DEAFC3ED60 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 33F64DDC7E68F08CA71D263DC0CC3E0F /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 497A593D49008335CA1284AF1B2D3CF5 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD3823CD61B5AEB828827F65D3489AA /* FIRInstallationsStore.m */; }; - 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A82505936A2D23D9769DF34C052ED237 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89C4B3B2CD1FDE56C69D142F03EE0104 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4994983DAB79F82CB6C7B3FAE8EE090F /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C43F2BECBC7AEC25B056DD35507702 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 600F83F094161DCB11ACBA732FCFE8D1 /* BSG_KSCrashCallCompletion.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = F423EC0AA39FB85AE48D72DC71581328 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8CD460A73D71C2D3A8E0E8F814D554 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = CED37D403F851EC64D48C2E6D7D32431 /* BSG_KSCrashCallCompletion.m */; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A997A07823FE6EF7EDD39E9C0C2A47D /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A866209B909FF7DE356B121586DBA3 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B75933D9F226520F1F63AFDAB49BCACD /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DC94DF939D00DCC47B1425D23467FA8 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = DFF7E0542F67966D0ACA72175B3A1631 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D0F14DC3B4D4C2B13E841FB85EF27D /* ReactNativeART-dummy.m */; }; + 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1068F3228D5C1F21249353FD5E724FEB /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 77AE3AE043D8C08417145BCCF53E4AF7 /* ReactNativeART-dummy.m */; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC2B283A2DE4C0ACBBC43E233D77211 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316D9D195CF9A8195A75DC78F7F59054 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D80FFB92D10F9784F71385DFC77486 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E60F5AF0B10402EF09199C76684B61C /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED497064532BFAA36428BAFCC9D5222 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4A2CB3037F6044AC27BBEF315D60B6EE /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA21966982863F1E4BE6BA0228D6EBA /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A719D312510D21AFB33E68F642D3F3D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC4D1460171F9A658F53ED094D81A76 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E79F14C3EE107BE312CCCF91A81F721 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A9E51410AB7F4702A0ADFB8E6F9F78 /* UMUtilities.m */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04DE0F5DFBD03C92CCB6615F8DFEC826 /* UMReactFontManager.m */; }; + 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A581FCB78821DDAE95B2AE064BE4DC45 /* UMUtilities.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C838B404B5EE29521B38A7BF640B0404 /* UMReactFontManager.m */; }; 4AC690953B74C886E5FF8BD390838079 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 584322C35BFF6658B17DED225C26017F /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = B23BFDF777ECA6B492FBFCCC327F4F1C /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EB4975C32273C8AEBFDF1B620302B /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4AE716C8CE1833E6A3314B910C450EB8 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 51D1146DC010B29D45DD7B30147F197D /* FIRInstallationsIDController.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1162C1C64BD3A09ED355FA5A7FF82675 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5978EB2DC09C2C72478F6CEEE0A63978 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7BA6DC44642EC93751E8EECF4885B0 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C50C28D47E880EE339D1AD7E061DBE06 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7393C885084D8F55B3DBAFF57F2E73DC /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB12A2E1F939241D1FA0AB0F1938E54D /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07B3A957AE8A7C65C2F2CCA813376074 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4B925B231DD0F1A4DEE0367814E32490 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9053FD1709D958D2E1AE9D3B1D2F23DE /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = AA05F8B4E8AC7C72A5E0CDFAB837D591 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1F45606A44AE7B7A4C42703FF656DD /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CBC436729E799D26DDB52165F35F291E /* QBAlbumCell.m */; }; - 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB31A9382EFF429B7FA98835F28AB2D /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0E64F4AAA4A94A1DE99FECB9C06F10 /* BugsnagMetaData.m */; }; - 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 409936061B878BB235E455401E15076C /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 524B0B734499A06C5A775B80572E1787 /* QBAlbumCell.m */; }; + 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B776AC9D8D0E04A5414B78438D7776EC /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E5B2EF96696FDE275E71309F9EABDF1 /* BugsnagMetaData.m */; }; + 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7ECFA1E2EB82E596204EF9FF6C56B /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4C6BCEBBFC73C8EB1DC1C131213E7A3F /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A26B7FE8F3E31AE5EBCBEE81AC1F36 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2EB69DCBE1E28DC0760CF7E6D5841F /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 338B456FE987876072B45A158A31614D /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D83206DC060F28F18F0E6AA7B1780E78 /* RNAudio-dummy.m */; }; + 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E07C03A34E87743AE4F9B6459A323F /* RNAudio-dummy.m */; }; 4CAEF5061BEBF77B81CBB7A5C4D10871 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8E497FD43BA1211D4BD7FD47B9A336E /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 4CB17CB8D126B3C0756BD759ED594ED0 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 90264320EB1595B97152D9270C22C7E4 /* FBLPromise+Testing.m */; }; 4CB1C4E683C40915621BBD422C570224 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C9A2A36721E59FF629EF87DAB54EEB /* GULNetwork.m */; }; 4CC8A1271887F77848976D93CA74D44F /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 19348691A9A945AE17613DC4F04A5C7A /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF3D08C153169A8C9C45051D909163E /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 072CA5F994B8A58A9BBB07C0BBD5B224 /* FIRInstallationsAuthTokenResult.m */; }; - 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCB72C959DB390BB52DBF99270459F7 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = CB80C19A0EF31918F5D4A1464B8086AB /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 964E855C86A7524F0F46E0876FCDE512 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4D1758AD30A72983B7EF76D5EC538BE1 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F49413F09637EA47A7233B402ECD3E64 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4B781294FCC5535E344853261D102B /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C61B48928ACB47767C42DC8802C61C /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = E00F29323FDC2221DEC6688F99664369 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4D1758AD30A72983B7EF76D5EC538BE1 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E32701A5312FF5486D49E353569C4571 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4D26D41DC25595A9DDC19434692363C2 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = C82B5680A163C64780EE09E382D7EEDC /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 04893AF65324DB5A2A67812211344EDE /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75CF2E8B87594CB234E3D95A5412993F /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4D70DE57BE4ED28E7AC93C9C849F11C6 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C52DE7E72F7FC1E4F8A5714111A66A7B /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B62A452B7E919C6AB870A78E1B814A /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CBF7A83273715C89C82A3417CE1547 /* RNFirebaseAuth.m */; }; + 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBB7A0A0D3341A8729B9F3D14F53598 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D4945E36B5CAC10D6AAB064790C2915 /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E9D40AEF01605DA865536802BF2E39A /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EA295EE5938B4F0CC4EB765C948426F1 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = FFBC35E1ED44B95269A947A8B931A5EF /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 546950BF37FA3C1CC3E6F29E4B25EB69 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B46344955C5783FCE009877CFDE98E /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E33F6F25B1A319CD98E7EED0364DC1E1 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 60223630A540490757C88CD4BC763CE9 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = DCABDEB1ECA6AB1D95D2A6CB9ADD5C59 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3986572B3729A0FDF958E4A2C8282E /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B43B1EA24ED075AF55FCD69F05A2398 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = D5CB6C46BBD1F37F88EABC0C4C46944A /* SDAnimatedImageRep.m */; }; - 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 640F365C9C39E33F7051B6B2E8AABF04 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 53F28D711125B13F67868E8FBB13CAD2 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC1F50667604BD0C2E526395F6B6D9C5 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 54C30ED4D431E2395CC82CD4339BF167 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A19CCD10A9ECB726B21E9055C91C72D /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 324706CA72283709C6953C448166A9A9 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4EFF0DEF429EF816734CCDE018C3C798 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C2992A91BCC973E8283FE16D351969 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7AB54913C5AF527335DF4F9928AE3D1 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E768CA53FC3FA5B928616085BEF59017 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 35690D5F90F8D260BD6751FC9BBF609F /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA974287358097962979FFDDC7817C5 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE66F7C9D1EFDB9D680C84B0EAD5B43 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4F35BE496C429404C93CB58D411B41CE /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBE330116BEC39FE12C95547DF2AC8EE /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B0ED604DEFCA10B70AAE7638FD72F9 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 4F35BE496C429404C93CB58D411B41CE /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 755B72D5DA9A44B53932D49C7E48A722 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B904F014D6238EC720700454F027CBFD /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = D1CF038018D7847B9749049E0B48F3F3 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B75DA3423AA1866F8885F8B7BD7956A /* LNAnimator.m */; }; - 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C450CDA1AA79A853FEF8AEDEDFB2C6B /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 59003C4A59E895A5DBB5AAA617BA5E72 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 92ABE419FEEB48FA487D1284AECC6013 /* REAModule.m */; }; + 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = F61E79DC7918C604DB071008644B48B7 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = A815042718BB3946437B56DA39AB42D0 /* LNAnimator.m */; }; + 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F20F742C54B26F631F05038C9BA9BA /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1107DC0C92960D72614B9190759FC3 /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE8D35F978E4154DF11ED0D43CB1DFA /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E869A8A07CB6426933833FFF38AF4642 /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2795DA0AB50B806E3127BDEB66A5A180 /* react-native-appearance-dummy.m */; }; 4FC8CA3267CA7D49DF58E08780AA5E19 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 175BC051753C8BD307256C20A8258DDA /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 274F250FE65F56868C40E5E70B546957 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = DA53E99E39A52A1D12AEF184AC924485 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5024C25DD7F09BF4D3A7BEB004B435AC /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61D33EC39F8A38E08EF5019D147D8062 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5026E819E515397DE9820BDB18B436A5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C1A66F01155C20DD7129BC50B2AAE7 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = A739C184D93C5F304556D604643C8A5A /* RNLocalize.m */; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFF29797236B9BD03A6BA3CBA108FEE3 /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F2F83421140FB0FBCE7718EEB0CFE1 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 19C43E2021D34953E63B6DF7BD3DCB2B /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5024C25DD7F09BF4D3A7BEB004B435AC /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93E5D3FA51D92B2EE1178BCAABA6F671 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5026E819E515397DE9820BDB18B436A5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C8A5F2C9FFF91B5BC14FCABE9FBD6CA /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEC4E9A82D86777153BD8C0B53B45AF /* RNLocalize.m */; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 990D1CEEE097DFC53048ADB570956DD0 /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34A05F256E0E3B229BB0FAB0D94BC1BE /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5051BDE8EFA401DF6FD5ADE291764FC5 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE0808E6D7B2D5F36AB820D667123B0 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50664A61C6B66321C8A72CDF41E11E9A /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7686E187EEAA0F481071907602EBA76C /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A57FCF27A46E1F4C2BE0BE2908E578 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3FAF17769AA4C5BD3A3A08446A8239 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB75D0BE9B54EC660470AC8F46C55481 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5092A162D4642D2B110D42FBEBCF9B0A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD75300993BE4ECE8B98C96FD181608 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 904AA330BDBFF96A1272D93B6B61F5B3 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1162,257 +1169,260 @@ 5100CA33F67C8D850C5539A42A0DF5CB /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B982CB5D09778C5F6636849E66196CA /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAD59C64C4A25E07742F178A059CEA4 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 113EB030A8219A64AD3B0B9C25AA5B73 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C681060B85079E15C3C919754D2182A /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DC58CFD685B9D5EB1D708DC0020EE5 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 511B9697DC4125DDCE1ED1466EFA5631 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF37905FE0BADE6A1B4A72A16BAD45D /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D42CAE2EF157C716C678EEAE4EBE252A /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 25AA79157C4CDF8239CC3B7D64E6E39B /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF1748AFE5AC4DDAC49DE337A96BBA0 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7284DD10BA2F5B0711D6D13E2242EB83 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7846EA11F2BE8C2BABF022D2B01ABAFA /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C8C861B96FF98541E71324A1572405 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C155F0FF36BE9E97E842352F2207414 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51CCFDC44D74CAD6022C9ACB512AEDE7 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC4F58B0DE2BB4762E39FC0B88447AC /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 975457E6A4D4F140B9825F36E552F991 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB51F09C00EC67FF83319D325DDF2EDE /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5231B412D56370F141E350799CAF6C74 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C615B6E53E792D8EFA33542679BDCF /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 98A7924D187BCA7F8C3BBAD80213237A /* React-RCTSettings-dummy.m */; }; + 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = F88FEF53D9ACBC842772E7378CDD10A7 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5231B412D56370F141E350799CAF6C74 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E38FE81BDDD5BD672BD3F564F64D524C /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C051B36684AD35D3B9E0855DC0B533 /* React-RCTSettings-dummy.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC541260A450E879BF1EAC2256B1206 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5860181AF8CBDC4D25825FD085F35C71 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E79F14C3EE107BE312CCCF91A81F721 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 621281BA3ACA98DDEE4378BC990EEF36 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 52F8EE02DD0245981843DFB67ECCC7CB /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 6103A99149FC9381E854472556E91AC6 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A2086E1649020F78866E0A42A03870 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A65D79B71FF304B26CC65AE91E72C73 /* UIImage+Metadata.m */; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = F885E69F1E8761274FACF99C1D5537EF /* RNFirebaseFirestoreDocumentReference.m */; }; - 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EF69FB30EF68D78CA22E99122BB98100 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F227FBBDB7B39C62D537ED80137800 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A4D47E197DC0F3E2DBF3C4445BF0A1AC /* RNFirebaseFirestoreDocumentReference.m */; }; + 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EDD44CAE1181AC6836BA7E115466AF2C /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 72D80AB440DC034942A6E7653C1A9787 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 533F5B5A43499AF92AB8DBF7CC1CF84B /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 564F7C149A5455FCF310C4282FE2FF50 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26EDBBF1C83F104184FB5A4306FEB25B /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F7D27CBCB40E8F77D9ABC84E89A8B7 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5354A7D0794A6F677891E95C6D801AEA /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 41983F8D589C341916296E9E572A32A2 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 880668C762EDC9AD36BB9C499C39773E /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 14DF957F3F59BBE5E5147FD3AECAE7C6 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 378045A1235160477787871E19B23164 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D89037B0C626964E3489D4E4FBC103 /* UIImage+ExtendedCacheData.m */; }; - 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C5393A9EBBA821A9367B0C5547C3AE4F /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8BCC9C723065E000C2A4D4A913777F /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 54073EE40BD9B4238AEBF5770EFAB89A /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 0834F0341D9CEFA17C2604FD8D11623E /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F41F2E73620722F9FE126D608E1D6ED /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 542F7BE5B54B4B65BA1AF476278AC639 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A154AAB79A96C5D3BFAEE70156CBCF0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE133DAB6AB24FE3E3623D5C81ECEC4 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 0276A5984EF410A04E45C39777BA08FC /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA20CCB46DCC333665BD15C89A69BB2 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 542F7BE5B54B4B65BA1AF476278AC639 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = F24DF451B924756AB9891D0AE05E825D /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D63AF2B14E3601110E5B672A7F1379D /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54E5365217AC5AA2FA378CAB9BCE9A8F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = B416B5CA7CCB6B57D7B8BAD721E0C1DF /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = F815DF55B9BB388F5C7D1D9B638219C3 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7204FDCF5AD47F53957D0A7F12871600 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3032FCA0F6D3E8D3588E8A516758E5EF /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC95B708D8BF834D9658FBE9EDD9B44A /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4E2491E6072C585024D9959A1732177 /* React-RCTVibration-dummy.m */; }; + 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E45A58CC7E74042249B75831FE86A803 /* React-RCTVibration-dummy.m */; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCC1A32A733912BC4AECBC8316FCC6A /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 375728919619FF75FA66E1EFF31EA0CF /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8A7F71CEA3113495178C52D7AB8F9A /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = E05397F190C4A904C94F91A5F3A37436 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B12493A03802D21108150EA1D338747A /* React-RCTLinking-dummy.m */; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A1D6AF6DB4FEDD98B983F99933FB44AF /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = BF23D26AA25EEC70A3E23E9191AEF7C8 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAD16F1C76B70E914D9B8ED5A9E49AF /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59138562FB292D9BF6D6DCF80210A029 /* React-RCTLinking-dummy.m */; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 46427E3D983747630117EDCE331946B1 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444BA0CBD91918EB6F172BC4A1FDF2BB /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = F147D77D758F4964688AFF951D9018D2 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5612114F7BCB79AA3F479A734A45EA4B /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A2F25028AF5BC0BEFB17EC66F786A67 /* GULSecureCoding.m */; }; - 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD94E9556EC100BE7CCF99B396C37DC5 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2395C55DF2741069950E865FC9E46A8F /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 562C0F7D5848679FC0309F931D51507A /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B5C72529406EE9732D26B824356D9F /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B912757EDE4CD245B6F841ED3028A0D /* BSG_KSJSONCodec.c */; }; + 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 86882A8B995EB53F1E9734757EBF13B7 /* BSG_KSJSONCodec.c */; }; 56B0D7D9EADAA177FA3FE61F14F407D6 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5565D0B0219F47A21C7CC94B6B3C3CD2 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56BC2A3E8DC876F371CF9E50660BBDF9 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = B0BB61794B6CCF1BC51DC9D0D706CAD9 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 543DE3054E91774E4423D77DBBE6BD17 /* UIImage+GIF.m */; }; - 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1B4DA7525B57D92E6D3A7F25DC90B6 /* RCTMultilineTextInputViewManager.m */; }; - 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D029270B92D120097A75C1B3664475B /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 572B11BB8CFECDBAE9F04DA95FA0D576 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 156372D4A148699B71680BBE13F43503 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4201BE87D92B9946897F0B9935126CF7 /* RCTMultilineTextInputViewManager.m */; }; + 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6602B30C16434EE37FC3C9EF28A5CFC4 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 572B11BB8CFECDBAE9F04DA95FA0D576 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0390D837DA5045FC965D96C06FEA2E00 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 572EFBA1CE95B80BC7B2B0A8441AF172 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD5C87CC0AADC43135DE25CD663C1F4 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E4C4E89A25DD07D4ED5207FDA6340727 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 397DC933BD2F2B41EC3696740DDA1F75 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A617D4D33AEF921AB52206884C4AC07 /* NSError+BSG_SimpleConstructor.m */; }; + 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 745626DAF8E2FDC51B4CEC6A916584FB /* NSError+BSG_SimpleConstructor.m */; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5525B7C1162A1DECFCE07D921FA096 /* PTChannel.m */; }; - 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C8E863EDC7883D4B84D3851895D0D76 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2BD6D05211FC0A993AD167FD7F658475 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FB2F287510518D3B23AA2C01AEB3AC96 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 70CF7B10E411379B8A9B9B282F9F0E69 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A414E75B439F2C6E3886ED93515E9A /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 57996DDC978A05C90B5482D9DFB5CA12 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F8A11A31D2EAC23A3C7402B0518EE9 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 147C05DCAC196FCD8EC2E6CE26B3102E /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57996DDC978A05C90B5482D9DFB5CA12 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1102C734E9A28600BADDA0D9509FD931 /* SDAsyncBlockOperation.m */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8878BFA91A7BC7E75874E981339E9AD2 /* EXFileSystem-dummy.m */; }; - 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23979EA6379079ED391BF8D1BDAFDEA5 /* FBReactNativeSpec-dummy.m */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2E59220BA4CF3ADCCEBFCF7E012A28 /* EXFileSystem-dummy.m */; }; + 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D225587E371647E1EF158B7E94B98E54 /* FBReactNativeSpec-dummy.m */; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 095997D9882CD208B80CB6D5419C5172 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 175B5B65554B0DB154EFC8DBF39DBA6B /* EXHapticsModule.m */; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C30F4DA8650B821D69927FC3C47B368C /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ECD0DE5D568B252D0B716DB0CC1872 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6B86EE0471035A8A3457810B19E9CA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A43ACC1FFBCC2F3EA6A25797071D79 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A66D1EF142F4FBE3A1B7B2FE7DB0D4C3 /* GULHeartbeatDateStorage.m */; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BF348AEB813B4920A2F3FCEB3BA6080 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DC8CA7F5DB43986C39104FF54E12677 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4242A7899DB4A39CA35B05A1C266409E /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 592D531A0BCBADD41C6B8C1ED4C73EEF /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = C19A2135BBEED47FB1749374D067BA31 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5967703126249D72DC6C94C045CEDDDA /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E3C86733FC37102F88F15AE9941EDB /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 65DF166FE6429A2114841E65BA1C4A73 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6ACBAD632439F409068F8598984ACE9 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE403BE04AC4009034336C80A9B3A1 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B345804667E1356630DDD7D0F75706 /* SDWebImageDownloaderOperation.m */; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0815E3E6EE9F8F5DFF7B97B277864CD /* UMPermissionsInterface-dummy.m */; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FB827D3E661A96BF92BFE5C69281BF0 /* UMPermissionsInterface-dummy.m */; }; 59BCF23690D35E682AF7213B1AA8B121 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC49410B85855BFCABB034DE12E77CC /* GDTCORRegistrar.m */; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 75D41132E49B63006155DE35CD098F17 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 330F28E14D260FA2752AB8244F045F1E /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AFDCF36AF73A36A5A52BEFCDFCB827B /* RNFirebaseUtil.m */; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F15223809380E9E04498D8B990A790A9 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = CB92A840388D3EF7251E8F98F6D2AAB3 /* RNFirebaseUtil.m */; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9B69BBFFB0947546185F7519469C1F /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = D41085A05AE372FA28F64384A2C99951 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 395E95C403AF67A9659CB016D77A3436 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E01E81293DE6806D93E9CFEE734285A7 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5A6DE10F8372DDC647FF3AA6AFEDD5FA /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2020222F85CFE66C30A065187AEDDE /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AD76653381D66158768E50C092B7044 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5A6DE10F8372DDC647FF3AA6AFEDD5FA /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAFFD70428079BCAC361B34C85BE3B6 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B413219C8EFD22BCBABB018CCD1A790 /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B46E5E9F119798C5DE2B74EF13607D1E /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = CC3FCF0452A7189A99D7CF20718C3FD3 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 253DA86CD9850B20CA326647CF689F7E /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E0085519BAEB9908A5E6217FD030B48 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A9C400B7CEF9A75CAEFDF2CC0C4429 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E59B9EDF6B2622F3A594660EB04AF5 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5AF92807EA677D3DE6A1F41612CB12FB /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCC1163A19EEB4E4104E9F1E3AB8B8F /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 59512F530EDCBAD83CE007ECA7A09A1D /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5B1FCCFA4BB7135E41DD10F990180597 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = E72FBF0AEE83F73F90CE44640BC5EB14 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B3C34B03583AA3880C2B10C6A9AC96F /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A90863DAF14AA25BBCFBE951F1520854 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5B1FCCFA4BB7135E41DD10F990180597 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0E9F3CEF59482A043F2E3150CAEA0E /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DE6FE2B0EAF64393EAAF37AE268A59D /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A781FCABDE816936461B692A120A64E1 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5B5E9DD45758905E15ADE6E6580E1694 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = E6445DD2681B0D31839C79B83EFB5FBC /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 35078CE922A0A92EB3D0F127D9DE23A2 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C65BEB8974E8861875369929B9C83FCD /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4C5632CF328F44B28A8A9F80D503D4A /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = A23D607E7B3F516107A22AC845C14446 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4E23666F6328BE78029301BD16FA1E3 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5B8B332ECFF0056F7CEC66BD47604656 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C508B25590A036A896571F6E1BECC91 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6394E86913C00F1D38779DA1EF4CE70A /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 6233BFE6CE44F90A1D9F3C0D0B3F4D68 /* BugsnagSessionFileStore.m */; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A0EC04FE8D805241D2EA83268859371D /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = D89090E3BE5C097954BB3B5A4C0B75F7 /* RNCWebView.m */; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E58A9C9AEA25FF614C1FF1575CAB666 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 25CF7B2E403EAF3907627D3B8AC8CA0A /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C095144BC747280B07CA695F86A7471B /* BugsnagSessionFileStore.m */; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7139D5968A6AC023AF37F861DE93F83D /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A510FC5C085CC40B04B6AB76649708 /* RNCWebView.m */; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A49BFFF090944480DC816615C37D8111 /* RNFirebaseFirestoreCollectionReference.m */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 508931DD0D3167182E0C7EB5A34D206E /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2834338D61EB1A76801CD4768032511C /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6FD24549CFD1B0EDFFEDBE798C54C9 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C1180DCDA66B2CC0EB7CA7EABA74DCD /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D5AAED53C93242320D9C9745B18095E /* FIRInstallationsIIDStore.m */; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 217981D4C57B400D196ACBE2AE4F4F7A /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD83A46B1824A3A4D4ECF4B36E3777B /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAE76A88219B5296DA02CDD4ECB2FBA /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AC6DFBD0003601B52F8DE3AF61BA14 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 99135951B134FDA8550CDFC21F381396 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E58473565FA7BA6B52C7C03F53AFCCC /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A733AE537DC49958ACCA83938D62A8 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = A4392652ED21B6B19AF66D94D815A783 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 47CD048DB4EE75F4B79A8E53249E3012 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A7478A71140105AF55B7AAF813239A /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DA146C09B7AB2F2DCFD5F46F31DEB53 /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7658F1511A21C06EE2961BC952BA8334 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = CBDAFDFB8FC7CFA1158C4603378EB6A8 /* EXAVPlayerData.m */; }; + 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D90568CF9B3800373795CB9CAD8F84 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = F774838772BFA084164BBD15EB276FCC /* EXAVPlayerData.m */; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 007F5CF050DF32FA07CC118BE233C455 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = FBA19F882708659F8EECE56735E85533 /* RNNotificationCenter.m */; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03318E53C1FAE6FEF2FE77CC95DBFECF /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 06B2203029C3C3AFCDD5DD5318FFCC4F /* RNNotificationCenter.m */; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B1C20B517E629D985B3B18258990B0 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 5D87A3F2F1AFF3C61BCCF12D3FFBB919 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B23D6FDF93DD1B322EDC854983FAE2D9 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5D94B0773D7A674CAED8241CC030A3B3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 633B4F7B73EE964A790E6CF1C2682615 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BDBC260F9E107A8330F46C81000F6DFC /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 49B4816434FB935DF284754497A2BD3A /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 18599074AEE17E3DE57927E34123B8E3 /* RNFirebaseAdMob.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F5D452DBBF0D16A4B835ADC487D71C /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C048DC61E2D9E4D99D1D739E53B64635 /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F1838048F02BA54E58AFEEEB54D23364 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D81CC450FB75CBB2B5ABAD072AE4E43B /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 02839DD93278BE161B024363703E82DB /* EXVideoManager.m */; }; - 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A033285CF9E0FDB37D8B7BFED5384618 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4B351F8FB06F9DB07A3372945F2B68 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA9DB3C10EE2461F7D5386A7349FF11 /* EXVideoManager.m */; }; + 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFAFCF9D2A38BF4A31E5989EE8A6C1C /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = DB016C82CC168E317D90FA49A48E576E /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2F2A78ADD1936F72196CD6A8D00E5B /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 193E6AC2D9D4EFA266583DC8E9166F99 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC1449B2CD4362D1CA4046B1D8AA71C /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F1E50015EBD43CF4A44AC38C915425 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F099D8A9A2A8ED220D004516093119B /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = AA91F6C11EC7314478FDE2E0B898D74D /* GDTCORClock.m */; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F11A53A95E9180B8F87AEB4691E62828 /* REACondNode.m */; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E851E6CD968E6A6AE221C1053E27E8F7 /* REACondNode.m */; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E81847F376B9ED13D4052F3DB0D23B /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B1C3603254F3E1558A984E76996BA6 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25A4521AEDF5DB7E2947E852A83F7979 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7337DCFAD82B5FAECF100A4D20AA7CFF /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = AEDCB4110F45A76F11457C2BB7165A91 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5FB569FBD237B615CF14F490775C837F /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 470A3254430782FB2D826E72C22A5F1E /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 310B657865ECF27AB6D535AE434CDF1A /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B7EDE79C53D1A0BFB62120926DA11087 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 248119582169AE2E14B8DB9AC79E8664 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFCA872F8F308FFFFC0DDA2B70D7B88 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 89F39CC71B68E39ED4ADE43058483368 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5FB569FBD237B615CF14F490775C837F /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F5C92D04AA2E6A5BA2C09C2275A5C2 /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFBC11ADF2C10BD3FF998B81FA7DDE3 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FECA93BF616383B99E7EA634F594FB5F /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2470F180040A30D504B633183981B9 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 605639230346E944534ADED2B00E96E5 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5D4FE795206498890300707EF6CE4B /* GDTCCTNanopbHelpers.m */; }; 60A86E0DA64B94C3016CED19C96C0E66 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 993310A8BA742DA67AC8025E88E94E33 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 068D3645C0B2E35542B23A98DBDC265D /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 937B86997F1492A493D8D2E3B54F85CB /* BSG_KSCrashC.c */; }; - 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE812F7876E0DE2BF9725ACF8E93D5E /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B468703EF6A868656913D9128FA6C816 /* RNImageCropPicker-dummy.m */; }; - 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E23AF7F1E2AE04470812D886B887C73A /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 163428F7C1130AD4199A56D14F59E9FC /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = DE5CDE7B990E4422CA317D651285C02B /* BSG_KSCrashC.c */; }; + 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 574D7400D4FA4995E1CA19A91291CB58 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 833088975D18E2C0CDDAFC698D9B6EE1 /* RNImageCropPicker-dummy.m */; }; + 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC56F9DA9CF3A8DD38C1913E720E0D7 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D642BD074ECBCE98D84E1D1F747F5C /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61475BE3E93F74078F49B9CCA07019B8 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E53E535B0D7E94210A940AAFB705BCEC /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 61623E33745D2D46C2CA9D9EF256F2C9 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C650C82285956D4C10DE146F9EACCF7 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 61623E33745D2D46C2CA9D9EF256F2C9 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DB8EEFC2865862922C0F3D62D40909BE /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 616F99E58EC3860AD362B2DC0C67277C /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = D4EBF582A50CDBB1D77A0DD2EAD9213E /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61728BB54421812F931FBCB7B4FF2BE4 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FD101C730304830BC97FC910A7DB082 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 617530231FB583E62F59AFF636820064 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98E3827DA60F55DF0ED6789CD7C94599 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6180AC7AB06E1D1D6E01944FA4CFE5C8 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B4093DAE4627388150890D8FF25FA3 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 219D15A24717D200218759B277C58214 /* EXPermissions-dummy.m */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 994A71C4449C02301B04DA85D8A982B1 /* EXPermissions-dummy.m */; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDBF46C9C94D75065ED86ABAEE2A5A1 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = BEFC65B0B65CB89C996D4527B32D9DC4 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 448FA111380C5F7D091857A14B026038 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C315F99CBFABCC17238E3253EA2F661 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A86B606D84FC5918002098DE6846840 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF308BA1672296F22BBDE80801857F1 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9306EE62AD39ADA40650280B3F6BB8A /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = EDE7F39FC17BABB060AF72899759C177 /* RNFirebaseFirestore.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = A22165C603CF86BBA62AFC8C08B2D7EB /* RNFirebaseFirestore.m */; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5491F32F8F60ED50CE3102C164314364 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = F08851DA08DD037434F74B51751E3EA1 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4FCDA9DA3659CD0E6A9EA312D9A2F77 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0F2679A5E0931013FA662954ED431F9 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 628C6483159FDCF38407770F1ACE903B /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2216873BA90E168C6F587B532F1C32 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6842555D6F2AF5CFA9E7007E2D3A78B8 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B73FA07579954B5620E7D9938C14A8BE /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 109238363CEF0E9728FDA7003F4457F7 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = ECECC3FFA1D51B683BD14C17B319EE0F /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 11EAFCA84606DCBB044ACBFFA8B431CF /* BSG_KSSysCtl.c */; }; + 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C821B113E261AE5237AE0BEC3E208B7 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C7735874BBB2AF5626E4052A4BD2B566 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CC47269B6761A5EA09A8775959799D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = EEEF1FEF57923E087FF4D9233211B421 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E739FFFAF59E0686A65318682F53F97 /* BSG_KSSysCtl.c */; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FF0359587A94748FB7CE8936B901FB /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 640A5B859D78BF300F772830B148CF74 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BDF67B988839CC89CBE458C879E6B6 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 39938D64691205D235E91657B49CF7AD /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7F6277315A36A1D833DE0C44B3E033 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = D6BC4EB89FB043565DB890070B5916CA /* SDWebImageDownloaderRequestModifier.m */; }; 6447709A38CB47D0D4B539C0DFF9F728 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D017CF786AC96A572897D8DBCEE96977 /* GULSceneDelegateSwizzler.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD037DC493AB6997B35B7E803E850865 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6450E79F5C6AFB7273CB9D4497C68DB1 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D2E783E2A548CA0579D5CE081E9DD3E /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 95A45E2D27E725A95BCE60430D3B2716 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E18881F29CD4C1AEA02BD47E5CA7C0 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = A58D33408D0EB2921512E467A46DDDF7 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27CE5F38E7E2C21F4A1C2ADC04919A91 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F99774561F4F74FC925E3F5E9EBDD5C /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = B33755D1B4082600047A0F3D50E50CFA /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 898858814F868522EA63C94B5815797F /* BSG_KSMach_x86_64.c */; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E0416A48BB81A3B7DCD63873C246F10D /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = AB19C2DA349B77375CF0B72E4B2AB3EB /* BSG_KSMach_x86_64.c */; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F809D0DCD60269E2E7050B1B4449D77 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 83E712003D06246B5467078B593C4363 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 81E59C616C755265CF978E5E118A66CE /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7380E222D78D6EA48A4D429BB4C6373 /* RNDateTimePickerManager.m */; }; - 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = A57512E45F1B0781C9F77576467456CB /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6502E38CB30B4C5057ED72B199AC364C /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADE7AC6AADEF017B591C0715DA215CB /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 469614418673ECF5A39C6A40E4EAE2F4 /* RNDateTimePickerManager.m */; }; + 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0F1967BFB375D4506E99B8131B2519 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6502E38CB30B4C5057ED72B199AC364C /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FA94BFB94A42E252349264828408B209 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70978B3A123157C126BAFE83BDBFF4A3 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79E7D2DDD63801B91D88DEA078970414 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43483FBD75EE29E35FC81C740C127C8D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6555EE2AE374EE32F457F03D348ED0A3 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B7BCA931BFCBC5D7CAE2878B4D6FF022 /* GDTCORConsoleLogger.m */; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E10D9D717D3FF1D79290CB9A54BD38 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 65678895444B4CA89B9031CB34EFE935 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 23BB6B718434B869AA1574BDD1817223 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 65678895444B4CA89B9031CB34EFE935 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EA9D90BC42F1BB4D0B77A103B9C3E35B /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 657C87230A2934AED9C6AD06591F370A /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64CFFDEDD3C1D8F8CCAC0F4DF2509B1C /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2950B3C674F730AC60BB3286C66128E2 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = A86A3C6E957BCDF5D9F50C3BA611EFEA /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A11FDACF933BFC48C7F25902DCD57908 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B72894A5002A1DEC2A532BEE053A8FC /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E701E05D9B792A11A62162DE7FBAB43 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0127FEFFEA4DAB715DA8E9814B88B22 /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC9872EC0E581F88E2A0E0207C7E270 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6627CD8BA3B27E0CB0BA0E912C78BE51 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F56AAB8A1F45A88DEF4D9DBE234CED /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = AE15D1EDBC3474CB8B2033077058368D /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 02DF8E79EDB719687F9AD4312BE2497F /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = B33E2DA487D6E6682DCF63E4E5299C0A /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 4277DB60D1EC8D61D0D72FA1F14F3D5D /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D367A7A858ABE44FBECC0E98AC64A5 /* EXPermissions.m */; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0EC160F40518C6771B030C1BB9FE75 /* EXPermissions.m */; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CEC68A27993B3355FC318D6B1EA3E6 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBF42452DD7D486BD4061A92DE81C7D /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6755707AA35CC5A43F01642944BA0 /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C693E043A2DE20127B01328D80181DF5 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 732BF9E3C66AA7950161168B32B4FE63 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9953979307451128D4E556D376430A /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E63E99A20695BB9EE32555A25813A6 /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD9A8FF0995E1241DCED980BF3FAA61 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDCC95D19CBA4FE7AA7D755C04571E0 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F36FC3A058C8D9905595D65EF6FC03 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBDD8C26B34485DB619FCD221D039F0 /* SDImageAssetManager.m */; }; 67278E9F64F6827638B4D52D8CF71F42 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C493BCB0409DB9EDD6467CACD5605EB /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E422E47E3BB57CAB5AC2E7F81C8B6A9 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6730E006B7764F221BB7F81F7DB749F0 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA7606795FDB5888AFEE892A79A018F /* PromisesObjC-dummy.m */; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 72976667D86BECB0A3BC6D852C72BC66 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A91662661DED53F35DE951BD775BF4 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8275006D7171489B1B0923F4BB8DBE4F /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FCADA8566E47EFBBC1E5CC1591D6B28E /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D63835C447BE94F7312B8F41FCF8F9E /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 675BA275D6D0834300AD7B9C224124CF /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = A4DBE32307681C219297FF5F98951B89 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = E962C469B0B039BDA314D872E67D278F /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 750F7E062D511B9213745A1ED368C68E /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8080A2E131398B39B00CD2B495B05C92 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = F87861CE0A3AA661DE6BBB55B587178E /* BugsnagSink.m */; }; - 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = FBCF91D66A45CA87BF4FBF77A381D8AC /* BSG_KSDynamicLinker.c */; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CF424B414037AAD5991901E4B9FAB25 /* EXImageLoader.m */; }; + 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = E4E34D60E16609B4903F2C82BFAC7361 /* BugsnagSink.m */; }; + 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = CDD786035D3470DAC419646B3A0A7E2F /* BSG_KSDynamicLinker.c */; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 21FC3F7AD7A415BCEC9E446692D850B0 /* EXImageLoader.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE17162C64E027C473100BD6B2C05B4 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67F172904F7959C4715F3CFE9B1B4B10 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEB0A20D4BC133A0888BF8E2F7516EE /* FIRInstallations.m */; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0F4B7419A0A8797B365B553C26DDF5 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F15BD53ADF91432D590A789A323C64E1 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F47506F7D233C846DE592A73AA5D7A2 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5539AD89AEA9861EF1B99D011E04E6CF /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B25D029817EA978A309499F929477CB /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E40C82BA6437FB33889A36A09D824E0 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4655428B02A1A4541AB1D8DE42C67949 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 630AE913DA165FDB10106D8C1CD76053 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E343BF066A1B734C22DAC9C8A99AFF /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 852DDB57329071FE7E417C84D72D8048 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 69735FAF2EE9D19F875455375BED5E67 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68D2769B6ADE197D4C3196196FEB0412 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E54644174B74406C94D5183063CF47C1 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 68E14DF5295CA73DF30819A5D35C0D12 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = AACE10BCD9204EF7D1721622F2974945 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF410BCAF0BD50857D82096E840E364 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 501AA85736F8077BC8D0FA543BD8D1CC /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FD565D63FF14AEE82757A428C2A6B2 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0F368092D9D7E5A6F338E6BFE5660E /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ED78B5FC4AF458214116575D5FD08D2 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 69263344AC2EEDC6526EEE47861A35BE /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3CF7A144EF12EBE95954FC10ED1798 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69524FD0848A58F018B7677B110D7BCF /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FC9295BF6894CA675511B28B16BB62 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1420,10 +1430,10 @@ 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3C07C9519DAD395D84577B2349F5FD /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C4123A15898007F90AC7D2B778DD73 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9684689C0C8B9E1517F55131E107D2 /* GDTCORDataFuture.m */; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 907ED2C32B312E66F3380CD86D0C2028 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = BAB7FC1BC2272020CF84D49FB79CB465 /* BSG_KSMach_Arm64.c */; }; + 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = C1B8302E6144ACBFD42B7B1CC9BE1127 /* BSG_KSMach_Arm64.c */; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC003F5EF2439B669F24315D544E30A /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1429B3ACD01380B8593A079FEF40D5 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E64A7E8E1DB737397DA64C74B468BF /* BSG_KSCrash.m */; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6933A8827E414F03FE665F8F86110A /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D8A7791A3B0A0EEDC802FFFE8A8DA8F /* BSG_KSCrash.m */; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 434DD67F0977965E950CE7EE6FF128BE /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = E421CDD78CFBC69897AB99248C9DE3CC /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = D8FD6B2BE2BFC5E7D9B2B10CD7DB9210 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1434,8 +1444,8 @@ 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = AE56093E9078A473770ECE86FFE0A77D /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B20F0EEC49A5600388DD9F9EE9CA2D1 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9A549EA28C581B319D3B66ADBA9A9E /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B217CCE28CC0B8DA7822706B41E3E8C /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = DF4E5CD7212197F9EB85998AB69C6321 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE42D418A6D5C6D284417C3CC40FFA5 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8BECE3AD16237B5C54424807FC5037 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 403F69E50B9F50E302A25797738D2E04 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FCA9864B72846B0670BFF06C050B38 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 80944A65FBF34AE80A6FEBF65E9493E2 /* SDImageGIFCoder.m */; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB67F4FA9C283AF5469880D9B3CB4A1A /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6B6C5353B590B5F7407E42D993C98BCD /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0A850F9CE40FFD2FE85F81A1CFA6A9 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1444,77 +1454,79 @@ 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DCDD7BF6C1987F005B2362584030CA /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BEC4D1F3B47EAED77B9E07F0EA70256 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F7DFD6177F24AA0AEF0B329765F934 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 6960F072A24C584FEC6810FFC1519A2C /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 804D05DBB9E391D3384C1C689263A6C0 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = AC58807FCD479A6F2650B746BB4FBFFD /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 70687A480EF3D6C11ABA886F780E9520 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C24EBB7821ECE451CC18A7AD9F1C368 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = DE249746A99AC56A7CA87BF98C330888 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7603C904A0910EE79192F547E1A180B7 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FB57EB684658B26EF51C068CED7380 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A5BB2FFFE6D3DB392ECC57F154030858 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDEAE4889C0A5104DCA803F35AC36AB /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 117A0DB2224053B6BA37DF19F0CFFBBC /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD301F98FAB37D5BBC99A45991CEDFD /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA2F82971CB6B4A0FB1D42C333FC510 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8FDD6D8D311D1B10CDA770A98B0D16 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DFBD30F8E1846663D8755924328FF4 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BCCAFE8BF1286B919DDE61EC543B8C70 /* REAPropsNode.m */; }; + 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 50601530BA179B2CA3FA469BF548DC57 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD2C5A75B26AE120DA1A0C22A771FF4 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC27A0095FF48D6786C3E980C983CEE5 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A6614C17B736AC115629DC8B42E299 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26F21C4F043E602684FCF1300BDFC8F7 /* REAPropsNode.m */; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 0AC825A8C701662BD2D24245FBA55E1B /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DD05B1B7F2C6C26D127E8A1845FC5D /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A6B5727D6DBC4C0896F3F90277D0E3 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D72A391A5E8B931A40E0EEE1122CE92 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F73FA56BEADCF3C038B8E74CF684643B /* FIRInstallationsStoredItem.m */; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9321586DD38E7DFD84AD213C8C80BD /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F4F2490052CAE69DE71527843602A5 /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EA79EEAAB7293A0804326F36B9AC889 /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6712795D546673CE9EC6DA7B19F925 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B118C388E08FB135AF5C4AF3FBFB753 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFBFB9EE3E0BC111F644FFD270312695 /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B38136BE7F825000980BF45DD6B49CD /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6E0920954B6E212D8FED37C2A25D5CD1 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = EE260BD6913FE04982DD42B73126D681 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D4D9FFBF24EE1515E141AAD65BE1DA /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B877B7B613D625FB5683F806DDC283A /* UMViewManagerAdapterClassesRegistry.m */; }; - 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = A22D8E1F764C39C22E2B1892BF3E1083 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CAA18AA8123A3DB5C5CEC024D4F408 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C48600FD869A9CFB7A36B3EAB7F7D152 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D094651F5AF7165D718C66D5A859F1 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE8986FCA597D38BB69720F4708A824 /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = E86A1500A927E39874D8337AFE45667D /* UMViewManagerAdapterClassesRegistry.m */; }; + 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E233B1E5177E8DA53E63374F960DDF /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 672661EC0765FB80ED5E2083213F3A98 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A958F3EA31FFEE89B58963F03BF74DF /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0F42D8DE9C65D239BCC5002B2017DB /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = A57941512BEF6D020A629A9322962054 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D2D91B904F16FA2D28E506572568EE7 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F74F63D4500638E176854142E804CF0 /* EXWebBrowser-dummy.m */; }; 6FB0A78F16C8DC9FCA25121E22A34AD5 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1C9E4FC69D6D477AE135711492DE88 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 438B1DE0E62A8B0F75F6556F9D3BAB54 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5222202571D23C90EC14FF4444E812AD /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6FC607CC2D020D816400CAFCFFF7288B /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E26711C9C0DBFA835B5B74E622BC253 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 98BBD6FFFD50E722EC7012E2A9449011 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F8248CD3ADC3F5F6091D2CFEEDCBC10E /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 40CD0F0863C85C21A8217DBF0AC3C4D0 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7856B64CF439D8990CFE0BD38F21BA /* RCTCustomInputController.m */; }; - 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = B718EC319B4FA8F689C44AB0BE65BF4D /* BSG_KSCrashSentry_User.c */; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2631ADD27366017C1CF5E6C4B7E68F6F /* RCTCustomInputController.m */; }; + 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DF9F18D426A2953F9EBA4E425050B81 /* BSG_KSCrashSentry_User.c */; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D113CE1DC9A37F7B085B0ECA42F75B /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7051713F98CC30823562EB071DC39C96 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3DAF7158F5DEC8FF77922EB11427C0 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 707B2CC24985C389209CE40429E62D49 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1411CF080F2B693F14589EE28CCF08 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = E28E4C9104F8F1D243CC86D957F67C8F /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B19BB1EEF8E5AA0124189F290A8861 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 70A55701F794D3275F5989C1F4028042 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B4A3D1B52ECDFF9E7A674301370271 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70B22AAE6D8044176F9BAFA0F2511167 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 34E4C5FF003511FCD5A7F6A2752F1FA7 /* SDFileAttributeHelper.m */; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B3D54191A1B4DD4747CFE7113B08E6 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0851E6B93E2FB7E1A736E6634DDC0B6 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F21705535D4799AAAAB6D16F91214F /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E56B1C171744B6C095AD9171D395C4 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CDC0EB331DB0D4FA5F4673557464E8B /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C56F7C925156EE85B46657168DA3106 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 447B8DCBF522A8F84954BC51ACD0569E /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAC317C7EB06A759F8B238A9746390C6 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 715A3D8A7C44869FEACE0514D575E18C /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE4456FEB0E18D388A28EA1BE658D11 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3781CB5AEC53F10919903CE56174F596 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 59915589514583DB857FDF711C887880 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 127CD1E1011106B2304548E9248FD62C /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 71A88BD28F32D462CD811AF18696F885 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F0F2DCFFE7E9486B1F265805F680CB /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E93A08DAE3DA2001C2932C4B063212 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29C24C17132AC96C2E62EE137999E4C3 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F77B6F48D4BF691C865AA8707E3905 /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F5754F6BBD599887FE4A61511A404E00 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = EDD126C6D0351882C6B39C1B0A2B3210 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0C031D54483C4716ECA6D731C239F4 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C108E508B53EF36687AA3DDC919D9B0 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C0597431E55F8169E3324DC6051A3CD1 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B9A3071E0D8E8007E3BAB588CEA589EF /* SDDeviceHelper.m */; }; - 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AA468CE72F78D8E290F78AED79B788D5 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B3262FD84C1E3BB00C4CF6EE49E677B5 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9502B3630FA0ACFC8E44DB0231E49D4E /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C74A6B9B15C395BFB9BB73E4FEFCC17F /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6067F6B5319589A4F14905A7376E43 /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 531DC503CE497FEFFF6D249545B5C40D /* RNFlingHandler.m */; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEE3FBCA4F3B5B6E24A0D8BA30C7F79 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DCCD4B155D3FF26274DC1610F26D297A /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DF0598EC4E96419F8C605A212DF295D8 /* RNFlingHandler.m */; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F8EA0880333E9DA3ED04ABBA625281 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B962EE99644085C11182BFF43968B8DD /* SDDisplayLink.m */; }; - 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2BC50D7EEE7D5DFDAEA21A82CDDBFB /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8821673AA05A9298C0CFC7B3AA7B0FB5 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 728156DF3EEBC775292D8814D17E8D48 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72F98D47E908D160397D2109949F8901 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0CDEC01D66844E4510B5EF282B519C /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 562A1BC49C45FBEA1C44CF9D833ED9FE /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 43DE7A16E50B78A6B067DEA6AA4EE763 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 70C9A99E9FF2B23FF14FEF60FF1BFCFB /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D50A0B9839ED6D059771A56CDAC5160 /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 25515E093BB5827043AB4142E1B445A0 /* RNSScreenStack.m */; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C9D0EB752620D220AF34E4887F7E6FC /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACAF043733D30B36FFA455731AAD69A6 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 738F9534366A0B4D79D59BCD8E17CA6E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EF36CB287F7DB44B3568306B6A1ECA5 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -1522,244 +1534,247 @@ 73C1987309FC66BA1F1ED22729624B83 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 884A3F9DF38B4194FE972C3A0D33287B /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73C360D38190B223621C837277090BF2 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7E959C518BB93B5548494C34BD2DBD /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73CE42ADD9095E1C00FD06E526EEF697 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF44E5B7DF3FFF2EF86931E2C09BEEE /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = EBA635743ABF4A9D760E7D051BA642F2 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F47718EF009AF92BE248AED9D69506D /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FC0DD23312E359AAF2BA654EAF7B6F /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5F90E8404AF111F1776A63E62A4743 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FE47BDC5B749B3E3CFBF41F35F23B1 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BBDB076B66B8FACB04FB4FE96C71DC /* GDTCORUploadPackage.m */; }; - 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A3D8CC5FFD182B2F6B93B6E2FD0EF10 /* React-jsiexecutor-dummy.m */; }; + 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31E2C8455EA94AE9E641B248102206B8 /* React-jsiexecutor-dummy.m */; }; 741AF7E0277F291C9A0D1BD934784DE5 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C33347B5019D72B0153A47CD71F9C9 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74300D3787589F62BD7ED937C2C6B714 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 408433CF1B7EA0B7FF2397A82A33AFEB /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 743DB1E02A7BB6C13E5E07719EB4764D /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E447142861A454EB90784A40F96FE18 /* DoubleConversion-dummy.m */; }; 743E12102CBDF56F168BB165085C8ED9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = D937487C3061F03755D71E545664D573 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51C3E2CF4182E8EF20FA41FCE1B1359C /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 74466012CDD86409DB862C1330B47343 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F83E6A25D2FF254B453C191F615310 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 74547C67043E4BCDE93F7D9474839E79 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D60E5E8BED0B269304BB74C21A161540 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 74560B9C92971D07E35C876489CAC5BD /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13423E1640A4656E33D817D2AD0083BB /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 748CBB515393B82D47F544886EDE3446 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D962B450E7072857F024FBE0810CD0 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 74547C67043E4BCDE93F7D9474839E79 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B7C5D1D926FC345037DFC006FCC356 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 74560B9C92971D07E35C876489CAC5BD /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF8D77ED36497353F79CA30D64E32966 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 748CBB515393B82D47F544886EDE3446 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = A6AE3A16051DF5AC6EA9519C91C6D99A /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 74BCEF87E24337003DB52A4C98FEEF2F /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AC7C668181E9A8FEBB9A18B34ABC05 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1413051450C50DB0DFBD6429DA5C89 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A421CD7BD3D018153A06448950F75D82 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7506148F3914E0D6F1A1AB594E55B9E1 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B913E6B0D46E4ABC3598B1B632F213 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4644FF07D75BA088A2DC60B5CF79B5 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7506148F3914E0D6F1A1AB594E55B9E1 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1ADD1FF39C1129F4E5A8E2C8C8ECA5 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4F600571076E94B7971D91DFFF8118F /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7542B46F03BB40C5A9876C63AEA76479 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 77BA244B5408D2A80505DCCFF600BE34 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D6458122916DC0D27375741819D5A9 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5F1D8026B7BFEAE24E957687D13DB64 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7542B46F03BB40C5A9876C63AEA76479 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB14E8B79D4E1EDC3C7F619DB0F76D1 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E8849E3901042473FCB415D574D15750 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0FB7A2BCB26E6FA7FAF1995311D73E2 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 757C477AF763DFCA1BE5A5D78341AFE8 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C22D08B07DEC2D822A9AD9429629A308 /* FirebaseCoreDiagnostics-dummy.m */; }; 757FD90124B6536FA19702EAB1BB9355 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D78A0123098D28C5D3E135C01E38E39B /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BBADD20B3A1094D10FA5C2389A0F76D0 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = C6CD0AF3C1276B5ADD939B36CA3509F4 /* RNUserDefaults.m */; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F25480701B5E717C3AF3FE0D21FA4AC /* REAEventNode.m */; }; + 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 696B1C6494D9F35BC815B814521219DF /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = DC7C17EDE1D3ADAF9E4AAAA4F0805E93 /* RNUserDefaults.m */; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1534F22DB54903C6CC1A9A16D27592C /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = EB96F6FA78DD5982BC5C32FD2B7DBB65 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 3922B2324DFA23B70E7FBBBF971AD437 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 765E1045CE05FBCD4A3B66341064888F /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E44BC299022EA501E799E13117E8DBCE /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4DE3E728AB6A5C13258AC48C82BAB34 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7932D0F1549FAE90D2EA9D758631E48 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 766BD1F98174D03F873BAA01F87ED011 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 9657D94D5B94272DCEFAAB4AD0E0F069 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76764823DEFD4B7F2880A19721C6313A /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = C611B9834EEFF95ABA916CAEB1CC478E /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A286C1EBE6539A92CA88C9A339C026 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D6450F6A8E0BEAC091B5E216F92647 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C733CD9C74A357A76284D361EE462CBF /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C27AF23759BF7A8DD86385A007D97791 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76CC28957C425E9D74DFA32D3F73953A /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = F331749C73AFBDC65921F6C1FA1B18C0 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 4088903476B95FE6DF28291572F20B82 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A850319001F2BE3E12C09663F7280 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EEE05A743A33A2A0FAC336D130C2C9 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 71261B3A5522A3D92F1BA844EA476BB7 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 707B91034B57295DCBBE33F9700D9059 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 603AB881836871206A2C963F81B7E6D8 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 62992206A392D504DB2D295AA2DA5443 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EC0F27925BA5C96C5F57B66745AD17 /* ARTSolidColor.m */; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E93A2F0919CAF3E8CBFEF8A8844BCB8 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C484E6A346C7B52FB7A5C7F75ECCA52D /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = D709AB9666286F00ED5D6D6A2F4A8D0B /* ARTSolidColor.m */; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = C20319ABD038571475EAE18DDAD747FD /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 25870310690272D6D92BFBD97E5A2BC8 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CB0861E30B6758176AECDD59A49C73E /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DCB116A084B6610053249AAB840B959 /* UMReactLogHandler.m */; }; 77ACCFEBB20441467E34B9600FF1FAB2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = BEE19D01E393D6AED4889E0FE6D0AC9D /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B5ACE0E6FA599B800ED969620E15F6 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F1695BC522458CDC1A43977CFCEF32C6 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C4FA7E317CDFA18F144029811303C64 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = B634BB848BD7B049E27A33F03AA3E0CE /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E86843324139D967A7400DE7C87FBD35 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B0A371D5A21AC68639256F45BDCA24D4 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA859D080F5B72CD9E8BD9639211BF7 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CCD8A80C54F72D40316EBB155801CF /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFD5B0CD3DB6FE2ABBE27D0B45F4C5E /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78443FF8F8DBD8F1B0297274AEDCF8CF /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 69447CBD78985E97A5634DC4BEB3B679 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E9382D2335E9D169ADEFF0B624FECC6 /* RNDateTimePicker-dummy.m */; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 145A7D59176345B6F215E0E11D6B17F8 /* RNDateTimePicker-dummy.m */; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE2BF68CAB2616E23655DB39C7D4A3E /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7884F03CF9FA79DBEE75B5EF7658A49C /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 276A65F3FD717086395DB7D24A64E833 /* UIView+Yoga.m */; }; - 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB9DCB7EDF396F3D80A062F7E2B5AC31 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 9015B60F6E82801E42FC2A6CE9D47277 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F26AD8F4F3D371230E2B519E3A584B8 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = D33C61C8004717F147894A4F457C4CB5 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = FC18FF65788DF7D547828224925E7274 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1941A5165CBDA9E4A172681259DCD605 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 056FEC49181BE5653FB8F593FF0BB55B /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CA63676DC67FB7253C5FFD5F3F7566 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2A44021F16E141D89AE08FC81E7BC54 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7577C88EEFDEFCE52F70EC5B346286F0 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D2927EC23C03AE6A0C72B93D099E320F /* UMModuleRegistryProvider.m */; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0217D0E502821EC62D4BC5A63234FEA1 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A462A2E1387C3E05B13E454FD9C7C5C3 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D33A934B640D0010EFD4513CA46B01A /* UMModuleRegistryProvider.m */; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C40CA3B5B9D97DCF31953A8A61A49CF5 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E7DE2231C4C01E96F2EF0256C11ABD /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5242744F2B65F26060D0E9CB8F3DEE /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D7B199325D8B69080DF84749D4E46FF7 /* EXFilePermissionModule.m */; }; + 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E8E6412A8B80FB18F58A48DCB7C15C /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 21885A4ADAD17766C17F964FF29C82FE /* EXFilePermissionModule.m */; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = A4853219A1811FEC6666B9C528C04D9B /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1D93DB2CDD8B18C06B607F0BAE717AE /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7968BD10264852AA8FD4BA57F5784960 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5CFD76CBC6BBD47BCF0972E23E2004 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7998B28E952A9C7FB43756166ABEBF61 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = EF18340EB9B162B1F064BA8EAFAB25B3 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79A9269A8CDE8C5B66FBA6E2C4303509 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 57509420978B49C3330ECFF8B8EBF8E2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 285EB98A82041BC3FDC0B6C01B431A79 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB5B16C7B70B759347FE367321DD04A /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 79BA26C737EFCA1A5749AAE7AC3FC842 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A778DDD581ED2D015FDBC2547EC4FA0D /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3438CF072ACC11A4F3EDAD57FF022997 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2228D771F5EFF55AA041447138D04359 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 79D1B1B06EE6E1F8AADDCBA060A8D0CB /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0165BAA8EE7266F1ED30DF044C6D3017 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79E0AD4F4180F0958392212CA49E755F /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 65443F9818534C95F2D33F0A8F23D574 /* FIRInstallationsHTTPError.m */; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CE0812A44198A4CC8E2C964CF5D095B2 /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C4E01BA3026E41228999D2A42ABB1876 /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DD68D1B933AEA3BDA8518B72E32AB135 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = E528A69FFD4D83FDD408E9434733DC4C /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 319B47D9A35D9D659C3A3ACCFACDFAAF /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A245D980616242AD065C7FF0609C46A /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 727CEE911D72F12D992FC84DFE6C7E90 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D701F5A644EF76C88AA85644359ECD4 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 858D05B7E99279A54826542B1B5D68B2 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7A383B2997E0FF8D0D194A0EDFD6CBC2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B99F1BB9A0883D3DBBA6E8D1B3723F9 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4898F69B4C0225E1DBBCFD6566D34923 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 20E4377AB83B86A78E53C33FBE57B109 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B50AA58A65EE4E7957C395C893954CD /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 115C472C4001AE49AA583871E2806DF6 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7211C45E379C3DF4CB75612D0FCBEB6D /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75DD05E373E27902ABAD051F5437D1 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = BD32ED358CE32069FAF5DF013F7EDB36 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 33438DB7F71465101165DA2719EAB217 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A7AA742BB72B9CC46855C6A063EB42 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C78AED4A45BF8EBFEB1300A407736A56 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = BE507034EC91D662EA23C3A4B8002D1D /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 014FD149D02644CEE876F548EC93DB43 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDF36D5CBA4D1EAFBFFEB6356372FF6 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E110A3A64EA74F01229A6D8918954B7 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1486467413A9889DB23A6D91579D0F47 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2A58DF25870183EFB662264150C3C0 /* react-native-cameraroll-dummy.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACF0721D04DEE6D5C1E56141C5C8E4DC /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E72DAB4A653E073E50E2A1100F41ACA /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B8F82EB921486F892E840153E3EA908 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0237BD4E90D915BEF384327688A7EE /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = F94BD1D204DCF22BCEDBF671F3E4491B /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA49DF3B79C11213E3096B0A2B77718 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BFF4D65ECEFB20ACBDD2BBC2D01CF8E /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46ECEE1F1FB8E769F87814B37E02C7DF /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B07ABDDCC7DFB994AD121CB156D2AF2A /* React-jsi-dummy.m */; }; + 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F2B174BD2BDAEB745C526A9F0ABB786 /* React-jsi-dummy.m */; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 71EE2CEC574397A082D8CD6DFFA6D1E4 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = E4769B5ED370A40DF23C904BC98B4E80 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EA2CCABD3A90686CC86E119016E92F0 /* YGLayout.m */; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAECBD8555470A7F074F6AFB206F146 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C4DBA9981D6328F8478F72A41244350 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 692DAA201755341940CB790FB309EF0C /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = CB34DCE889FBFA2EE97AA7A18364A213 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 237F3148163949A0F39743C8DE76F8ED /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5B6CB35133A26728301B5DA4DA94CA /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C24B6D79D95254053CCA03B2811EAF6 /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3AE7668469F5B9715A650DC690B653 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFB9FD5D108FAAA25D77ED39AF86899 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 345F6534E197D92BF760D41620CDC133 /* BSGOutOfMemoryWatchdog.m */; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = CC56E34364676629C753DC57D2AA659A /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 56008A9DB03796D3639D33CDA5BD9263 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD2CE14B86C01D0182D5232A65D8AB7 /* BSGOutOfMemoryWatchdog.m */; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9C204067CD033285E691091009DCB2 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C5B547F98753F73957FF249602ADA981 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D34A100ED6377A6117EC9F1CB8291AB /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E81C052BDC30A35F1D0F94A8BCB93F3F /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7D38F08E59ABB6BF7E221D088AB83D4D /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0517A3D8E3A08BF3DE37F6F920808853 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7D6A5E9C9F6A6D7C4B6CAAB74BA8D214 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FC69ACB00CC2FE217B6FEE56A61C87 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CBD01CFCEA5982CCF544C58730ECC84 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F42F29B8D47A52039805B2097D6EC39D /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 489381BD88BB462EA51AC3844735251C /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DE0EFE6AB2647D5FACD08AF590EA581 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6866778088727F4DD526D4BAE0C00C /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 887826002D02BFCC7CA9B7E8653787AD /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6C8750C9EFE82EDFF67C7A02C297E56F /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7E1CB466C068CBB65A95F740166FD9E8 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D02E6B9DB917675E5CCAECEFBC7819F4 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = A81FDEFD987E030C65A07B6094A19EBA /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 604983AC2EFDD2D9B0108CF938E38A58 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E5F55DE3AC17BA4FA9D94CFBB23A89E /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D59E994DDC3D265A32ED3A9AB7ACA2 /* FBLPromise+Retry.m */; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B522DF9D1FB43DDF30B11219D02B194 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7E78EAD1C901860BE15DA026345506C1 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC6D35ADBA36B3A2058A46B71ED99F /* GDTCCTCompressionHelper.m */; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2DB36EBE8829873D295C7DD09FBF7C /* REATransition.m */; }; - 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43483FBD75EE29E35FC81C740C127C8D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 969F4338E2546A7304C7CDCDF06963A6 /* REATransition.m */; }; + 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E83979670FE945E28099C8EED37EB44 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCCF263BE056FAF6A969BC36CF5DC1D /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2D00F0F5AF73FC7818CEA8FC5F8E82 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E0104A87B917A68C88E2F9186F513030 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F1602CBB2BDB6BF4569F71EB6BA2E1 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B30801029C061FA6A7CB4004C37E50 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8479C700A99D42A45C19893F8A5857 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = C68D2008F965DB8E53784194B227ACE7 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA29C7A7535F434B867178E6338D26B5 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EC87131595CE695AC853CF457AC1477 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9B05892173B8527974566E9A4CCE60 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 635C9713D64FD7E54AD46609A9F6BB79 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7EEB477B872B58A6D545BFD8B4981612 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BDE6200BCC8CA9DA673AA00EABAB904 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7C49B84BD526A4C0D086192C1B76FB /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFE0653D22BE12EBA90C1FC022D00913 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7EEB477B872B58A6D545BFD8B4981612 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE9F092E3CA7E0A323FBF3F4350A49A /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B44FCB6AA07EFF8149CAA00C18C413A0 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = C407E0C7DB34386D12B44F21A0804AC6 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F2FF85FC360BEEB533BB12DEC940E61 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FFFB601246CD01C2D3DD65FB80D685 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6533886934CACBA43208AC7E656462B9 /* REATransitionAnimation.m */; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C28AB7DDB0812AAA3FD5A41BAFCD6D /* REATransitionAnimation.m */; }; 7F7C5C9EDDB5F08624115724D21E0DA0 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6085F2A7F13F2B19547527A44D7198E9 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48076F4983CE8007308CA27053AE9DE8 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D31EA8233E3639B263378A34EE099B6C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 739785CACCCA66F5001FDDF9D2E43501 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7353A26E1FB111644BA6132B3397E015 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = D4B2EE0A45091956F00825D59910F8EC /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B653A8080739DF00E3287CA172C34CEF /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = D9107F10343A9D0842D5085B25F198F0 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2332A624FF39009F67CC3A477687DB /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80A07F3FC502FC926DED2369A414C9B3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A00DECC9301D1BBEC0A60EE8B99A8A /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 39C7AED29148A1FB6CBF9BBE2AFB58B5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A89EFE2052008631ED7EF5F6775D509 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 80D2594A93ECDA477CA76FDC03F368B5 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D25D25F813838C74090FBF8F83C6213 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 0565C8582A36374220B1E5EE36E36BEB /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 80DC2F0DCF0B1FFC9AF851FD42BD23A8 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D5244571FEFBA4E0EA7B65183356D074 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 490FB0A3ECA38BAD6E8E1167DAD77439 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 80DC2F0DCF0B1FFC9AF851FD42BD23A8 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD54FCA63DCA7D0C67F6F026BD7A1C8 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DD1E826DBBF52DF6080A7F85F3D688 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = A8BA79110A3BE9DF63F0E30BBB91DB16 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B80ACCF53BCA41AC1082A7BFA65EF /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = E9468203F858002BB65BC64AC815D7E1 /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 169A97E652ECB8F659D797AFFF6BC940 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = B491842CD162C3BC7BCFFD88A22AB94F /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43404C253050F35B18ED1228E992C51A /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F0EA7EFFD6F92FB7ECA84ED25FFA4DDA /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 816247A876AC24CFC889B8629D8699B2 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F9C8FDD1AE68A48A21FA0412E153E35 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 905B11A10A75AC61C4820137CB0946FF /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53827A1BAA34745F5753731158F1E88D /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 818FFA62B7ED6D4F27667F6428290F80 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = D5FE7046165690E211F7FFD5DF80CC92 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B83F3872238CABE6CFEC5E1AD61195DD /* RNCAsyncStorage-dummy.m */; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FF20675CB7892F4FB555C651D6B8E5 /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCC12E666629CBA68F8FA63EDA522C82 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5F220B6334886ABEE8D6C75154DC47 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81CE0E950350389881B94CF765F8EA83 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0174E7A6077176C3B561C76A3A50C7 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AF0F6DED104EACE28E659E12F1F0166 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 224DC4BC11BA41A51020ECB6E6FD820F /* REABlockNode.m */; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CB036643D44984F995A2F1DF3C18AA /* REABlockNode.m */; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1308592F65945CE9422EDDED884EF9B3 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A4ECB2F7EA6F141F83A9A64A0F0C53D /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F10EED5C802D21F194A7C2B7067A4348 /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B414757DCBFA6FA63CB5030BFDAE56C /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D69C5615DD39EA7082D2F3F41D2A184A /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BB9BF3EDD857DAF1AE0CAA54A507FD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 0877B7CC18A0B5BBDC61008D68D767BF /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 260B98901DB3236D44D2001FFD6C7550 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C8EBCA61DFAD0D306BADBEE83374B50 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 825A977B244746D1AB62EE93F5ABD142 /* GDTCOREvent+NetworkConnectionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C58B0EEBA51866F8799FED5F16F4DE /* GDTCOREvent+NetworkConnectionInfo.m */; }; - 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F0E57C43BD5B58923EAF3133A8DF42D /* NSTextStorage+FontScaling.m */; }; + 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B9C11862042751C14615E6498444B8 /* NSTextStorage+FontScaling.m */; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = C07EFDAF32E458508413BF17981E2CBE /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BDEC209D0DCDFB42D3449AA932720C /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 29712B2787A0895DF45ABF7303567E67 /* UMErrorCodes.m */; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F87E7247324887C6502EDA25DED060 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = BA9D2FECCB6B5D2CFEF057A94D4FCE94 /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5E8F5770ECA8C93F6E646F3C58A5F0 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 30DBFC7A4FF039C5917173CBB4D02D51 /* EXFileSystemAssetLibraryHandler.m */; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CCA1E68DD17EC16118BF6A816B65986 /* EXFileSystemAssetLibraryHandler.m */; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5BA069E6DFCFE1A8F4280D50172973 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7A2809E52A3687C547497BD4140144 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BE079B8D2C7A9BCC6894400A116A35 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CBE87B49688A20B4C0539F68B7A6AD /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04832F3BEF5457E9231DFA3A7B466767 /* BSG_KSSignalInfo.c */; }; + 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4A0CC84C0513BE8B9846E35F771239 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A2B89C600999072980916EFDBA63AEA /* BSG_KSSignalInfo.c */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2AC03835AA9B61E4698BDD1F320751 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D7B43E2AE0DA3E677F16D0D6ECBFCC8 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEC73990BEDD7E4402CF0D0F88A66BEF /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 474B6F3D8B930EFEBD3F53CEF5115FDE /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8363FDC00B483DC0C835683A720EF012 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = E278E225162A389E82A6B92D8C973798 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A96DF8044C623DB08981ED6E22EDAD /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8393DC193D20A5423A5F36D502C399CA /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = C11F232104618A6DF337628AD70745C9 /* FBLPromise+Then.m */; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 08794FC33FD652DF519C9411038FB5A3 /* RNCSafeAreaProvider.m */; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 463444A762A6DD6F36C8B8129303E5E8 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C19512123744F6A01FB35063191693 /* ARTPattern.m */; }; - 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D6285937F4C5F37A9E2C88FB47A322 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3E6D54DE7DAA1E0D6DF8F6D08C5664 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EFDB3D608A8D5F202D496AC45456444 /* ARTPattern.m */; }; + 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = E264446847198B24564078FFE2989119 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A3000D987FFA9375C5040F1D14A33 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE9A7BDC20190CBE6630DC4DBB08F1E /* SDImageIOAnimatedCoder.m */; }; - 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = AA6EF3023347BE8EA256A3376B273208 /* BugsnagCrashReport.m */; }; - 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 470D0A90080CEFFB6CB17D10B442265C /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A13372A97961B2FCEE907AF7C06F9D8 /* BugsnagCrashReport.m */; }; + 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F9683149B139470B2049608CBB1D7B7 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 84901337E6298387C7597F48A4244F93 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 17D9E3C037E4F36B08BDF14F3C7782AB /* FIRInstallationsIIDTokenStore.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C26FAC99C1D2CC6FE055A75273A872 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8502CB4758714A656E2ED14AEFBD8A98 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2CD74073247E0ABA4E1B68EF1547B2 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0E5A9598A5732F504D41A4D026BD6E /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B38653346BCAAAF6D0FBD9B612E49BF /* RCTVirtualTextViewManager.m */; }; + 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94923A18A7B065BEAF5EA283A6A12C58 /* RCTVirtualTextViewManager.m */; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8ED577628803471AA06F17FEBF0EF9 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = EF6442100B2F3E03EE075615215B4E11 /* RNFirebaseDatabase.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 23ADA4CFA5E72A90563F77FFD7F8D2CE /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F36BAC743B334156669AB5F54F5D2B88 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C5D16E99004CE5FCA141D0C0C3082F /* RNNotificationCenterListener.m */; }; - 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C3669FC0193628A02BC16ADE587B606 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 027A4BDF040FB5089179212613E3B3A1 /* RNNotificationCenterListener.m */; }; + 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFB7D705B4A5244B8A90E9D3A4A6115 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = A1D3BE504280FA7FCA187A950D48BCB7 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C1168B650CAACD421980E5F1416548 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FC7C9D569FFD5217EA66C11E24A7BCE /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C28A2F188C6D7A57EA5CE8B364C67CA /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = E12ABAFF3171D02F51399E7A8490FC79 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BFDF996B01A912B94084E492836A2C /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; 860728470F4EBC05ED4ED9EED2FACA48 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E7212E56B264E284F19A7D721819825C /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB73B5E9363EB75C4438BD8545B3E6F /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FB99886C1D76074BC6C12C7256092A39 /* UIView+WebCacheOperation.m */; }; - 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82B36E383DF60ADEBBF2C0B967DB1331 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 86F9D23859BB7C3DD7A1364A0F155842 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CD2540085B1FF02237224030B0C026 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AF05263F11E9264AB29F3FF7BEF7AB2 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 86F9D23859BB7C3DD7A1364A0F155842 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA5774B039E5920A5520A367E0DDF2F /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF837E921214E57FAC00A022F950067 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D8ED61E63B5660FCA1DE5968F2CE1E77 /* QBImagePicker.storyboard */; }; + 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7800D7967E2F4B8C81BBB95A0BADF9B0 /* QBImagePicker.storyboard */; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 056ADBB8EC7EC510BBD1C3834CE4F319 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8233B54E3EF80BE1946D22E0D87040 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E769E1378A9A173E93E981E490E214 /* RNFirebaseFunctions.m */; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E7B025D77E52CA63911A1BB4392E9E97 /* UMSingletonModule.m */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = ED7807348F460F24A6796E2FCAFF067C /* RNFirebaseFunctions.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1C24B6F59776BBD97B229E9442BEC2 /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 075EB1E1621767C17080076A7C508105 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 879A2F12063F7F3EC23F4BB0AC979758 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A55FFCE4292E4E32CA21DEBA8CFD79 /* FBLPromise.m */; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F83814029243EE4354E9FFC684BFF9D6 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = D63FBF4C49B281E4555BBCC76309B2EE /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = E4013C4B1AA5C2BFE507D71BD3A686DF /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C298BEB48D13AB7E5E3913EFC492A7 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87CB5DBA0826C9C8AB5991250EA3B6DE /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 146F95318E28047948E0F80CD3F6FCE2 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 082538BE48CF6F5FB00C13256377797B /* RNSScreenStackHeaderConfig.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF88F7711EA92D72BCF7BE7CE17068C /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 66493AEC9C83D25C8F263833D43F409C /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = A72D366C70148074E01800574416A0A3 /* ARTRenderable.m */; }; + 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = A4434D42050CE6D5CA8C346DB7F50E9B /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 416154B7E09202C63484462EEC3E15F2 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 87CB5DBA0826C9C8AB5991250EA3B6DE /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53053026D8C22321912DFDD101F6F9F3 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C72E95A79577DA868BD39B4664B30CA5 /* RNSScreenStackHeaderConfig.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 247B221CDE93B0F8AF6F2E1DE91C2178 /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = ABCF67441147F7505A4D4AE3861302A8 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 755629860A319CC7A0CAC31018519309 /* ARTRenderable.m */; }; 87ECC4C043286D06A575B38448A0A66F /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF64367666308B42395B49531BE2FBB /* UIApplication+RSKImageCropper.m */; }; 8809B9F0FAFDCD89CF323E1489AA3660 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 906873AE10D339C97F90587F4E912DBC /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FE0F244A1B099EC307B243AB8583E79 /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F9563CDBB00CE3D8E720F62CB0A9D96C /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 86FFF36CF1E21295B161A65D2B8EE256 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = C24EE1A964E34FECB1A87A875FAEE2BF /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9CC335C8C592AEFC9057636EA09D300 /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E5618EABF16B6BE7F3023CBED9FF456 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9858D08090F22A32B7CC8B17D0FD07AE /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A215B9092D5B963166C1F6BB749044 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1770,287 +1785,290 @@ 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF9E7AD61C9216985F645645C9725004 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8936375FFA316F9576C0448D9414F21D /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1455C4759F082E626BB6836F244E2C96 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C28D3AF9A04D627813C280AD720F2AE5 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D511881DEF6E8BE232DB99B4C55D462 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B21E6AB65C8B7873FEC458AC2DE69C /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = A1213869BBAAEDD07DD56606232430C5 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB15DBA4D06B0F95D1DC5B7E7E59C822 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 513AA54AD9587A3B06899E8AADC8E5D1 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89BD4AA4D3B1EE870D5BC99EDB0FD812 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 403827E274826CFF30F539519D193F30 /* UIImage+RSKImageCropper.m */; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B0C860DA24D708F454DCC5064D32FEE /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A313721673F604A436A4747E7320DAAD /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5A40FE1A90B848643C806855445324 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 0404F95004D73EFEBB6CDFEF3BF0585B /* RCTTextSelection.m */; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DA3DAC8AE5991BD58A0D8BE8DC6237A /* EXKeepAwake-dummy.m */; }; - 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE569434BA87224A4D37B3FC3A8C666 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = E9365E0F3C70A00DFFB73C55CE208FA1 /* RCTTextSelection.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92621C4B5A088E6D97328052B9A3A2D4 /* EXKeepAwake-dummy.m */; }; + 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E502CB2B7A1EB5FBF82EFA8C9B927F /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8D9FC9225755C2093E81F8EC58B9A3 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77DDEE62494C3D749EBBAB907565D1 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C12036796447184091DA046F4AA6FDDF /* FIRInstallationsErrorUtil.m */; }; - 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FD7052A351747D664E17F8FBE159F1D /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F31BC26CAEBBD69D8236CB7C324424C3 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFC97B991341A398907D208BF58A1650 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = F5E4192AE7921B806BBB7C8B4A0FCB3C /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4B7D09C49BFC8FA482BFC030DC70EA /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D78B8E80FC6143DC5CEAD2D643B2920 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C5E0DA99068CF1070E64E05D5F0589A6 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6BB435F9F3CA370C4BD2870EF8B151 /* BugsnagSessionTrackingPayload.m */; }; - 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE2D93B945FDF19FA985C560D0CB193E /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = C967A21D4DB245B24B51E5278EB1D7AB /* BugsnagSessionTrackingPayload.m */; }; + 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60C5527B609F93E18346725FD1B1F454 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8AFCA90D1EB93097DE2A5298C729381C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 4500DCCD43CADD1527758DA5F848FC2B /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F00B015E33E5B745D0467D73D56E61BC /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D5BAA503587ADA3BC8BCC6BDE01E3022 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE04235EC62DB7D7F29A3F37AECFE8D2 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD091C6F83EE0CD038105910C0ADDFD /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E0D9130277A6F3085653F6AA2A4DDD /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 159820A73CBF9AFAA0320A36EFA5E349 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4CE7744E6CF0D96084F2DAE299EF2A /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBCF12FDA5C1595B8125D84D561102E /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAFDCEEFCA09B8A7CCAD985AE3B2DC1 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32C0C15D205C2A456F02A54148A83B64 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 49A3B6F8D50B3FCE7D69AC55BDBC26D7 /* EXDownloadDelegate.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3489CB37C9B3ACDD44CF38EA4DD561B0 /* EXDownloadDelegate.m */; }; 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A39ED56B7975173BFDB659D2B177FE9B /* SDWebImageOperation.m */; }; 8B808C168BCC293074E1671A5CAB5432 /* GDTCOREvent+NetworkConnectionInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CA620EBE3855DA4C134916DEF9A7B9 /* GDTCOREvent+NetworkConnectionInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C00BF93B82F33D85C86DAD8DBD168D /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 740A733248063787C4E6381A9A9E6388 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 663730D6B97993DE05DE56E1E64A85A9 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2D38415C9BDA898602EC4847A794FC /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D0AA3CB733B93E960AB827FF417B7B /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CABB331FF8AD1477F019687C4F9B7A /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E598A4522837C5C56EB185F33A212F9 /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8AF113A509813E95166E06F0CECA07 /* RNCAppearanceProviderManager.m */; }; - 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E061973D73ADE6AD2D3FC6242AF841B5 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF346B1F539C0033DC89A3628BB4EB56 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 11CD4C8274BF810063EAE4979126E31F /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 98873A3FDAB5470E663EE8F658A77ABC /* RNCAppearanceProviderManager.m */; }; + 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F56F453B57D2D90F9DF91753E5A9C8AD /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8C0663F8B96853E59403275B7CF470F0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F85CF2A508228A89D77307670C09B0C1 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 4902177CAEFA56F1474E9DF0D3EC09A6 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A09B7FA3DD7062A06F4285D4E67E5D /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A27F1F03F7BC60CAAAFB4C8FF1386CAA /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3097072566A9C6B9EA6C6A732B54717F /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A6F0742B14C8D349D9BCB716825AEC /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 044C324DA966C314028D2F3B9D0CB553 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = D9801BDDA6F102C8A86A09E1DF885E4F /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E0016D738D88DC9345BAE075747225 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEF694E046418F4A639846BBCA2C17F /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B21BA4FAD083D3D105A46A5E31BD32F /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = DFC527850FAFC5440685B7384E42C9EE /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8F0AEC5B73D4DEDACF2423A7775BCB /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C2BF47BE08DBF3F322C726C702003058 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23BF276F1AE4E94777C66FAFB545C31A /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 74611F0FF9E1239B61D17756D647087F /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB82060F47068594888AF3BDE08E50C /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFE7F1F6FA0BEA225AE855A9EEFA10B /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AA3C18BAC2940042EF61B66E4F41113 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = F4A43BCB7FE9CD106969831D6AB8C82B /* RCTConvert+Text.m */; }; - 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C673959A553496A1DBDCBF78296E49 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 28506A3EC5990915B6009CD4332BA1A7 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DBC72BE4083047072D9F1ECAEED3CC1 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5668C85563C49F42A1762165DACDAD21 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CF5439AFE8FA90355B9679CB21494B /* RCTConvert+Text.m */; }; + 8D8BC44C654639CB1C472DD066EE1323 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9CB1B65131C59EBB47BC1727E119BE /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C86C06DD06CDAB3A0E9C5D8B39F53D1 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DBC72BE4083047072D9F1ECAEED3CC1 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BF95C9C73202A4F49C1C4F3F0AFD9C /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 781C771BC85D0BDEB37C406384502459 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8DD4A41C90CD940843CB7A6B4F271A0A /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE5A96ABF96049FAD05031B5C5209B3 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DE4C3A8FD9E0E1115308E2A4896FA8A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDD2425E88112600ADA145269B8A6AA /* GULMutableDictionary.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = CAEF7BF5B0D67EB2CA6B19A209ED53BF /* UIImage+WebP.m */; }; - 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6336FB675C2D1B8F98D5EB73A15BA5E3 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C218912DC56D3A549EA9EFA6336D3CC7 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 833769E4C7B4407A1F00E150E3313586 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E24982870C8E41C148791A47D487770 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B8431C8CFCAAB610AF5886CA7FB28F3D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = F885B7B43A41983387381CB7913523CD /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0694221AA3A53B75F96CFF7D06188206 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 856CDFAFD71C787B5428DB135424E471 /* RNDateTimePicker.m */; }; + 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF522805480D2064AB9453B7FE101B3 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD08559E2215CE06A3DEF7092092158 /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = C83D992973F17A2D65D6A56AE2411FD8 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DC59614A1FE868DE613ED3FD4498E837 /* pl.lproj */; }; + 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A3AB6894CE98026540443F3ECFFD15A2 /* pl.lproj */; }; 8EEEE5C24101D8A3A86527DA4A7B8D05 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B2E6604FDC38ABECCF787CA13EB2A3 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8EFE2147CC39B1A59725A0A336CBFCD6 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4570B2791DCDB681C6884144EDF39C85 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C3DEC4D104F3C26CFD8A08AC5D3426B4 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D19E82F6253E5548882A5A39A7E6B9 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDBEE17B3614A49EF2C714CDD27EC933 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E0D41D3C1308F1D00FB3F51F751B6DF /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29CF8ED071C75882C35B55CDD7CC77E7 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 556767749DE24538CB02EBA61C2DAA2F /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD313F7671D7B76D259DAD10C0545981 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8F7DA096463C9D570850B73D39BE284F /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B9E85AD2708CD9F2F57E0B9468C024 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B65F642894D6E1F45C6EF8909641D1A4 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F264626D6307524A77063BDB881ED581 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 183081D226C94A7516014E21FA983C5F /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = A7BAB4ED12A4A8C6D1E464A369EAE565 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6505D65D1332B88D851A39BF7B5F81A5 /* RCTVirtualTextShadowView.m */; }; + 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CEA15C9F028188FC76B20548085682 /* RCTVirtualTextShadowView.m */; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB2FDF9773480E2F063815824369732B /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8FDCF28C63DB7284C66DC2C0C26B8361 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9899F29C5C44523857D03C40AD583E /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C1B737D6ACED98AC219B441356D8B69 /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F723712A73CEB0A2EAFBF083088B50C /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8CEA997F00BBDBFCDC9BD09A8328D9 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2D7E43FE3D242C173192E4B29C7C53 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D67A48064ACEFA668CF1E62AC1632A /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8F966910B5A7FE6D117384001D8564 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 442F3E0569DAC8222F36443BF2FE3A97 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B73DD590AF901189F1BF4C326F64D5D /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 191CEB22E13262B0BFBCBB1ADF351C22 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = DE8F625CA9B70EFC0ACF66753B2B8C75 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0639111348B07A51454B418635743A /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 106EA4220BA45CD3242A9D0BC7332C3C /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05E86336AF4C6134869ADC56CB101B4D /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F982B0E52AB2E4E1B81DDAB4B8F60CC1 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 908397F13209B4A6E2DC2A3D5E34698F /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6BBDC47E1FA240EF6BEBE531278F14 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = F26B9C20AE8ED3D6ADB7CB19E3BE16A4 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A695A3AA87E9E2133BEA229916153FD /* RCTTextView.m */; }; - 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = E9091C7BFB49BB42EBA16E56F1E5EE79 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BC2564DE7D58D34C118892BB94ED29 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76BBD1CCC87BF6DB2FE482B80D841F12 /* RCTTextView.m */; }; + 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BD0F72902E48C2CFBCD65755A792B4 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B981F5CCF893CD06CFD03437E80DCA3C /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CF2394D44341B54D3A25FF1027D896 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90DB84A6D6895BDE8742C4B4D3A683E1 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64013498C54D3FDC3F3E3051E481C81E /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90E82D5D145841FBCB0ACDE8334222B8 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 423B63627875801FEB7E4ECA36A7EA84 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A673645F2A933818C12FFBA617D84A8C /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6294BE257860FFCCFBBCAB4C30B7A3EF /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFBB5AD55DFEB99A6804D89E7EB8678 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B72DC40E4D609C9D01B5A10F3D02E5 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 911D35D4C93E94049058BE6695C7FDC7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 468722DA6A5F7BF2065C3337128D6C37 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9120D7BE95FE6542993581EABF38B0DC /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AAF057173CD16FD65A7D97790566850 /* FirebaseInstallations-dummy.m */; }; - 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6B4AA6FF573E550B43BAD38ADCB747 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 437E9354DA6C66E56A1165795756265E /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9154E2A2238ACBBA0FAC221758119C43 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = BBDC1098F40796FF93B00BF55C41C5D4 /* GULReachabilityChecker.m */; }; - 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B62D8AC6B14363808EBEEDB068F1A84 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AE94C387DBEC7942C7E5AAA1ACC5C13D /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7A6D080BE05253E70FEBAB8FFECDED /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7633BB7F050C1951D0C020BD47DD5CCC /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = DA79BDCEE32104049B77CE508C31CE7E /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C9C6813386AF2B515E56A11F952C21 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4E68F669C74E03B1E4A8807DD3C638 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BBBE91D0AF7836061BF59939412153 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2CB59D2B895AC64EA439D8430CA3489C /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9211D95B45A67D2D9D76D71121F3DA24 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB6A6C8D18E3110A5CD591E1E7E382F /* RCTBackedTextInputDelegateAdapter.m */; }; - 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3175C4A8CDE2820D0086ACFD9E057C6B /* BugsnagSessionTrackingApiClient.m */; }; - 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 36CE6F3BB9C5E2A84911F0EB0D50A85B /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8227AB0A9A09777A728CC25B4E49D9A0 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9211D95B45A67D2D9D76D71121F3DA24 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E7FEFC8BF31652AE75D2A6B5CCF97FE3 /* RCTBackedTextInputDelegateAdapter.m */; }; + 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = AE43C7E09828679BC5E0A82EE1A9AAF3 /* BugsnagSessionTrackingApiClient.m */; }; + 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF99D3FA1B59D96BFE371B6BAC43F123 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 928C9250DEB2ADD3214968107989CB5D /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B59FF69585BDEA20ACADA68A597D1D /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9296946BE070ADED28DA5560FBA45DF9 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E79885D71DD91FDC77D1CB86B4BD3CBC /* Folly-dummy.m */; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 05F0230F308837451B51927D88623BFB /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = DF178130FB35B0F86164837E4125CEFB /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B0944DB26F68CCB5D7A81F49A1A841 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1EC5203FAD2AC4962B29F5E1D58C7D /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D54BD1D2775DA26FAF4EC58342DC59B /* BSG_KSLogger.m */; }; - 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E500DA4066B4BC698E1361F118D3F3C /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 974628B8ACD3D80A1B6D7318CB062053 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C68CF456F99D500678CCA5E50593E0D /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = D64AC27FE92DADF4D4A9DB08BDCF0F8B /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 393719E8E07E42AA1712335F0D76BD52 /* BSG_KSLogger.m */; }; + 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = FF15DF6D8710A1D72E233A78C4A9D239 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 26E892040FE11059CCF8A12CEA7F3B3E /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BECDB993277765FE62AE6DE2877481E /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4297F5B8A71095E993382EA72EB207 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = C4281F09B0FF90C20173A2A5F7208B6C /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BE0352323548C847DD880E0DBC955E77 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = A35240F890D8826F82EBCAE8F7031E73 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EE446FC64B653149F646C077D3D934 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93ED1C2CEDC4EF1236212F0C80858B6E /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC64A0DCD2E0046255CBC400D036418 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC54B43CCBA34AE2D53C896C74590EF3 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB13EE6221F7F04DB19CDC1B6BF557C /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 77FE8AA76FBC75C95712E64CBDF7DD05 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94392DDD913E886B02C132A930C1FDC8 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = E170B7D134F5E84EAF48809EE0563194 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDD2B97131CA882E213597CBDCA850E /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = E710C1D3477D55D637DC898F5F428EBC /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = EC3AAE80D1E5C3BADB28EC9A3B29DE80 /* Bugsnag.m */; }; + 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B38DFD28341D689393C7AEC5C063A64F /* Bugsnag.m */; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B2B7D58EA6528FDE8E517CADDC63A1 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF43181C64C05A4B88B9E5CCC1E64EA4 /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D5215B0BDA835A65F4F5C7BB27358B /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A36CE3017C1F5A32EBEE065CC8855CD9 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94F848D36732CD838F5B99C4A1D7DDC5 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4983905CDDD9456E7C6241113749DD9A /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 771C7455D3701B1057474FB9F506696D /* SDMemoryCache.m */; }; - 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D562CB27EF0CD57C3A99A65A07CB4121 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C07C9EBD2EBB6DC37055104767E8F838 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B832C63D25434FE443A3C81F86AD4F7 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D73E1C4D58ECC32A0A82F8BA5C9F9912 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E816A440D4FBA6227C86874FABDCD19 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF3E5BD2D554C6B5A5D4612D81996D2D /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9569D11DD8C2CD434F2EC5127AE425A9 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16BF1CF862DC5ECF798A50360C0EE160 /* GoogleDataTransport-dummy.m */; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8619F3D9A8BF6B90A22609360BC009 /* RNFetchBlobProgress.m */; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D20256C34296B182165D221419D1583 /* RNFetchBlobProgress.m */; }; 95F1E18B1B527539D5BC182C5A5CD857 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4C9F319863A3E9AA126317EB324BB45 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59CB52967B9B2F4C19B7E23E0D0BF179 /* RNGestureHandler-dummy.m */; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94190577BAEEC37307893DA822D0BAD7 /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = BF7B9D2F15D064D840EC4BF5CE4EBAF2 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 845C6A19B3074C49A09BCB6248F16EA5 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 966E01EEC48EFD1ABD704047E3F90F35 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; + 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A060F3AD7FF09042B53176DE4F6BE83 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0DAC4DD8D8FBACC1E5BF9B18820D0F /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9690E06E3CF2942C7D7DE920D72633DE /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD3C566B079AE99E3FB83982AF9C545 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7F14F402D392BE57FBCF2876E86D236 /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8991A73760A2F18360BB91029A5BE83F /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C705896BAD401FBB44B192FC89FEA9B9 /* UMPermissionsMethodsDelegate.m */; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DA23FA802004150814858F296B06E271 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F0EEDDF0CA1745BF7448FA38B67DC5D /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB132F1D2D0162CDB745F6AFFE24B0E6 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C51737D911AA7D429A0EAAAEA91B08A /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97094C87F27838DB2641D5B3F6F747AB /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECA2F21A68ECC4CF80F79A32789911A /* RSKImageCropper-dummy.m */; }; - 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 344569415CFF47FE8C46071BB022DAD8 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7191EDD6EC5DAD69F0407AA2C1E31B /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90642D89B48A1B3A4ABFD9C1F3CF9950 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F7E102B8926396E85BF47205E1D5F9 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A174FCBA44E8253E94EF53F873F0FA6 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 458F564036F6CE604B89D8C515B85152 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = E9BD7F187F6E115CABDD9ACA7CD9E61E /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 978A1FA62E59BA87B857CF2C45096E1D /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C88F5C427133EA7D692D9CDAD62D6E29 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = D6F1FB7F281468D9F70331029D55677B /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 978A1FA62E59BA87B857CF2C45096E1D /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85677DAD4E22AAA5382ED8E3BC3CAFC3 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 979243DB7BF5C1BFB5966534EA7F7651 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D49679914FE70C3E027D9C1C08D5A89F /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6444B470DA21473DBF1F1D8A6F8759 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE33B318F22862F845097FDCE5C1058 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 97CF55B7E0719297FAEBA79CD5D37988 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C6CA8F62953BAEB0F8092434A7712E9 /* GULSwizzler.m */; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66519C9B614BF6B46A85952E3000445C /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = F8C50783CFD36716694B2BFB82E2A781 /* ARTText.m */; }; - 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2102EFE53A7C0C91FA921F01113D4E9F /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EF3CFD6D2537A28C48B4E8261ABB906E /* REAAlwaysNode.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 826B3447206F1745AE60ED9BE8E12E35 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = BB595745BB33ED2B6577CE4E3F7ED950 /* ARTText.m */; }; + 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 264B852CD3B4070CAAE523CA5FFBEC83 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8379467A8B0AAD43D48CACAB090CD6B5 /* REAAlwaysNode.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 582B4B4EF40968FFBF3C53E67990F8E8 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EBC6948C77C9B0D5184C24CFE72E60 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B6E93E99600E2A2E78D6C3DEA82A418 /* FIRCoreDiagnosticsConnector.m */; }; - 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5665317E931B100A95C5273B3E7900E4 /* es.lproj */; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2C80C7FEF0CA0511A3B8DC9B6DCFE9 /* ARTNode.m */; }; - 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4912B19107CF8813B0F62A95D0E2D787 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9AFEC1A12795E05C8A3BB3055E52B65A /* es.lproj */; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BA71CFB5BE743092D975B4EF33ABE86 /* ARTNode.m */; }; + 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50FD58598508C4D9DEF6F64BFFDE308E /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F04E64E8FF9D2C52B118013BC6D9A64 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2D51761076F23017FE64D5162CBD54 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA47DDEAD4D6754F88945C0073C0BBB /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 881C4D86EEB867E8AB55429524C164A8 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 96433AB848C8B2A54945D7CE0E979DD4 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 104CF4B92F232BBB09CCF7D38A500E48 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 139C71A179C549AB4501ED4EBB6C2E10 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A66471CD4E68165E386B80F895A3994 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A2D17258539631BD6BC5307CA68D32 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 70CF7B10E411379B8A9B9B282F9F0E69 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 77BD6C3E902223EC8E562A2F277B8BD5 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = EB65F5A086F84B5E1FEA590AA5BC08B1 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B56CD397A4A2CEAC002000DCD9D39FCA /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = BC31893C8BDF4D8D27AB86CA142274AD /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94EC70748ADA5F6290455FBBA1C057B7 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD7A183075FACE684460A00E3C0C0FF /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF316CBE0CA5A9ADFD961E4ED274B55D /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9AD8AEA336F32F6C793213FA40B07ED5 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 194B36E18F29E0A2E52DB40AB782A1E9 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 910EAD3A58F99D239E1833FF00C63016 /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53735EFB9F05CB52643324CC9137DE1A /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C703D5C07CC19F15EE6FAE4467C349 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AF3AC333D8D973E63790414985BCCB4 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D86963372CDF935FEFEED1F8C0CAD1B /* FBLPromise+All.m */; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE97EABF69D45AEDD71B127285F5E10 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACE1A5C881DA3FEA888E20C4DFC8C85 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 218B28488234367B1A4CBAA2AEE25A54 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C2BF47BE08DBF3F322C726C702003058 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EB39C88DF538DA881FDC025AECCB9EDE /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9B7D2339739148FAF357EB985200C2AA /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 763282B0AA5AD125E8AEBE9BF2A379AC /* RCTProfileTrampoline-x86_64.S */; }; + 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0626132BA2BF2C2F53356A32CBDABBAA /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9B7D2339739148FAF357EB985200C2AA /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 02ADEF2EBE6BE74990926B31325535DE /* RCTProfileTrampoline-x86_64.S */; }; 9B9F376651B01626682667F916263D33 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF3A2D266889D108A68CD6120506782 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 722F3624449979188DD78BB8102CAA1E /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD5C89A00C882B5641B92D6C5C232A4 /* EXAudioRecordingPermissionRequester.m */; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 529C3029FA0D10D8FA86294F3CBAB092 /* EXAudioRecordingPermissionRequester.m */; }; 9BD1674F1714F428A9214FBECF3A70CB /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CA04D250814BDEC21277B2753E7B70 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 720D21980C4FD7A27028A93A4AB159A8 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A2A948A775EBA953523572A01A49AA /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC622BFC4F3BDE0B5F0FF8E48845FF3 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C36A97CAC32C557FFA180623410217 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF4F688033FC594C5312350D5A4196F /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 42344ED6709C5B76F5BE76C36F1A379C /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 353EE6C33FEA1FBA2171E022A6BD897A /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C5F0C01FF4777F79659AD5434CD88E2 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B124E865FCBD63DF12A08FEAD8E5204 /* GoogleDataTransportCCTSupport-dummy.m */; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83E6DFF90FDADE4F32BBB866DD612256 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9C6C20D5C4BE8F71CA3D3F1E8F3587AE /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = B52681B3182A2D46267C820E3699F32B /* SDImageTransformer.m */; }; 9C7B992227884E45708C42CB4298926C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB7C439EE2527E9C516911B814DE34B /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8A4204A992218DDAF54E9668F13942 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5FD3E1D74D3259FA481688301021082 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 288B2FD89C645557E49F695B96129A2C /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7098AE63B044F73A96988D1642E4D853 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122B0301CE97FCD1569C75445060E4F /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD580006324A9490802733D59817A1D /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD860EB0F92142ED856AA5822697739 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D77D248D8B76E924E4417A4D9800DC /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6404047D3496F7DB92FABA6C69FD367 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9D1919F4348D2AB5D0F25AFFADD7441D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B6E1CDA83E69E0B0606D6714E7C127F /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1D5ACB4E714B2E52F83C05C0217AF2 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B0821E0D1250AB35A564499E2E20FE1D /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0DD8C4A06C5E44518B3A2593C0DA33E9 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF8128D5B323B8A9C9ABA1B70795E667 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CC2E34550AF64E3D44B047C4BA76E9DA /* RNRotationHandler.m */; }; - 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D042FE2D16C91036D259168ABF75F5 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53C2EA867FAAF4242F4816A6E06D4685 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C204583E3149ED5B14004D44F70870B6 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55D0A10204E528F27BA1071BD8E43D9C /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E14DD5FD83AE8B00EBE307C8DB6C94 /* RNRotationHandler.m */; }; + 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D5043F42CB101BE1E6DF266ACFD6DDFF /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8E50F8C628C76761489E50813FF2D3 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE53859ED47C6A11187FF0D51E9DB7 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9DA028C9DC374A8253C86095F0ABA99A /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B845AD51C1A4A59B02E3A86BD260478 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F928DEF1F4C03431EB6FC20885D5B7AB /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCB30F91675C5F551A9D5197B4C4630 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDC933DFE94D62C79CEE810609054AA /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FCA69C255F8634784234D96A3DCC72 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF2675301A1914717195CB49B661D97 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E2A037E4D6EF9CD80A27514CB192F30 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CDD0B49E53E253DD76070CD5F430567 /* FBLPromiseError.m */; }; - 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E6ED70362AE84D52339DFDCD6DEC4D /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC18CABC1AA9DE5692F38CD043A8C45 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9085EEB2F8F0B25479E013BF16B992A9 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EC667309D8613638DAC8246AD6FAFD /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF3DD9B9C1335E737870C0ECA10AD76 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 125B7D56D814DA4086EBBB0FEF39A12C /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEA2CE6EAF463BF959C6C469CA77AB13 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9E8CCA67A59216B83A6C4121D4FB5DFF /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = FF36AFBA13BEF7187C587D6256176EDF /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF85B78C24F26356B7E17B438D4F25 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9ED08F4B9FE456E72BABEF07510E0F65 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F676EF261CAEC55075292BF38B330E3 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 9ED9CD281FEFD9101F2D8BB98BCFD18C /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F6C58E2DF711485E4D992D5D375A5F /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA6B6E5794DE17A73763EDA7F2640C0 /* UIView+WebCache.m */; }; - 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 54AB5A27CF7AF667A90DE266F7CB8121 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FE57B27FCD352BE6A537713A07C9CE57 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD6578E9DB7CDF81979D963425A34C54 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9F3B692ADD43E5DE7C06A18ED59A21F9 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F5319932C25E358AB24E8ED53D4F06 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F5B9F9DE3D91E7196A1649FA52EEDAA /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C2FF9BA9CCE6CACD1C2EE9F1144420AA /* SDAnimatedImagePlayer.m */; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 60550095E577D0A98614076646C46E63 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B437B82D8B38DC6D02A8693715AE253 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3556FDCD6800754D6B7E16B921BD577D /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9F7B5FBC79EAF261C231ED68CCA2553F /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2CE43D327AA3E39E0442DC0A05A471C /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C0091405189CF95A94B6A397A391D3 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA505432C2032C9BA4BAD4F08387688 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 289AE4B553F18EA71E4E9D558239950C /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E99A0DB12E82102F2DE919C00B00041 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A3F3F6748EF1A7AF335A3A5A8D5A59 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE0335CC2830147A383C618C7911125 /* react-native-background-timer-dummy.m */; }; + 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C390E75F283ABC888301FFBE52BAC4 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1BE94E9EB48F52834BF5C9CD2CC1AD /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C75BFFAF2381944841560A7E0DDC913F /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BA63F857FA550BBB06710A27D5F76B84 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 3305EBFCDE2F3D9BE8746FA55736C793 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 564FA813A54C5B41E4AA514B0CE1DB19 /* react-native-background-timer-dummy.m */; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9DFE4C128C09D9E5EB1FC370C41194 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FBA2F8AB4723FFB9D43907C4A5D4475 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54895ED019669E05F7D101FC8F1DCDB6 /* EXLocalAuthentication-dummy.m */; }; - A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B90C3A1CB6DC08458A426E77842E86BE /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3224C69845F199046B556C08D2ADBA96 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A57397291785F67E789FFAF67EE42D81 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = B3143AC7D783B32CE3A0370B189EAE04 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8962A3AB1972A134062050FD168AEDE5 /* EXLocalAuthentication-dummy.m */; }; + A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C7CB6B1D4A3E3E2C7EF4A816EC877A /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3C5F2BB3CAF7B49F02185D0568A7C /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 140F3C7FADB9625463231A741F09EDDA /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A110C4BDF27CB8ADE103964E9B1D0CC3 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = E16109B9EB664F918C2B6A019364F2D1 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD00D90B96515E7533FA8D18F3EDA47 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A123B51082FE44EDECB490C88DE3DFA3 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8D90F5510EA5AE35D352D016D356CE /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 84B32B7E450CEE8D7F9F6783F60C6365 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE9110AA4A8337DA6C2C3EEDDC1063CE /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D3CE8CAB00766CEBF927D74F2EC9EA /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8813047D84809D331325E58DD5EC4EB6 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D564F5D27CBCF3B8EE77307584E0FC11 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC836E3CA4CAEFEA4101E7149859A6B8 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BA70C156B019DCBDB000341D0DC8E967 /* RNCommandsHandler.m */; }; + A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3C56EA8B1A865CCBEBA9138B63E16E /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3123946DEF3421A12E9BAE834F1E3C63 /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F7137BD4EB80F3CA17A5174917F1E /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9AEDF7296D9AB36C796BB4D1DF4150 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = E730127AFF93894208BF52F0F6F84552 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E41D4705B2AF08A92E7AA63A1FE5E258 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A20A1BF93F6FDF11478EE34FB8F18CDD /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D109AC973FD41DC55B73F847B8883D0 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 86AB7F71AA8FE9CDAEF69AA2BAAA4788 /* RCTConvert+FFFastImage.m */; }; - A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 59484F5AEE05BEDA82F47FAD83B29F58 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7C2406EB26E7373D603678D269F1956 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A20A1BF93F6FDF11478EE34FB8F18CDD /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C41320A799460C4301E8ADD1A4D045A3 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 212466682BAE7E9458E3FDD6DEEDE465 /* RCTConvert+FFFastImage.m */; }; + A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC0D0166FB2595C25A22DF7B58C4BA4 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; A27018554691D73B87FDF4C4F38FFA5E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D434058588DC6E842D3D280DCB00912 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A28AC47E8F23967C0141177DB4D7DED4 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BA08779651371D59B6301A376C146D7 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A28AC47E8F23967C0141177DB4D7DED4 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 149CCEB54C1BE4CF3A0ABD79358751EF /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A28CD67E44E5F6FC59426040908B323C /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C78C720B773766CDC9BF8BBF340064 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2AC30DF5EA70858EE380D76BB0D7697 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 137BE22EC1DA14334E8037D1A9899318 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2D4FC56C5FBD42F95A12900620C2A65 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6725480D5B0F92AFE93DD41620842F0A /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2058,65 +2076,65 @@ A30A244FB2E4A6C5EB09D2C8567E9F5B /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 399409442F56DEC163C87052645635DC /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; A30E24B8DAB4E9B313DEC9A9B3F70A3C /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE0B63AAB7455814F4D4F51B9B4B0F0 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1E2E8FE98F9ED5FBA8DA6B061E3CF4C /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EBCFAF9789A05515D413DBD56D1F75B /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3807015D1473BCE97EBCD824F4768D95 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; A33AEAE53F5DA1DBE42A13F0F7180FD1 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCFDB9DE0425A466516DDCBE25CD777 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D30A5F6D4E615733B864938B01F86BA1 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = E28015CFB7B823A373528A421C6F2923 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E8689A50EE60D9F440D25B713341A5 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0A7ED31841E9A3740388ABBCE3A723C /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F3129C9A17E6ABFC260135095287CC1 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8008C2A3648EB9169EDF02882F4F9DB /* React-CoreModules-dummy.m */; }; - A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = C34E79FB63B5C9B536E757A351874A8A /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADC6B5DBE17D771D86A3EBC8EA82292 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE927DC1A757903BC5329A45A38E866 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6D0908A5C598184049B728C746E1834 /* React-CoreModules-dummy.m */; }; + A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E6358156D78B68B00D4BE4D149283F3A /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 83951F110FBE70C27DA463137C925BCF /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4CD029A18F4685FFEA2386D5576A90 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6414F9BABB4450A280B3232696EEECE0 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7776C2F0879E5D6476A807AB35E0BB0D /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 37A89F466422593989BBA494562789F4 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A43091390B40A7894AFABD8004B03FF6 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DEBC69C72FAB86A6C4D57C7714F19C /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DDDC948C5A7095855026FD526CB2122 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F5614EA1B4E668ADB31D0C34B9BE29A9 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 02ED9359D57B349ED403CE99D1BE1087 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B470489174C16CAFB511EF1E74C085 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B97E97DB7AFAC13D5E6F157E5593C7D8 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8CE58616903C09E8A1A7FE375264C4 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6FFA316C5E886501F769E10E6F04C2 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 953F040C2DA4203914670D7DE272A385 /* FIRComponent.m */; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 39775A8C0155C941E8CC5EAA9FBB4C16 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A5366E641B196D18C36D850B6F32803 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C66CD3BB081E6B8F5FF09E729538BCD /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C03B2D351FC20816E45627C7934C0AB /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 27597EF3FEFC3AC072E27C9F5F3756D1 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8900F07EF4F2C1C02C4706CA08672AE /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D6692C58A15CAE118365DE54D97957 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A578B94A41F41F9D07A358C7D2874C0C /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC5712BF038099E2747B83FE45D7F50 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = CA157BB63251460C2FB19C6500DC42BA /* RCTTextAttributes.m */; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A589512E058D378E9A880B6CBFD571 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = A59A3367288ADAB08AA4A94015AEAA17 /* RCTTextAttributes.m */; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = A77464EF37DA5927C152BFF014210D1F /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 064AF5CA1F21861C4AA9F8DF36BA0773 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A2DEE319766A8749B0B5CFA95F0B5E /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5CBB0D2840E7F615A3402D241CA4A5F /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BB3FF4F7D0EDA8A9AA4E608685A043 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5E0249E14EF89BD7EE9DC4EB19DDC64 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA23D31E9D5059B476C911DCAC4A323 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 25D52BE28A98C19C5268488B71CD037E /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B989233D2DCFB9B2D977F11E269CF3 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 708124D377851987935E0BF6BC3868F9 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18BBCA01DF008B8037000EFF316ACA32 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5925DB433330BD08AA33FABBF4FCA52E /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E7846734562A86F0F18D518A1A103385 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF34DC4EA797B9793EB476CE82E4909 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B6F9F585F3BB8BFD7D6F872E00E288CD /* UMReactNativeAdapter.m */; }; - A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF998B96BCB4359B5AA3F01412F8A10 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 94AB3EA544ADE14FA2198F7AC7905656 /* UMReactNativeAdapter.m */; }; + A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F09EABC9DB13F31C94C4D730AD53D8 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EDB0192FA9FC531B82B0AC8C991FF9 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 20944B96277506C92AD6C4D908692FA5 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CF76A83910FDABA60B616D8EEC9794E6 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 201506DCFFE14B340C726A0F0563D72C /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BB49A7A88CDA666966A40A60D0472B /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE445D0B15F8DF1243B7A0F53F6CC68E /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A7255A0E5A0B85CF61AEC27F539A8AD1 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 53874D6EBB1C2337463823F2596E32C1 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA407246DA23AF877A0AC11A59FCC6B /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 33952517031EF6D62F284EC8A4AAE650 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; A748C7204AF3ED67608DB14125036794 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 0519831A7389E3FD1F01F9B872C14C26 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A96DF8044C623DB08981ED6E22EDAD /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A30AD162DCF22E87A691AFF5A79B779F /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AA18061B5817E5FE1A408600036362 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 753C142452FC46968E9DD7933F00877E /* Flipper-PeerTalk-dummy.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 89FA77E838754CA3661D42AB224F42E4 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A7774B196AF28DD549E0CDF4807F7B08 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E8026D2B56521C2BBAAC34B4B75E48 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F89AC34C60188365F35B3219B72C38C0 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = D87BC4659B21C43E2DE2DC8B806E7DF3 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9F1CB2823C667DE211588F81B7E924 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E964FC44F2AA7D4C3EF7A41690D224 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A7BE4D326DF6F9381E4D49A1C6A2F6D6 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD224B7991A06769084E373BD2C36812 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA63B2B338AC0F862E40D79C7F85CC77 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BEFD36CA4DA8A5B84DD7172A8E9535F5 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3726B6E0CB5EBEB17A4C0E84EEBB1680 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A98F0C5C2BBC051FE79A61AB612C24E1 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 469DD77831E65227AA6C84B6C2B2AC01 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F775CA009736DE4DD87CF5B45C553E53 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 94A0F0C2B168029BE21DD002A1D3014D /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F10A46E052312AA2D141721324EBC6B3 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A82A71AA973E93441F2A2C34E1D2178B /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 963D71C0E93EFAE8B7D88349754F9DD4 /* FIRInstallationsItem.m */; }; @@ -2124,198 +2142,199 @@ A83DF000E730CC16B797CA08DB29B9CA /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = E702511CB604799D32133909BD9C08EA /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B72E9EBEF6A12B5430864B87015FD3D4 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A86F7C0A488320ED06BFA2B846DA26FA /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = AE72A5CF938D526606C348B5A2B8B6AC /* RSKInternalUtility.m */; }; - A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CAA18AA8123A3DB5C5CEC024D4F408 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D0607D2C9B9408448E91A74F6B78F6 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = CF550F99EB08E3AA6E5C3F82120A71FF /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C6BC0725BD672410A391879277ADF7 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 018D4EB55D0B81E4E0A8B0C4EF13FDEF /* BSGSerialization.m */; }; + A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB519AF1317C224A0079038A6E765DC /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA86B460D2D7CF23574D4E10D10EF7A /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A43995AA71DF326C4A3EB8629602CCD /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 32697D5DA0B612CE8AFF865E3133F083 /* BSGSerialization.m */; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E43EB0F46632FA8C2CC6E97D21978FBA /* YGLayoutExtensions.swift */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0BE974166196D05E4D701E3EF40D0C /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0094CAE67569F4423CDD1130F0BDA500 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A91E2FEF560C2FB37C85DD84F1B01CFF /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BE24F4F18839DA0DF090854262D0F6 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E549D723E9E63DB2CFBF963489EB1B49 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3555285237DF241DFE5ECFC129B82679 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FE2ACF3C60F48E6F74E827FC5BDB82 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CA934B616778A58F79F91943D21AD163 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 878349428891F192D307BD872F246FAD /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B4E0907E49353C8762DA9148CB0D9F /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABC7ED6892A1D14E1B7C12C170D4345 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = D81BCB488A688F932AE45EF8B3C5E5B3 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = FEE9B003C81BC9E7F57A1FC4BA2AE3E7 /* BSG_KSCrashIdentifier.m */; }; + A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FE28F16D50478462D0AEE7BF714D884 /* BSG_KSCrashIdentifier.m */; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F03305D95B13901C45D0E5D488973FD6 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E316CC578DE8070D330283949D4B57 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 617B59A4E91152675FA15196E979E7D4 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 43534F0D85442B9E619CF5E9D9F45B0F /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = D8371DA97D7FEEE4C56A59F6B3BFC57C /* RCTInputAccessoryView.m */; }; - AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A086D8B73A03B8CEE89E861A4C0CF2 /* QBAlbumsViewController.m */; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 033AEAC06554EDAB089E06D94AD09569 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = A41064C9FA8F1A7C29EFF9F8B583AF54 /* RCTInputAccessoryView.m */; }; + AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CB71456404F9CED77678659966DC7E12 /* QBAlbumsViewController.m */; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B78C6A4B84127419E4C2CB6762402D /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA71EAB157D4DA18A57F72BBE833E954 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C57CE1955BB7CFE1A4709E580CA99940 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = A90E37B9D68B7238C8515BEA1EBE91FE /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB27E63FCF76C13097FBA46FA2AFC58 /* RNFetchBlobNetwork.m */; }; - AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C2607EDF9EC549569171AE3CDECF5D6 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F543489C546E88E54FBFE968E7C4CB1 /* EXReactNativeUserNotificationCenterProxy.m */; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = BC7275CE001F4FCC4605B05417942BB7 /* RNFetchBlobNetwork.m */; }; + AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34B9077B77809D6B9B552D2BFA10F8C3 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F66E026AD4035C4B969CBBC952928F48 /* EXReactNativeUserNotificationCenterProxy.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 457ABA7722CF7E4B51B0F0B3990BACA1 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 039260E4EB98C38E56BFE23345A91046 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 373D9CFD1D5D8E68722A9BF8BA08B629 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 803326B8F3CE781120385D0CEB449FA4 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF1CB55BA567376FA0B97F48D19DEBE /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0C50C0B3F909061C6A5A0892C77B3B /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33F85B092F6064A0ED2AA95A2188EB1B /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = CEB3C3DE564317AFAD5D00F480B050DC /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8769A6EC4F2CEC678F0BDD10CAC141DA /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4176701C84EB6E9A4E05B9DA78F07954 /* EXImageLoader-dummy.m */; }; + AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F4AD38E0B6EC319AA34AEEDBD78E6F51 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F99470B4CFB1DFF0E1519B85AFA600A /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E789D47D086753F372989959FF35FC2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53651B34A56593ECD757F02DBF8481B3 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A1973F6B4BFFA90839CC5187AC944C3B /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 226E7D30DAB7CFB6A19A218FBECECD21 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 92007FF67C73E7C4B6A81B82D3A7810E /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5B84D8D191ADDAEECEB3851DFBC0F6 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABCD3CDD7AD0B48F038E8BDF3399A5FD /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 216CF2691BAD265246BFA60A93ED9D42 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; ABE4C7F45E23A98AB7CDA0ABC75E19FA /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 139202B54DD94BAC1B38C9EB2380E47B /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = E1744DA8B3810869EDBEFD26A77EFD9D /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9AA65A09BAC02C00A55ADCD67D1B98 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 7120A386D905D0ABD4459D5329E0B215 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; ABF99A187E110B6F62BB3441ABCCC206 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9A451D14DEAAA3AD94DBE2736F4F4A /* FBLPromise+Reduce.m */; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 069DB67EF6B2F8AA995630F6F9E2282A /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA6323AE8935DC7449DD61F1AFA19DC /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C90C73FCAC18187A8A58E68D7D0F1752 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; AC2A4B9D1168607041C3A0DB2ECB4636 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 685E1F09883F281A395F2B2B7981B173 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C1EECD30BE7CAFC6DB0F5AF8F0505687 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BCE74587D3EB3186469314D0C81FEDB /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; AC32932952C3DFEDD41B409756F6F777 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = FB73DF7B7BA890A12D30D59FA1F2774B /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA0A23C08C58D1DCA329D63905CF3F8 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D317B01532D8171FD0933F1D90EDB1 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = D670DDBD2F6E5F61745FB208D43BBD5F /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C80263B941C199881AAD0480066051A /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E00807D07985A020D4994F136EB84FA0 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99410C58C15B024D3AE97571C8B66664 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ACE7F710533E4AC5D694E89A3877D51F /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF0D0EB4C41A1552334AD771EBF534C /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B246F05830DA278B41314EB5D4633A40 /* REASetNode.m */; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13839A8281BCFDFAEAECA7819DD04C4D /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 97FC6BD7C0618EAA750D1B4108648ECF /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E215EFB6073591F6E2FF5E01B38E345D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = DC38D47D2183CE72DB38D9B69FFD5ED0 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = D92001A2B343507491B58FAFF72599FC /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 405FF0F93527FF8267B2465C55E555BA /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 13073D43FC4026FEFC9288215CA8B051 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A10F34324B6C322E444D3BEC47318B /* SDGraphicsImageRenderer.m */; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E8FCE1223E014EC5357983B6CDC36E /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1039BBF6BD28A96EC30DD7CB8F7FA870 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2CB39E6AB98330E4DC3B91371B039A /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4CBAB83E3C0050DBDDD9AAE2B6D40B /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F0FE5864F9B46E49560A65B71ACD345E /* REAFunctionNode.m */; }; - AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B399C7A1992ED828E225323FB85F8A /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = B999E5DFA1D22363CFB1CFE9C6015D24 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 584AD821C7438FC4E7DC0A8807F78FE4 /* React-cxxreact-dummy.m */; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FEE12A9E98B8D825BBCE044BB9BDD0FD /* REAFunctionNode.m */; }; + AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FF0ADF5DC6D3FF308AECA808C0C7E30 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = AB627D2AB477CA3CD3CD2976B9D5382F /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C501A1A12B23A1737140EC045E0289 /* React-cxxreact-dummy.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F767B24439339E2DBC2EDBD71881066 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B718FA6415F3DC19B116A3F8AC7A80 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BC5891678C02779436A1B9553BFEAAF /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D896DF889FC496FE599DB11FA9E0D3 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AED318D41C7F3BE4C37C7FB57249C483 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 15C0951EF4FA4F461B307CF6F26BFAB6 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B5997DDFAB6A5FAD9C4F0995531D49 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC14D37AD94DAECA2EAF070894A6381 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F53C113A3ACB2993EE41CEFB1F9BF31C /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE82107C29630F32A5E1A14E8EB1803D /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B06148A16E66822E0D7B561CFC1EF7D /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; AF05B4B144F28758071058C7E8FD1640 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CA48016AC8CF0F80FC04D682B01F9C /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 97DEC7A80837A1FE22297238F6EC9BD9 /* LNInterpolable.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C50B1B626E2C3ACAB2EB1703D353DD47 /* LNInterpolable.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B38CF963E4B5EBF6F336D06B440921 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; AF94C7B27B49E1FDDF351596F49886B9 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B62D7C50D2225FDE4B7E2EC357C7E69 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E827B7CB614E1DB064A1F38E83EB9BD7 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 123BCBAAC647F3A369933558170BD9F4 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AAA25DC9C51F2D3F1B5D1BBE81DD06D /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52E15219291B4AD1CBB4041F5220B7E9 /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B02A53EAF212B4BF6CA79C1D9501549F /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 950DC6BA39A9B2A0B4CFCBC9C5DDE665 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 23DAC1E3C5C972983376E3AECD1A9444 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B04C1E49A57CACC60F17F76082838191 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC964092A03DD1B8F70526CE98F50B4 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A5BF922FAFED826AF8644C774A3DBC /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B04C1E49A57CACC60F17F76082838191 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE9D6D7F0077A5B4EDED9DB57BCFD8A /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7404418532E9BD80BBB9405C10211C52 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B05C48490091D1554925127884D267CE /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = D07C68A89645AB0B40080D5FB18AF91A /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAFCF05956B7A5E5240AEB63CCC16D7 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9FCF945444DD05ECD9D1A6D9CDF2D2 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 786589B89ED794E83071FD6343477557 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FDA4EDE4B25D9708BBC736A4F655E23 /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AD39818092F0D18054A817784F8F211 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 62EE3DA6C710D0E10B6C47CF18F77326 /* Color+Interpolation.m */; }; - B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 103741A2144090DF1A48E236551CEE6B /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 9989D8C87CFAF525EEB7533F576B3082 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4032C4C557F3A1F04712FAE17E9EAF26 /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB6982058473F3EB5B8DA8791154910 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = B99C92243C54BCFBD07F15E26C67CFBE /* Color+Interpolation.m */; }; + B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2967776DBB8C2491E39D6BE35D0275B /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 474A87575CEA38A9E52970DFF7AEAB43 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B199F4C45C3FC5E1C5EAB6EA690EDA67 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A3089E1AF3ED6EF31C8F1B27D7E3FA /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19C8210EF9AE5488C1603055CF085D0 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BF519A127C0E7F964AC9FF650FD7AAAE /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C6CBC0C1CB06C8DAD383CE6F3FDE6E4 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B1C08C504986DA3CFE5A380DB723081E /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D1B133318B83CC336785C91785D681 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D4DF2E82D37065989833E6A83E8EEE /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B744F59D1C04416D041480E8946D3E /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 640F365C9C39E33F7051B6B2E8AABF04 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7502B382F060A689307030BFB63EC280 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E40DD2E9D2404F4D1228100017FB63 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F4292B3183BDB41D5DCF7A2AA393169D /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = D53718BC29C85D0BE395CD5F24D48709 /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2D0931FD73BA4C466DCE30660AC049 /* REAOperatorNode.m */; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 16BC366877988251F04BB8A901CA5FCE /* RNFetchBlobRequest.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C30C1EC16E4D7BF1E3192F02285C77 /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 847F0DE87D9F5EA07C384415DA780F83 /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = D902F332899320E93E02D84D939FFA28 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 650D37CD871A2C3CD4502DF5708EDDFA /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B2A1662DAC4C5D56E5DBDE9F7A56C09B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68FF22655FC4BFBC4E4778A6155ECCC8 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F7D9AF8CA85FA31381F3C1E5A53EEB /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2A1662DAC4C5D56E5DBDE9F7A56C09B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0E451936088034A8C77715E4FCCF7B /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC73F3CECA41478519413F49926203D /* FIRConfiguration.m */; }; - B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF16F3A983A68C18D330F4FC8A9C3CB /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDD9AD6CBDA0656FB33DD8C1354B565 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B762A6594DFA43F71BC11583945B2AC4 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3103FC5FF8511D79937ACF821502A3 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB132F1D2D0162CDB745F6AFFE24B0E6 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F67073A4073D195BC1CBBDAD46DF2D7 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 1435A5F30752CD73BD4A3E3394EB0EFF /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = C02BFBD577016E09BB0A9A67D08B7290 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B33E52DD3539A7CE133743B32AA0A785 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DC7ABAC6A190D72BD38D21F3B51E48 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E24FCB4952C86FCF76EDC7C1D0E561E8 /* FIRLogger.m */; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 599970E94039218125B53C62427803DD /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E0FB85F1F43F23D67F27A86FC4F4507 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B410AD52D34F133BEF01D2BEEDFABF8C /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5017B0B57226A96AB971E2D67B3EBB0E /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 73470A8CA74DF138D1D5F0C11B70C4AF /* EXAV.m */; }; - B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 22703DFA8D26FD60D1C756C16D301C94 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = B65BFB447E1E82D26B8A2668394062D0 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 67692094518366EFF88C1CAB1E920E65 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 971C84618EF8366D2D580C321CF40114 /* DeviceUID.m */; }; + B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA2060F52377558351C43D46F0379845 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B410AD52D34F133BEF01D2BEEDFABF8C /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B25B2B339EA2F0D269DA97D6979384 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF7C10E2CA08CA750381E0305B01342 /* EXAV.m */; }; + B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = D0CD50DECA479B51EAB670564F7B7B7F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F0473BC278863B6BBF9D7DCC8A3051 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FBD94102E34B2FB6F59A4A6E8F50EBE /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A944B362F74B5E301A83ECDA64AEE10 /* DeviceUID.m */; }; B50672BBDED3036FC7ED6BF41CAA049D /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA4E2E650FB2F10CD6B28690D080A14 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AB6BB53E4F9261BD400BCA26111B30 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB8184718A34EB222FD57DB483C14D /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = B979A4CB03603E0FA6E963005C51FB3B /* RCTConvert+UIBackgroundFetchResult.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46043EA22750F5C014FAC7118BBA397B /* RCTConvert+UIBackgroundFetchResult.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E26D4A9819C02B1477264B691BBB58A /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A826A64BC18F13FDF783C6AEBCB84E4 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2185D5433F48B8B084131511CFF6F88A /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1568F3D2E05D423FDC41CFBDA6C91D33 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; B6593DA8207ABB3E1214F7D025C2AEB0 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 498C62399F6E7CF8C62EED33F4268C25 /* FBLPromise+Delay.m */; }; - B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1612B5B2E0995F0BEF81686283D1DA /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 578A5E424AA39BB8736B92C23E06C35A /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E67B37021122702D85563E203C2FA96 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D018CAF5AFA03EE3483AF9FE1B9AAE /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B68CCC3524E9472D12E6E84D5D64B33D /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 99D0BB4896A95C56B733C88FD61658B9 /* FIRInstallationsStoredAuthToken.m */; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 76598B6A6BF3D748F21701E68BE3BDBB /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 326C1C8C0F48FC5A36BCAA9A48BB4735 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B089CC535E5F78ED62E11BE31A32515 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 644A48572AE4E2E8E7D7A3D898C23FBA /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0F2E6BE8BDE409BE62FE776AAE5C15 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCEE67BE04AD6AD8026326D187151A9 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BE1BA1EAFFFB8328E7F20969E2E6FC /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B759270B24D2CBE4F50041D28432CE75 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 2149CA39B150BD8657AE5F8ADF6B95F2 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; B767F6175EFBE5741993405BBEBE97D6 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B090899F53FC663285262C68375363 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7DEB3E43E56226ACBF6894AE3C077389 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 54245F296835AF6CDF72895DD82B4148 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC9046FC579AB3098D2E25E77291FDA /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = FC235C09984F2578184426088A6F00A2 /* FIROptions.m */; }; - B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 63940262A1C022F64E735F4B35879C0C /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BD8F0F05A2995677B644E6C936AA2D /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61B997809B2EF78B20C8B716EB9FC9C9 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 58FA7CFB9960B64D469F5745D1A48216 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8D63713F558A5393BFBC8A60477607 /* react-native-notifications-dummy.m */; }; - B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B41FAD9295CEE62A146EBDAD4034123 /* BSG_KSCrashSentry_CPPException.mm */; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = B64D2CFD82134D018D8D9BABA5A2A8EA /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6E3D47CFDBFB8BA79AA8C7A1BDD36C /* react-native-notifications-dummy.m */; }; + B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97C7F766B25433997B07B1C978B966FC /* BSG_KSCrashSentry_CPPException.mm */; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D89DE4A9E5689C45C23744162FF7B0D /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 26587EC6A915959D983534FD3CECF9E5 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 651256C1092CCF9365A098FE18AD3EF5 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1842A48AF0D9C5453962C98B9419C9D1 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1BF29072A4F7C70FC2C39711F7FDF4 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2767680CE41ED19D766E69468F280AFD /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B79DBBE85DC254ABEF25C5D20CC1299 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B81828DD93DB85C0683EE36DD5EBE95F /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 789DDC8433638B37CEF864380CBF1BB1 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A56AFF80E1ED8C00875162E82D2EBBCC /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 00947C580ABCC7B722ECB8D7D351E6F7 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FFB8AAC78F63DE6D89521A6E71CF10 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 697A1FE1BC8E72A3D866D5A6C7558CB3 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = C74681DA52AC839FBA23E361D4BD58F0 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8452766055CC04DBE28676D43F70E27 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A55D36F697A657E87352BDF4ABB357B6 /* RCTBaseTextInputShadowView.m */; }; + B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D94A4FC53AED68F8848D4EA0F216B06F /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E0C1D43ADC74B4277BB727935011CD8 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B8452766055CC04DBE28676D43F70E27 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC76F239BF3B62D1ACCD0007933BDF72 /* RCTBaseTextInputShadowView.m */; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C64C4B734B2F6E62C632650F55CB49 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85C42718BEFCF4BA75650A4251641CF /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E2516D63BEA2B740D3E80F31D007E2E6 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 75CE5261F6D214187F4CF7BE26545838 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B89AF5E7D20106708B8A403401C035E7 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 56DFDE0F7096307BDD052E55BA03D153 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68323286233BC90E4D00487AE01003BF /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D8835DFC24DE1B46F747338F9C259C6B /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8CDBCB2063AD7729F98BB1F42114206 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = B64C39B4332656AD3F2E4E6BCE0650E5 /* UIImage+Transform.m */; }; B8DFD92B4164576447420BA5B4E9657E /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 627254BAAADA6D360990561CA2616E52 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FF725B7868244D2B9354B579024EFD /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AF33804C90B2F27596A938C6965F0D4 /* libwebp-dummy.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = BAC48720B210406AD0EC07D11DC2CEA8 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F27B44B59A4C8BEC4464D5E3A0BD22D2 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - B9A14EB621D0FB90A99FFEDBF1C4C5A6 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B2839671826EAFED28781707F8DE9A /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 25AA79157C4CDF8239CC3B7D64E6E39B /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = A7C2C3D21B18AE4B88EDD6EB6D07D636 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F36AC0A2988673A0B698B47091BBA36B /* RNFirebase-dummy.m */; }; + B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FFCAD5827966A8DE8809D1414255B0E /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B9A14EB621D0FB90A99FFEDBF1C4C5A6 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10444C68A034B8B32F03D93EBBF935DF /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 669FFDF2DE29C85E089E798B671D17B3 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1326137DEEA71E097D28136A3A4EC4A3 /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = BDF673AF32381A3BA2BFE10AD51BDAC6 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = AD855D255D89FB3524D71E5CEED339DC /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CB808C88B742A4B8D226327B0A956C /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 950FA3E66045AE57058D56A5E8E11B95 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3481A38292488F28E5A6CF01D5EA7CCE /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1311FD33BCC6D1D96DA1E1320127C8B1 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = B4650F6C3DC189303955FCB4A4CDA802 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = AF0E780D6DE9CF99F8307B297E6DC820 /* UIResponder+FirstResponder.m */; }; + B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DAF4B359C47429B3B0D698854CA7E83 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = A5B407CB7FB98FE235ED25666DD2A4A7 /* UIResponder+FirstResponder.m */; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C51EAC64D5DC8E7AD2158B3EF4BE014 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = D44BAFFBC0BFBE6966C8552BC70F1388 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FA37A4BB3A256BB3748C57BCFB7444 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA8AF0CCF12B99D7536C662611ADB1FD /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3A36A060481037E0B081A183379270 /* GDTCCTUploader.m */; }; BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C2CE01C00846AFEA01081D39470057 /* SDImageCachesManagerOperation.m */; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8E2E8D839F67FE9206D7EB9D49D047 /* RNReanimated-dummy.m */; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C26224BFC9F7CAF1BAA53D76D222B62 /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C60021AE285818245003443143D156 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = EAD6E7A22E4E9C658828EBAEFFAEC007 /* RCTProfileTrampoline-arm64.S */; }; - BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D11326AF5E22AD70B87CEFA2511021 /* RCTBaseTextShadowView.m */; }; + BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = E138989E28E0CBEE52F963CE389779E8 /* RCTProfileTrampoline-arm64.S */; }; + BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FAF2CA43B8035437F93508EE9003AD7 /* RCTBaseTextShadowView.m */; }; BB0E48F804C4577F614C7C4144E7757A /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 172F043EAC6C52FB5E4FEFBB8A7414BF /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1523F18E0B2366D278772A51A931C03F /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 565BE9B8724E8F9DD645CFB25EFE6CA5 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 787AA91E97EBC57A19735F2F1F6F0331 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = E0EFC858D0ED3A74CB8DE034EEDD6482 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4E149D47C8711B5127CE4B75308EF1 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB91AF0B1144084593E5017E91C3A237 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FDD6EA6431F87023A34C67F0F2AE41B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB290718569F62EF6393B2E7A71FFA2 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; BBB4E8EEF50C70033F406A49F2040ED3 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A393F8488B18D1536D2F02287AC8ECA /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2323,46 +2342,46 @@ BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0A3E4E88F1771BE23E4E08DD7A2FFF8 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BBEA2040AB1AB4C04EC266B5965CEA76 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7907E3054238613ED46592ACB57C28 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3389D4D1E3F77F09829A7ACD37FA8A6E /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C6B50306C26E0721495E2819F67AB1 /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE507CE36D4C90FBA38F2E85F6EAAA3 /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EC99C72D868B3A7BC823FE6FD40B3F /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AB94246FA5A8587DCC2EF3CA5347550 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9155BBDA5E01B68FF923EEB79990AF4 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = B670D78AEA5F1926FD7248B63B0717BF /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2C183AE153088411F27862D87C05C9 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = D1E2D7F0FB127ABF03333EFD5456D65A /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 487E3FEF367BF978805E546FCE64BCB2 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A85D7A09133E03844A2CF18195CB8D /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18D0CB006E723541B7F52759180B45D4 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BCC6BAAAC00E3426AC2DF5559231EAF6 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4BC5627ADCB3CCE4A573EE0F1D5FB2 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4ECC1133CD66CE037AC97303759C6DB0 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BCC6BAAAC00E3426AC2DF5559231EAF6 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0AE1F909E2334BA4F0E4BDCC7D9C45C /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9104ED8685F165F835159990D4F58E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2761477FB5731BF97BEA495423F22DA4 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0BEA946E0C90DBBEEBF2F1973FCE675 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9A0CBE1AD6DCD05AE84E373E91A0DDA0 /* en.lproj */; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A59992915560BF800EF136C199BE56 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 36B1EA524695A5235642D338CFACE993 /* en.lproj */; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EB48D9F74F32170CCC452CF6783E97 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA8FBB1DDA1BB0BDF1DD400099651DE /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD30D501178A064D19E7DB0BDEED207C /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = F67FF5C363C76D77ED33D6D936A9626E /* GDTCORTransformer.m */; }; - BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2BC50D7EEE7D5DFDAEA21A82CDDBFB /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 410141CF3DACA5A1583864981B69968E /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BDD8E02DC0DE315460C8452A92E64F0C /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1859615519D2E48F8924D355559455A6 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BDE17974FF49ED73F08298CDC7E01D5F /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E5E494A829407FF8BD55A891B14826 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 270D70A64C3266A193849A260BD97F8B /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C6707F29DE74544B084E88253702C8 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B88423B41F85BDF119CA2DFADB166825 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FDE73B387B1B21EF6C22D33E8959F3 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8221DB088F1F97FA01608BCBB7F6805 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BE6F8D3062484095226992E20BB339DA /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F02F6E994B9537FC420EA54EDEC36571 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BE7C61DDD06679BA1298ABA9CF18CDA5 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = EC58DB4A0FDE2AEE215C48D99BD4E6CC /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D58017FD68E21AD1CB0739DE13EB5F3 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = D084E021ABBBB9628CD914A2E7AC035E /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C7D1B455671EA056C902123DDB90E26 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E4E2648211201464652B1487C44C900F /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC79CB545AD11717DEFBA8A8762449C9 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BF08BC85875ECC5F80F249620BA6FF98 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = C73D217F3AF5A47F79A4D961287F1212 /* GDTCORReachability.m */; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA51B1BFE86323A2C6ACD6D95E5E6EF /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2E6FFB04F6ACC99BB3534E9D6BEA9E /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E63113E3489FE47881A391D1384385D /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA07EEEB8570BD73E25EC6F93C4AF90 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 2EF16A2BFE903141A47F30D5594332D6 /* BSG_KSCrashType.c */; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F073E2C45F23CEC46CFA3C6C56AC232D /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B67AFD966DA52D78F3F3FBEBDE7E78B /* BSG_KSCrashType.c */; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3ACBCD984A4A11C1B429B020F1B81C /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFCC85691AED43515CACDCDB566E10EE /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = A706122612151D161E2D2E611C819ACE /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FD41CE98D7D05B469DDDC770F2F8BC /* ARTBrush.m */; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1FC6DD984AC4B54F288FAA832419AB8 /* REATransformNode.m */; }; - C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62A34B35C1A364C4C3B805970035DF08 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CDDDB2FC493FE58DBE223EE05AD05F4 /* ARTBrush.m */; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C3E84FE030DC137DCA3DE564F34749 /* REATransformNode.m */; }; + C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F2D8B1A106F59DD53D8F961BDA2346D /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C057DE004A17A3F8D3B35D884C28C883 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E0D02970C5BB6EC2EFA5478256E115 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = EB79F4597D795053C773D200E7806FBC /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06E0853195162D78F258D0F541B2CAD /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = D9FF6760F7D70B64394EA79D41B64CBF /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2371,225 +2390,228 @@ C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 007F51799207C1556B23F3D8F8C1F218 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FA06D199CC04C071D159F75EEB0F8D1 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 604670516571B225E964B9ABE7EB5968 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = A349AC60BFB82575AD48E2570B67616A /* RNFirebaseLinks.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E106347AA5264F3182C3270E9B7D23 /* RNFirebaseLinks.m */; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFFDCD49160C16CA5FD6315148B4F07B /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E8E63937BF12BB805261FDECD7115A4 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 659B8AFFFD1878996F6262A0F1A9FCF7 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F08A534E16C64957338A0CE5064E4C0 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4442821F5922C2837AF490FF6733A42B /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9B0C29282F358A364C74AE8CADE12A /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 889EF24E336C0DBD6F2AA7C10180B272 /* RNVectorIcons-dummy.m */; }; - C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B39312FD3B2201859257A070D87CFB58 /* InspectorInterfaces.cpp */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BC28A84E005A3F640663857A5174AFB9 /* RNPanHandler.m */; }; - C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 8216891CE27BD9229D26AFEBE1DDE84F /* BSG_KSCrashSentry_NSException.m */; }; - C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0D891B9917DC61A336F36B31390435 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A3944BFF7C3DD1AA2993E0A8F21D48 /* RNVectorIcons-dummy.m */; }; + C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D91F1C7FC160F085A0887B9A504B834 /* InspectorInterfaces.cpp */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C833509B4E07D36E97B0CAA0070E83 /* RNPanHandler.m */; }; + C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 865498C402B4E5F0DD79725D4441BC07 /* BSG_KSCrashSentry_NSException.m */; }; + C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C910DEB0F6609AF005E02036652D748 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 965529006449D25900B4312A5DF2523C /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D86C30001BA5E9D611749856BA32230 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = D86404E62D00A42BC3480DCEFAD40A6B /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDBA3B64038AF0758E644C9E892DCFF /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFA239C0E10FC59D52C8F0953ABD1353 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C29D2737771EAE9744B4FA2AF8CD3927 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 6592B5D56B3CC715C8E023D48FCBE105 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF92CE034A458C57CFC9FDD2166F2176 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C29D2737771EAE9744B4FA2AF8CD3927 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6E14841088CB752B6312D567BFFFE9 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E00E9A2E6EC961FB7015E670B330551 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCCC5B45DC4C92260E3A1D64EDF619D3 /* RCTRawTextViewManager.m */; }; - C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E6ED3E1BF88E5E08B9B9EE5B8FF6C2 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C55A44A457F10A97820FAB548C8F44A /* RCTRawTextViewManager.m */; }; + C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B10E7B4093EA180B50CC5E3CED277E /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E15FB8F7DDD721FF85A6AA2F26F77F /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 8812DA8998BC9C1EF976D122B2926602 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E92B76B0F8521D83C293ABF6FEC47F /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 570029F8BCE61753E91796B10138DE8D /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8141F4C2DBBE6FD9F84261552C9F3769 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF6E5EC72095214FB6546581FFEEE21 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C39D561E85EFC337D50ED754F7246617 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B08EC2AE6AE6421C1E5B1910083B1DE /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 2546AFE3D6A648E1D8534105F0BA411C /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA30AB7E6366236B2B4F6E429273B49 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = BFFC411F07683C9450E4200CA2760991 /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6109228AD003D537CE60FBA075433CAB /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F4BD11D608B29BFD0B2EA33C846AEA /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4897EC7EF5071628F652E107B67E97E6 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9FBFA4C50B0AA6DD3EEC0DE507117A /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = EAAF14D40D6F62A759FF979E7E42189A /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A1302FD8C4F8F08CA345E43026D50654 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6FB009D4E50D67DF92F21F8DAFE5BE /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F327DF5D1EF9193E97A40C31E991E13 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3E036FEC576797A6BFFFD89A6BDFCFC /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 26355BDA8ACAED4B5B52CE2D7896BCE9 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E14453F764B48F93D114B6F06DB8F8 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A284E5C8ED6619014004F9F23BADEB1 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4121604E1F1CE075F2594D362577B7E /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D6378D7C4460E3706422526FC7B02790 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E894D8701031E4689BFAB19375BBE00 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB3A635E372DA342C80E4E1538A8189 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 677328F64B117500B16665C480D5EEC0 /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C448A7F24667926FFE2CA75A251C6249 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 218C9C4CC995AE9EBF1ECF84FEFEA9EA /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; C448B82E54D115C72AB59F4F6BE72C16 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = CB1D4B7E31F361A7CF4AA4BEE1246517 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 12C19293805EC77DC2BDFCAADCA85745 /* BSG_KSMach_x86_32.c */; }; + C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = ED01C7BBEE2469668C100E6C64B6B39F /* BSG_KSMach_x86_32.c */; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36BC595DFF8CB1CB7E39F0DEF96F5EB1 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CD59214E1DE8393CB0AF4AA12F4FFAD /* QBSlomoIconView.m */; }; - C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1668B746F551A9C3C748163A58E17CB6 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C49DDDA4E8518BFB2BDE88FDE0C8A5AC /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE14EC7C43D3C7E2B050C14FB1B7BB0 /* React-RCTAnimation-dummy.m */; }; + C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ED941F53DF92721599437932A10C44C /* QBSlomoIconView.m */; }; + C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E94FC1C094B87AA5B9F330ED67E9B2D0 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C49DDDA4E8518BFB2BDE88FDE0C8A5AC /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BDCF30F98EA76B27C11322BBFACB3F /* React-RCTAnimation-dummy.m */; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A068B00CB30837397FF64FE68BEA95 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C799DB9847D6998287999FB00A86550 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46726F35FDD4FA684D6C10085DD089D1 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EF71BA9825407811D79C109B9096405 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C4ECEC9864CEFBADAB76ACF75704CFF3 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B160D2C5FBA458FEA51D4041D0BCFB11 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5711F1C2346B03337D5B19F4C3979E2 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBAA5A67FE1FC63A1065005C74D13EC8 /* SDWebImage-dummy.m */; }; - C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E55BFAD3423459CE004497E04F0DA7D8 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 710B3241F8E7A3841B4E7BFC4FE094BB /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; C54D5160B45A0C5EEF25E42C9361598B /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FE46758639181FC6497B58527D37A4A1 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BF4DB7E982E0A4109C4C15028DF1D1 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DADCCB5ABE86FFBEB2A6AEE8FCA5959 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD3BD95CBEE9A68C6902C24B54B5F36 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E4A437404DFDC3AF95DECB10C31E21 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C653BA98A073B45B33E340C973D86D /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF852D38B1E23A6121F49AA814196624 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C594A31CA074A02AC4A482543C626257 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B19B592656BD9CC8100E880516AB3A /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC37DDB0719CCA56D903B6D979E7AE3 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C5DD3BF95D9FB28F7148A8EECE77A93C /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3C67CBC936295F6A47DC85A4720A3B /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7892AF4AD3191D445D336955F63664EB /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5DD3BF95D9FB28F7148A8EECE77A93C /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F1014F239236BC5F2F41AB81D21B01 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; C61606AB4B09AD3974A7A65C762E5F1C /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = E41635B0C90A557F36FBA2C3F7213926 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE49DD992C7A34FB3D18DC5BF2EBD6EB /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB7507710AD9CEE099C15445BF9E94A2 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C67E74CD75F4E6B9D8ADDD965B00F75F /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2D12A063B372699162E406DDB4F6ED8 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D204EB057FCCCC304504A18638884AF /* ObservingInputAccessoryView.m */; }; - C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = C04F4DB4A4F8808EC3E0FF9F578B211F /* BugsnagReactNative.m */; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE890AED702E2B7D65D9C57CA1C84A4C /* ObservingInputAccessoryView.m */; }; + C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E9181469A87B74FBE318400C549AAFA /* BugsnagReactNative.m */; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C856EA4C772FC5D8FDF1B227D52075BC /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = DF2C138D2CA934EE90C3FE86A1282AB3 /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F65ADC86C3EEA501595787CC5B00FF0 /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9FACF7BE8CABF1A8C5A956E9169D20 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B58C5BE0FB638D9C4152C2BBFB0541 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6E3FFB8A72569EFE2929C9FCA7D9009 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63684F773F68086B7AFAAF0A6C831AFB /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C6E8A155E4A808F940A640CA96DCFD89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2C325A320B7B94BD286CBB4D14D1FC6 /* React-RCTNetwork-dummy.m */; }; - C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E134AE584200180363135F28A52B21 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7D11B6321D9730F81486436992CDA244 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C6E8A155E4A808F940A640CA96DCFD89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF5DA9FACDF827C7904FE02231E8A02B /* React-RCTNetwork-dummy.m */; }; + C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C2DFAAE79C00DD3A4A99DCB8ECA3B7 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5550464D5561100A4BAB8AE0084BF335 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C6FD6C0DC9F80A90245FCF4CA62032FF /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6677EEAD784A5DB213F7C91D9A820EDA /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 8819F7EA9C0EBC09B4A9BA91D2714B72 /* RCTProfileTrampoline-arm.S */; }; + C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 6A01959049459F6180CDF12E9BF2E794 /* RCTProfileTrampoline-arm.S */; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9D28C1FE5235A48F4E83F0AA0C01AA /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E775840571C0EE3226EC1C1E0D2D89 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 760BA912701FF7BACCF4B8550FE363FD /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A08106247C981C9CB70A47A55548FC /* Flipper-DoubleConversion-dummy.m */; }; - C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5D636C30FE99E5DAB7889D8B45D927 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C31BEE6F2476A4FDC2F64BA45DB58C0 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C79C1C099A4E3D41A76FCFCB94D45A0A /* MessageQueueThreadCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 51186CB66910B367DA5B0F86E043AE6C /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 12465FEC11132425BF0FFA79B10C0558 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63A4E654F582CBCE2393A56FB247C076 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C79C1C099A4E3D41A76FCFCB94D45A0A /* MessageQueueThreadCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7675103AA92A4E8D188145E91E92730B /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A173E1725C1373814BB51FE821C9FC /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D0C35443EDCA61DC536A7777222CE /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = A35FCE638532BE2CF49A83FA6F049190 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DEC3CEBDF826564BC379BD72DAB258 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E008D088ECFBC0055C52C9B8FFF48BE2 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 941320936BE5D0EF4CFCB3AD914D1BF1 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8126B9B4A24FA3479FB554D1A0C8D1CA /* RNCMaskedViewManager.m */; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F19B1D2D1D3E6D0CDFD362FDF60E68E /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DE12EB18F60EB078834BDD2559DCD36 /* BugsnagNotifier.m */; }; + C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 90B55EA33B950C64B25090F072B8B472 /* BugsnagNotifier.m */; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C520D41113FE32C6C9167648A90D442A /* Flipper-Folly-dummy.m */; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEA148826FBB5E958D57D606913DCE4 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE2EE1238802256D8C114B7D3785328 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = A89985B8D6B7454457C079CABB112119 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 40BAFE338E7AB738B25B647E7368DB91 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD4C88170E5E9ABBAA25E326FD4556DE /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE955A99A27ABE9C59CA46E37804FE9 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1641694B922617A51FF834292C8E44B3 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED85ED2327D4E496F23675F165E5EEFF /* UIImage+ForceDecode.m */; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A46952CD02BADAC04BEEB04506A8A8BA /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6174B53535E3C2D7F3A81148A70C18C9 /* UMViewManagerAdapter.m */; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB422D3B76E77B2B06F217E5FD64CCF /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A03BE085C2E0CAA3999ED8B435C119A8 /* UMViewManagerAdapter.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23798023D9032C3422CF7ED2CD4868BD /* FlipperKit-dummy.m */; }; - C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E6EFFB3070B08DFC8252B07482F4119A /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C9EF8A6C951E50AD3B3D88D47A9D569B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA2F82971CB6B4A0FB1D42C333FC510 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E1DE80D90C565FAD31CC5F26AECDF252 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C9EF8A6C951E50AD3B3D88D47A9D569B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = D42E726424ECEB4787BA7B6C50BCB3BA /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1368C23F0865C4AF480A3E7B1C7A33C6 /* RNFirebase.m */; }; - CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FD88920F54E5D82BEB3D0960733A6D43 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7232E249FE89B18F30E4C70938C4D1EE /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = F9AB58141DE09EF4AC8B4F0FDA2A9CD1 /* RNFirebase.m */; }; + CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B058920ABF87FB0263219FD9D0228A1C /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9872589A0210618DBDA33C90F6F9EAED /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CA358CA581FCD7B53B91B2DD197E9052 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BE86EF1665A73265C0AE5A2B03F40783 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA424AC6B355B3DFDFD75FC85D27D2B9 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3DB6A871C64B1CF548EAF68DBD8C43 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4555182B961E262F7A5D0D88C698AAEC /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B0CBF67643CF4AFC843A4A0E8AB977 /* Orientation.m */; }; + CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 52FA14C797DD21BCB477C6135376D908 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = A621B444001C82637FAD3190B2A8A5F1 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 14497A25CB2E5E21FE9A71EA9FCAEE44 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ED14333F4EBF2AFFD8909008BD5B197 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 855FCE02606A98B69A4A7D2A87D05A23 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA8D0188358400F296BEF9AF39B41632 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 412F3CC7709CF5225D74E43E35F39640 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93252A0BF5CCD57ABB693879E346D7E1 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CAB7B5DC1D0EB61717767389C3232654 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 19AAFC294F13245488AE17A972FE38A4 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E427F8C2B44D8CF78CEC01889E3BF9F1 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 268669962E4E6898FE9E5F2C0D61A886 /* RNEventEmitter.m */; }; - CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FFF89AE1633E9A24874A6CE6AE3A376 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E533079A5A60ED45D2840B8F31B01B66 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9E5B3EFEA74F851055B14191C29B87 /* RNEventEmitter.m */; }; + CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = FADDCB66AE8BC9E7C8DFB025BAD562C6 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CAEA7F7BBB0FE8A1CC81D246E71CF1A6 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F6B673866A97E956ECA208E93D2EE5 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C2BB83A4306C3912617A2AE64EDD900 /* UMExportedModule.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0A359FFEA665944E4B5F90E42E6223 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = E27223DBE11DB2DCA038BFA3CAFEF7E3 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4B0DD7FBEC49BA7A3A041162A97120 /* UMExportedModule.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C7E4123287CD6897A3CA379BE17A43 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = B810357A23274F0F984C0685A76D3696 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F1CA2640C620519C4B83ABA9AAB387 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = C256B4AB5F0A646BC74D4EA362C2B2AE /* RCTUITextField.m */; }; + CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 97DDBC044CE7DA5CCCE4A31EF03BAB65 /* RCTUITextField.m */; }; CBD6C33EDA705688C4E4D90AB9F52DFD /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = F1FED56A0BD356904BFD90C41C60BBA3 /* FBLPromise+Timeout.m */; }; - CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E7C42D7A2310AE8516C10E6533BC74 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB218499B4C9284587F25025E486F1F3 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0BF4E7D7ABA5FB0277499ABD699F4C0 /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 856998D7DE4FA54F46A5A82CDE190BAC /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D48981D86849DBE434AA8B89B6DE997 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6318E5B6B7DC173B03E2ADAA68800A5 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3B44B0EE5021D9B6F9B6FDB5B2FB27 /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 274F0C5E12F8002678AC0075BEC38942 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; CC60FD647487AB617149066737938DBC /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 761CF731D02089080806F374986C8AF0 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D5052E64C6BD6F5D2C5451252F1AA7CE /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED028780FC7A07AFD694814365F7FC6 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E689F576977D491326DE28FC2D88ED4B /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DBF4D24AFC5285B24DF28C06AA633AB /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = E55871F9C2198B66272FDFED3493DDC5 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35557C57F235E90EB2ACCFF11F014BE9 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB68B1029621082D6F3449180E194484 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9651FFDA71232B9C625FA26E0E4BF509 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8D197A0AD529686EE251B7CBA051CE /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F15483934B6E08E8CEBE2CC5A1B465B /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 889EB709C390ACBB7ECA585C09A3EFF8 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85C82E96EC245B8A90B9ABCEAE93890B /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD2B6D719ADA2E1D3B263FE4F910F46 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3878F1E993194C0070DF632755735F6 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; CD1FB10AF746E63E2B5968C20FF87173 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2E7263666D64DD3383131E446D675F /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD52A4AFC3FD3D2461A0A97D88D9013B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D09D3B346118EA147B444C718299AE4 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CD567A9B1C02C888612E19605619CB13 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 129EF408AAB22BAA1FFC899CA2743286 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD6E94CA433866EB0CE7F4274BC0D7C0 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DC53DF962492C30428EE3CA2285C86A7 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4961AAED3E78164AA1A4FF8BFB1179B6 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF267CDF7C5FA740D80DCCE1093F7B7 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = FC08E55E970220E686A21BCC4171AEB3 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2C6FFC9018909DCEEB59A7AC726E5E0 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75FB45C7226ED96D42AC27B019D7C154 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; CDA2E0586EEA705D076F557E182B0848 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E387E9A45644C2A715A8254E353E53F /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C494FE127DE6F7613B8BA6E29CC9087 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = A611367A07420ADAB8576C1B142EEDF6 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE6BB988C37FE97D1678C6BC28C1501 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7007E718875B8F5572CFEFC35B2EFF4B /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CDE265747CB7B6A680D6189792C377CB /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8424E56E214DA123484849471B9F60 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 846069DA7B6068262E2C3025790681B5 /* Compression.m */; }; + CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = AC1667AFA251D0B12C4A273F4A6DB8F2 /* Compression.m */; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 6841A78971D85A941CD8351ECDA7F450 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 393649E868C1F3608372A39A3CC494A3 /* RootView.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BB8675C806A5A0065A184F76F86922 /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = D161D1CD4354D0B6D9B314DFCA658CD7 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2347F1D47BD749FDA5FA70F9B5EA75 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 00ED0947E7C56C338297FCD518F450BB /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7030118430C80140E88194810A2CEA5B /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EEBD729D7FE97E7BB56701E5707CB0C /* React-RCTBlob-dummy.m */; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCE025922FB4CA88EB49C8B913D1801 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA7D1FBF69E61F7830FB148A5E50990 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DED67D16CA9A33AD31C49901B1634BE /* React-RCTBlob-dummy.m */; }; CE8B8A61CC8002F9B980D10E9FECD1B5 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 220F92F77A59A58888FDA1B79641A324 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7ECA99F9CED69EABA22710A2079D18 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B14C4E56BD11C9AD9E7D7CC67D321A4 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EA031AE10CB8C054D8F8AD27C8D814 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CEAE8036251091EE26E6E066741C0E86 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = BB4A8A6BA372FDC79C395901A139CD7E /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; CECC1FBE7FC467B747E6C2BA8B0CCFE0 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA0A22B2CF6460059F6EF22F8A6E81B /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4D275C053B311AC8947C32C9F23697 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3938FC31FF56249B4E10A15443534921 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEF123E9C8B4FD3D3654297488F5C198 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 950A7A3F1F79B290137A6CD100BEA185 /* GDTCORUploadCoordinator.m */; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F9DCE6B5CE179FB015B4EA195D7E9476 /* RNBridgeModule.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DCE5361433B4DC46F98F6EA67124F9D /* EXAV-dummy.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0221AC15766186E7DCF679FB4AD3B495 /* RNBridgeModule.m */; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19CB053CF23AFCD3BA264178A105A854 /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = D3151F5AA5498492CA230FCF27400CD0 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A416D059E005D2144C88BA1A85790FA /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = F993BDC70A5CB48D7CC41DBC928A90CB /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1035F2DF56DC84A5588DB590E33A8B36 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B89925743BFA191F4C929424A14E0F0 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FE7C4DC3FAC003F1B598A2B9F5C053 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF80B9F4958D0C931B081B404CE9284E /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DB89335435413CEDC7E2202D0CE2AC /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1974D8C56D7F0E626306A9601ABC0444 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FD8226FCC7309B2337EB58188BAFC55 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; CF951D21CFD9031FE384D48969D63034 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBCE57D2CC931F4BE40AD14D0D2979B /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF9F05AC93CD70E3F63B06ACFE0E4F30 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD9693B486CD4C8709FF42213D434F1 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5110B9E4FD92BAE1ABF0FA39557E0037 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C3F72457D7FEF7EA647F6E8C29B3C62B /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 75E87BBF6015436EFF6B5B3AB1BB25A6 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 56320EF8EF4F3C598F10A45A405D2110 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 116FD789F72BCE8CECF811A67F7E8458 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08B854B9FB03F126D377C8BD3083158C /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B552994943BC4F3821FC44D6AA93A7 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF2EAA45F70C4D1A366106F071FD2362 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = AE9A53CF78DEB8A99ADF8962D9F6FA4F /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A9C0F349533D8942E9CE893B5B7308 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F560D70310532BD6D8DF4D57B77F99 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = AB678E151B6CA72E61487EC8F7721D0B /* BSGConnectivity.m */; }; + D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E2ED926657E49C1145928B73B70718 /* BSGConnectivity.m */; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 86ACE019DD91832EF8BFFDBD6F4AA667 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = AE88B84C1DA2D74F566C9C1F7F72CFE4 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F42F29B8D47A52039805B2097D6EC39D /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 647D10C24327EA02C38729D823266A25 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CDECEDFC756D3A0B9DF65B05EB14944 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D3B8F52EEE1AAD7AF95F4D98371347 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = F10B6E9FB3CCF467E6832F03D1449E3B /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A590BC60B56755728ECA16D8679EB22 /* SDImageCoder.m */; }; - D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB1C48E91B0A73397FE4BB9D665CC5C /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 08ACE5ED8E4F4E120D549B4619FE61BA /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = ED18491DC3AB97238509DFB603377910 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D23230B6BDBF204F574436EC80D5795B /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9C1795F7FDCC3C5AF33C63B06DB187 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE2D6BDEEBA98854197BBBC0B915FAA /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBA49CCC766F713936BAB544C40337B /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 30CE21B672A1DA765D0CC772CE042C9B /* RNLongPressHandler.m */; }; - D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7D80CC1FDF07D80A0C750EE3C70A73 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D09C4D3471AD4C2FCF718AA4409903D7 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1815B27D3154618D4A51C2618D82DAB7 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 44AF5B74897837122FCB1F6C88514382 /* RNLongPressHandler.m */; }; + D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0981862D8B4B0A9BF6D227952C1B5AB8 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2465EEC076DAD80C81BE4185445B2A9D /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99649E983CFDAF5A5FFBCC9F63DE58D4 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D2F61C74B5DDE79B769222FCC98C82F6 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0C154ADC65F8BA13EE5E51E1390E4E /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = C10C001C3210D88AE5A93FAE386DC1D1 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = AE2BA269FC8F7B708D9C56011444A49D /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD02296AB653CD27FCFA46922CDFBBE /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B631E5FB8A084E0D4D78C8C64AB5B9B0 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FF88F70BF52D7867F297C5EE3C6F2391 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C0FD671C82989A3D3C58576B986687 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A734FB82B4D1E2AC1CA9C34F994604C /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A00B5FEA90B0806A317B2C55F5C99B /* BugsnagCrashSentry.m */; }; - D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 21319F0AFA59E134BCC424856DB5D5A6 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = FC094B5674B29F3C7EE5840E3F4FCCAE /* BugsnagCrashSentry.m */; }; + D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 483B294389BFC1A333B174C9EE7424D3 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = DA1E0B387C0503DAE734788BE8C16855 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D93CFE720FC5F9E54794A51F911DDEF /* UMLogManager.m */; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3460984D7C361328571349EE5D4B8FB1 /* ARTSurfaceView.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF6BA5C53B6AD87C2C553B17AC43728 /* UMLogManager.m */; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 492536DC8DE6C57B7A06571A85F557EA /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 852B3E03F6B7C8F358073121F4243AA8 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9A7CBD308ED1A92BEB406FFB1F2DAE00 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E6BE4694A82F14E7E3DE46D5F6A06089 /* REAParamNode.m */; }; + D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6173EB95FDD9752DE5D5A3FE50BDD39 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B524BF132646DAB58666BAEE74F53B86 /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B661D63CB8E4F265BC5AAFEBAB482A6 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7F8C9696E0DC4FEDE9AF7CDDAFAA37 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = E898D5CC2804FC6CAFFB81DCF6D138A7 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C12648425553EA1F655E7D7C927E3C4 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D64ECC5835599A6514F50D193FEC7A /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BB52EF1378C7072DF399F588A97E4E /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D3D401F048CD0B2D3D20DEA6B94DF32 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D4854148BBD285293974A3574283014A /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 677CE3ED066C849D0096475252BBFCE4 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0ECCB6FAFF8614DB159F724F44861AAB /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D4854148BBD285293974A3574283014A /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B0F7DAF876312D7B591AE13DEFED38F /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE90D9AC64CC789B0287C1A80B3A674 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB6A8BB8C8B864596CF0473DFD589CA /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FDCF90B211EBB70535DC8B9BE5BBD0 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E31942837740BFD1F989749590B93B /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = FE52830DF5CB21EA5B1AE66B44B95413 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79A7652E2CA6CD7A4BF43A9DE8BBCC52 /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; D5127E8BB6E9A1A9B7F449A6C3D8F2E2 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CC26518B462C7C18AD0566A2D78F6468 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2601,168 +2623,169 @@ D59D6B91B38D40385B5671A02C789FFD /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 344455418677B550C102ADC52DFCAA76 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B35AFC1D40CA8D7FC1A6D8123E238F /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5C7E82437FE04F2CD8A96072D2E9593 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 207190979E1C3EC1E0DA1D3D40E86F17 /* FIRInstallationsAPIService.m */; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A8041E4B8179B499EAB9058EFA1E135C /* RNGestureHandlerModule.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1847A9120986DF8A84BD996E25133F73 /* RNGestureHandlerModule.m */; }; D6147C5ED241AC483FF409EE1CAD9E12 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B672560B173A79679DEFFBA84C70A5 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F8A11A31D2EAC23A3C7402B0518EE9 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B3DBF88C1827A1A20AC6289CB392725B /* UMModuleRegistryAdapter.m */; }; - D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = A534064DAF2097B7FAD56ACB983891BC /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B83AF1D415F0617AB05BEE783FD1524 /* UMModuleRegistryAdapter.m */; }; + D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC98D1BE9683B2CB2C454621F2280DD /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6B8E9E54916AC4287652A8764EDCFE /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6350A627E0F4163DF3D66F3463BE32 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = D41085A05AE372FA28F64384A2C99951 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA23C1CF418176CF23145E87404A612 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 77FD8DB8FB6FD0282DEB41D410F329CF /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD371BC3A1F8EBA19BFB073E235E096 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47132D3CD2951DF9C74041BDF317D97B /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = E265D20CED969AF5718CC2576B0D2FCC /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D53E39F99E7E0402FABF134698E1B16F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = EC05A6B47FC3B6DA0EF08F20EB8B30DA /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BE6912B0D636F332F440521664BD442 /* BSG_KSMach.c */; }; + D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 80123E4CE5856A3193DD48852416B8D4 /* BSG_KSMach.c */; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = D84A2AC75061051C62EF7AAB2CE0ED5B /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D73C476373DBCB99DBDA5E3D9583A35A /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EF2FDC6DD223C088FBD4D0C90FB9486 /* GULNetworkConstants.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EA54F24DE6336CA2D2B4FC5255ABB2 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C163185A8C47364FE801EA2D186E4314 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 44919622BD454671DB4D66170BABA29F /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 57784F65BD8985275C9A5F6E04C78FE7 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = FFD0365953B805435F038F1DA8230E14 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; D7E5C384A3818E74886E35808F0E358B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB75F734DB509881BF344E366E90952 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F294F71453C531ACB159172A062002 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F367E454B11846A61FC33D4BA895A8B /* ImageCropPicker.m */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 313C789BE0FC7B4E88B0EA6F25F995EC /* RNCAssetsLibraryRequestHandler.m */; }; + D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 483014B9AD6D877783DD88E8D0B8AD11 /* ImageCropPicker.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D3073A483921704D78E97838E101D3 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB84B82EDB64DF3AB770311125FA3C6F /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D303BCC0DF61B7DDE96777EF8365574C /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D84F3F96DACBE38500F49916290FCB29 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E27F9AE20DF152DC7F768A46F5E3A16 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; D86127EDB743996C7268E4EC78797A46 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 116C7CEB27CD7820875966685B7D8C81 /* FBLPromise+Always.m */; }; D88C31D279C21999DD8E5D38378AF5F4 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = D40E104D3809AC98D25DA6DFEC523567 /* GULNetworkURLSession.m */; }; - D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B0EFF16C475E5AF42D1172704B35E797 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 34A8DF0A198A06F689AE0C2F60D179D1 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 459E720AF3048001A28D86AB1813580C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB50946D34C0843D5418E4DF571D536 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D8BB8787764B7EB4D18B8371DFCDDB62 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 12257C95C8415E77F77118EAD42C5283 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 03EBAD293CCBC3FD87634A527B11129C /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = E135CA8515BDADC2DBF4D894D71C070C /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6294BE257860FFCCFBBCAB4C30B7A3EF /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B621E83A9F251C32699659261E1D7D /* RNJitsiMeetView.m */; }; - D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8908F075787A5C664E4F06456500EA50 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 74946811C6AA468E11C075F2B94CC07E /* RCTInputAccessoryShadowView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 230529220D67496D3FE2C6F935DA5DF5 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF58CA4F534402600CCF706A99CCCBA2 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9840E859E25D2072D4E5546E72D9C09 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = EE6B3318C986BA9AB441D98F74651712 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D986C95FAAA3C9232D94D3CBC10130B9 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD30C5FCAE78AB3C213EE790DC5B16F1 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9AF634317E7F9D5802F08016A42573F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D133A999991806DB0A11FD60D37872C /* BSG_KSMach_Arm.c */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C11B76031D69F7EBD8459372BAA8DCC /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77B3A3647D8A9C0E25E04391CF75E9FA /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = E496A1597D2C8132C654D45BB3F241D6 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C9D1F46BBF12863547B9E44C7D331BD /* RNJitsiMeetView.m */; }; + D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BC3E74BA827A2EEF3D1A1840C389C1 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7289159049E31701895AEDF256DE9BB /* RCTInputAccessoryShadowView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A1581D25708EBDFC5772BEF67E7B5B /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A57AAD4F3D69657E8D24CBC1659818 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9840E859E25D2072D4E5546E72D9C09 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A0BD1EDF40A187E8200F57B14DACE0D /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D986C95FAAA3C9232D94D3CBC10130B9 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1451F1374D41FEC6691A399289ED3015 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9AF634317E7F9D5802F08016A42573F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E8C1DBF25BB49301681AE4675992A9A /* BSG_KSMach_Arm.c */; }; D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8917BA8D0AFD14A5E50ED75288A0C10A /* SDWebImageOptionsProcessor.m */; }; - D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 084C851CE8777B564470F9186F0DEA0A /* BugsnagSession.m */; }; - D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = DA8EFA83F779729D5D90185C414F4695 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 369FD78FF5156599FB854E626E31CB94 /* EXHaptics-dummy.m */; }; + D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 104F2E03F055BC209F368334BCAFFD3A /* BugsnagSession.m */; }; + D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C22F7E35FDC62277F9BC5267264D97D /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FBEC66F0A4DAC6123D0B270954B7004 /* EXHaptics-dummy.m */; }; DA28A006984C9041039EA6EEB0F8195F /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 90537B1020C62F8000E181300CE2388B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 857D65BCA25BA3A7EAF9B24CCC8BFE94 /* BSG_KSSystemInfo.m */; }; + DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7806EFF9CCD6E7DF393105EA4EFE60C4 /* BSG_KSSystemInfo.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 64F4AD60856C32501C6F0BB036AE666A /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA6D2182A38C3561B140B2E997661B5 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = BF9839EEBCBDE13A9BEEB079C11748CC /* RNSScreen.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C5BA84758EAE136D02C19BC92E32A7 /* RNSScreen.m */; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E58EC4A32463C065C5565A34EDD61677 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2433ED05E10706705FBE91CF4448814D /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5A0CD79F1E53BE13EB6F4C591D9B13 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA8E7E9B1199739DD8242F7D627AA01D /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D4EE66505B739A233275617D19E90B /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FF22EF610EFB669A5BE580345C18D8 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9F04093EDD60E5467A82D034D381C9 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39D08AE05367AED5E02CBD69FBEBDA5B /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = A539E5278B1B28BA9435DC897F3492EA /* RNFetchBlobFS.m */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 787FE71387CF1F85BA4E9DF6D97CE264 /* RNFetchBlobFS.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1202E3F998555BA59A10D4B421FA45DF /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = A9EFFD37252C00A7675848AE074A106D /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E87E6CA6F24F95340E8EE9EF3FE0850 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9D7BBE564225CC90DFB00E14D56AF3 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = D34547DD5B20CFB6345AE8E4378E5EA8 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 892ACACF678844715CB306AFD8C18753 /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E81EC930DD4B3E8A08B14D713C62A96 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB961B674D484615508DB15C8C03E3A7 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FE392A777F740FCC1F1EFC731F72ED82 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AAB8F77D50A37DD55F97E7E8D029A44B /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A7884B00029944AC2B47C05C19C558 /* ARTGroupManager.m */; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B47193B9A5F70C9FC551D403944866 /* rn-fetch-blob-dummy.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 600E11526FC1B31D3900246187123E89 /* ARTGroupManager.m */; }; DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F22EA9D4C27DF77911F6FE1C1B0FE0 /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 946433D7EBE2426C041BDE43C6FB3116 /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E814BADB002A0D7B581D032CD40134CF /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A595BE706668D105B4C902B56126AC98 /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60452327D46CD26998CD827F6F8E7B21 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DBBFB726B54D132205F42D6FD8E81979 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0F68A91E168C44451761944275BEF0 /* GDTCCTPrioritizer.m */; }; - DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE9497DDA217A30BA230F090A238CC7 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86F08F17891CC92363BE2CD68AEB70E7 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DC03FCBF6A0FA06C65EA19F08571B9E5 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A280CA55FF78171F1ED13779FB551932 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA609FA0CBBEBA1A9DA413C5AE8E2BB /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E6022931213814A43075FDB10B1D70 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 927C2E85C671ECDD04F9A4DB9135ED12 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA1EF4D9A7595A080E824D231F1C702 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5A7654B4C703570917FC019CD6FB717 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + DC03FCBF6A0FA06C65EA19F08571B9E5 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DC61064D7A4D14AA291832CD233B1F /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CFD4E37FCB41DFC0E9A17BFA73CCD48 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C88B7C68A22A41BF671FF5473A7AC4C /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 547E4D6E09F65BE8DEB5595A5D04DB00 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = E48FF60598432561EA3B912A67001EF5 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DFC07961C9B216F840267835EAA2811 /* RNBackgroundTimer.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = C39A5EB4E3CE8AA00EAAAE47434F871E /* RNBackgroundTimer.m */; }; DC91434903C0446DBE4EC705CEBBB6DE /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8A380780648A9AA51D1CDE20D48218 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = D5F086CE89F80D69BE926731B878D257 /* QBVideoIndicatorView.m */; }; + DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF023C883F422DA6A47D2C7FABB249A0 /* QBVideoIndicatorView.m */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 900F049E757FE3B0BEFD489FEC8CC87C /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCDCE485909B5CE0B0BC06693D89E54E /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11932AF3F442722C6FDCD514FC54133E /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 585929899B30C1025E4A709195FC4CEA /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAD5C30DAD4C5EB37A880FA003C77F1 /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3BB754709BFFA7AE6D79432A1FA5AD5 /* ReactNativeKeyboardInput-dummy.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA90EA4E58E7529F8578C7076B74E136 /* ReactNativeKeyboardInput-dummy.m */; }; DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 8407BCAD5AD1DB51CAC5DFD17942506C /* NSImage+Compatibility.m */; }; DD4C7A9E5CA5013D7786CFA9D177B890 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B5E92950A22AAC32BA05BA9C3AC80C /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 79EB38BC28AE02613EA704A0CD264EE8 /* BSG_KSCrashDoctor.m */; }; + DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B71C4EC02710E0C2AD933374DC2CBA5 /* BSG_KSCrashDoctor.m */; }; DD62E087ABC9059C2E7E3104FF8A8835 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 169CF9C407F24C79419DCA9222CB9318 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = B568BC4B29D62AFA87FD044049876E36 /* RNFirebaseInstanceId.m */; }; - DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F0BB5380227B513F9E36B44D10BA54FA /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 728156DF3EEBC775292D8814D17E8D48 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = D24747C3BEA18E87BA7491E443BE13F9 /* RNFirebaseInstanceId.m */; }; + DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 381E485B872E78BA9520875768779D42 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDE321B7B9538F10B934152A17769962 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B219962AC4DDD3DB4BF1314B52062DFB /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 370F4C7AA1DEB0D3A3169588D360A9F8 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1678C17C726C2BE1EF54A04E4A70DCB5 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B38541B457DEF769B21EBCD7B0AEA4B /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29E47FEDD187A358688BEA85EDFBB3BC /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F6D022E77CE7050760A949C1C15641 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FC62EE3D482E365E56024FE8B612D7CA /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 579DC6D5908AC81B1E3A4C952192D04B /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CDB819EAD7C970698E1BA550A0B871 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F9F955925687D141D53630BFEE5C36 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = C31657D92E0420C57AEB970FFEDCDE31 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD64D0F88E2C0BE02AC4EE251307A2A /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7B6D673F33A2DD3BD8ED538388A839 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E0B7FA697F1E29B5912DDC969BCA91 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; DF75C756DB80CBFDFD43D0A99F83D035 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D171B86FCFDD5BDEF8591E75E17B76 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5790B049B47159870C8A79F47F8748 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB6D11F38B1CF32AAF0AE12CC99427D8 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E0AC7DA579910DBE058F2F7FD0BE37 /* RNFirebasePerformance.m */; }; + DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CAB0C63FC8922ECF883FC7F217E727F5 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E0474ADF523E01E0CB4B9930DD9D438 /* RNFirebasePerformance.m */; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = BEAF58E01C33A2C8648ABAB5B76051A7 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFB1AFA14DA04F33017F0086D60693CF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D3DF2E2C76682D78850B1C27CC588C12 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 0090BEF13DE7D3464F0062B18937C531 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5334D0EE63C391DF789AD79EC20647FB /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A114E7E7641DE0E9E85B5BC6D7F7044 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A2E36F623BDC96728EFCD9D1A8DDBCE /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C7FDF8AB0C24C4635437749CA79C62 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 77274FC94A05E59491311F7E744A7559 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3EABA8585CA3821A70440DE9644798 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEFF41527DB8DB7AB27F051FD302834 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = C5ECF20665EC1D3F469FF3AF289E90EB /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 741411DDA613FED7DEB981FDFF1768FC /* BSG_KSObjC.c */; }; + E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 880C494587018B97FA8145B269186028 /* BSG_KSObjC.c */; }; E06FF2EA4D8E7057808DAECF514487B2 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE31A0F5E3EA614BF4602F172DABE60E /* RSKImageScrollView.m */; }; E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC583BC017048E348F4C7A651E76E47 /* UIImageView+HighlightedWebCache.m */; }; E0A65AF86EC06BDC7937CA9CB9972285 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05EFFF3F828809F4D688B2C16C00550C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = FD89E877061D905E9B19FC9BEEAC05A3 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5B12CF0741F96E982DEEE369ECD7AF /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 61B1B88F486C629CDA3174F191E86CB5 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E0F5FE366AD6B4F64411919D22AF271E /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DBC53743AD8998637A0AF9E9D226DAD /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80B7EC3C5207935654289284D7F350C6 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C332354CE32553AE1D10339068F3F17B /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2A860FA24F85C1048D62057EB4A8297 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E0F5FE366AD6B4F64411919D22AF271E /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8717F287702A9C6C38AA55E7AB95B0DF /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50A93D4815E9A8F99BA52DDF7F226000 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3754E206186745C3D9A8EE51218F5A5E /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00EDCAA7B97036AEB4F17F2431CD31C5 /* RCTTextShadowView.m */; }; - E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3319A4659732033D2DE2FF9C3DA9C4 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57D9339A80A2127F7E2DFFD905D9029B /* REATransitionManager.m */; }; + E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EA44ACEDEE1F1FF7B1994EF60272F3CA /* RCTTextShadowView.m */; }; + E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E843670879CA7CD7B3EDC89F66951D99 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D273679235B8B62AFE2DA61DF071BE70 /* REATransitionManager.m */; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 27DF4FFC237F06C5693622AA55FF8069 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 024002479A430A739738CCA4DA9D7A68 /* UMAppLoaderProvider.m */; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D78966FD8B3B4035E81DC0546AA2E366 /* UMAppLoaderProvider.m */; }; E1C98A18F4F7534AC0A3D36EDB71822B /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D5D57246C4A8D93F5E3E5F81118E82 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0FBDDD93079F0A14972E00EFB08F32 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = D7D5C7650E36E999439142142D6D5714 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5597149807C5CD9062AF0D8023D0B074 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E2067AE94EC192C9626F836E18255B3D /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA5BA75C3F022CEBA5F14374FA0378C /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD7D48A89F4C89BE5FAC0AE983DC9A2 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7B13717527AB425E33EC231CD27A4A /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 886FA80E50E6E53041041372306C7192 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D1FB5ABA9CB31D7349FBDA463AFCD481 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6DCEFE83E5A78717DDDA2DE42610E3 /* RNDeviceInfo-dummy.m */; }; - E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B34F793BB4A4BD310F4E37C2D05C53 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A953CAD946C0F09D2CF09241084311 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B7A5C8CB88C1D2EDD86B5D8FA276A452 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE3B1419A93B1EB88EA99EE971138C2 /* RNDeviceInfo-dummy.m */; }; + E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9945AD5713750C36E0A34FAAA28D97AE /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F24B597314054D87C8C1F6195DB87D /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2EE20BD16B60C9E9C8F5745895E4CEB /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 60449B27A12259B39C496269C8EFCFAD /* RSKImageCropViewController.m */; }; - E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 284703F4AE62E032976179B75B48AB6A /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09E1EB493AC7120B1A44A4A8DB7DB263 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; E305DF061F26647A3385379DB71FFDC6 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A84B2126B26B6F8F513DC38027D01476 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C450CDA1AA79A853FEF8AEDEDFB2C6B /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E35C6D7DE7A931B32026F76A9CD0ADF1 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BD94B545CF0CE2E3B9229D6515A7F0D6 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 3600814DD008F55BB46FDB23644C5EA2 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB093100F5A923F5703493C16829771 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC39ADDB28B75441E7C09019106CEAF /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F32A192E130D4885BD8AAAACE4CF2D1 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC0079859E42358B491F854702DB88B /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1169799DC69BE14CE10CA9F70E27B4 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D62F9FE254D779D1AF7414AED6EF81 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 222DDC2B4FFCB6970555879212622815 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFF516A56D29D5DD5ECFF3BA27CE632 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 019000D78E96C67B33027B1AC4CBE890 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B02DE46170937025FB43F1144861F1 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FAD7E276493ADE0EA07E3BD18FA976F /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F35E6510C4EDF9E7C2CC215DC47AD10 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E3F33BB478775D7C31E8EFF44424CABC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5471CC595123375FF0DA18C40826E73 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D91E3D9873D84638E8E8D1A52A101B /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C504425206F886868AA7DB1977B097 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4758BA760E88879F33BC50BC967013D7 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3FA3257FB94308CDE8DD831FA9ACF1 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3B49CBFF762A1C703210855E543C2E /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 429EC9BDA101E3155E8BA23E62D9E72D /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4E1057656461228D8BC02EC88E2FB4 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4641F587498E427490898CA0E10BAC /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0309A5FFC71EA2F72127E3E0A4755C /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F688B0918BF24C5CD7FA3EAC9AEDA883 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3478AEF60CF975B80483F24893ED01A6 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7CAB505A0F3E3FC405F3CD5874C7CE /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 51441DAC4CCB0A6CE1CA2B3A3DFE8FFC /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C284DB208CAE466AA7BFD5AE0DE3E4 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC38ADB2846AE34F45CA010EF842901 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC6EADEFAFEEA3CC421D1D8706BE1F2 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2775,108 +2798,108 @@ E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C183ADB6DBB0DE5FE8D6DF0B8B3820D /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFAFDA223DEE59D35E812DD10ABB64C /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 226F9D0C0D2F82062B4EBF5A763A916E /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EEAF9A2F35338B674A9F23BE5537DF2F /* RNScreens-dummy.m */; }; - E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1B06059B19F22260FF27BCD9B70558 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2536DDA97AD131C68C0518E3B194F4BC /* RNScreens-dummy.m */; }; + E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC334934F62742F915EBBBECD557BA52 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2825CBDB965A6FE1E73E9F2739870F /* SDImageWebPCoder.m */; }; E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = D438DA78F21E96F690BB9917585CACFB /* SDImageLoader.m */; }; - E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC5A45EEC900C2AEDD220E99C42F75E2 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F37B86E8900C790C524EA99610557900 /* RNGestureHandlerManager.m */; }; + E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8A8F62CD1B59B1B4A915981F0934129 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D00155A74656D652638CCCA43B402754 /* RNGestureHandlerManager.m */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = E58400A644A9B682CCC01FB4F5FC5918 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 43F65837E45A2C07E2A1DCC999CE8873 /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 334755F233628245C1D01956028DA931 /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B8361313C96BE095FA055B86C358AA /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67229F49490CA9AC27DAFA4CEC3A419E /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 548A65611B99CE2BB5D24D446CCA793C /* RNFastImage-dummy.m */; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 777DB95C529E023178F362938B1B2C7E /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = F830D7A467353BE7FFC483C48DF75AC9 /* FIRDependency.m */; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DAC2F0D55F0D7EDFC1A71F1788BB63A /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A984D92D32C73C8D034974A4EA5DCF /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = BEB33D2C4ADF660964E3F5A82B96D7C1 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E1551C8062D1ED0104DBC41541A65C2F /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 60635D6B0CBD0F7C59C17DF1470E9A88 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 82FDE4F89CDD3CB8322AD5AF2D2AAD04 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AA5459247FBFB4744801D694000EE1A2 /* NSButton+WebCache.m */; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AE763C2D1EF03E214CE34CABCDB31EFC /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; E71B7C43CA2B681CE0F3BE76936B0452 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC451CA059F0B0B1CB569B66829A1E0B /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F90C85CE7B27439EF3F5B5BF6081766A /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DCA4210F595CEC6392C49D0448A1CB /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C43C3E16E41E3F8C049D78F0280E02A /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFAB47D08AF9D57D6BA0BFD239AD5ED8 /* RCTBaseTextInputView.m */; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAB5717996C9E5A189E591F1C07B809 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D4CB377774658A47456D1529B052C7EC /* RCTBaseTextInputView.m */; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A904A75FC50154E2FBAF567CB3737BE2 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA394ACA7C44B4C9B2B5516E8F68792 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4A75DABC320B067232557DA63A14E9 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA31622F4E079135E89048AD4D3BFD3 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC82876CF0DF742EAF9B1FBB466153A /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7BD9FFCE36687BDCA52879B12903E20 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9FBD50E9063031FACDB5234DD759A0E /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C34866DBCF5BBE9CF21BCF066F4F09 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7C43AA674EF98DB10295D5A0FDEF294 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = E3850E79F71D621ADC40A39FE30A4F1A /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4BCECFB05C7458380B93A21BF9E05BA /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5C3E3819E52D3D1F16F9CA7E501F58 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A73DBDF91A696083D84B6D4667A82162 /* REACallFuncNode.m */; }; + E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A38575B3B8EA9243005150A893EA2112 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 200A3530239A107CD98D893C9A4DAA61 /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 762E440D9D75C4C9887AF701527F0CCE /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F4E1BF2AEADA8C7C6F2FFFA5E56BBD /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF6B84DE629461467249913044B6E0C /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 732F426137A71CDED017B2E603514755 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9796627BDD27EEB4F1131083745509 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = AE7FA7CA98837A65F14935927BC28B7F /* RNCAppearance.m */; }; - E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = A0563E8654E21295A870ABD2E382B469 /* BSG_KSCrashReport.c */; }; - E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CA077E51C7E5706C2C646C597E8971EF /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ABB5695E72294DF01503F46F8958E57 /* RNCAppearance.m */; }; + E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F2E42BCDF6367B224D7E349E95B1AD /* BSG_KSCrashReport.c */; }; + E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A53285CF74D6D28B879D3E7A6A7497A /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8A3095A649700DAC4035399D6F9253F /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2367D19C603A3B08B7440895E32D82C6 /* FIRInstallationsLogger.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4228BD660D1D0B8E7989983B66587B3B /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D48E0D6D11687E2ADD4E55BBDFE1495 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BEE2CF803308491014F4084284C941 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD94EA6C56C571A5119413782C817379 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DA1B5A041788C9BF9974D8C4A8A6B8 /* BugsnagKSCrashSysInfoParser.m */; }; + E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 258D5FDD1098DA394D695543A5EC6D96 /* BugsnagKSCrashSysInfoParser.m */; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0A5E5379B080007D7EB8A706911E252 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E8F8A1FD8DA38CF4A4223242F5E905FD /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 259BBB31FEC3712023900184D0A6BC38 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A94D9D6D0B5CFC35978D148F1055B476 /* BSG_KSCrashReportStore.m */; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C78D65F0765AE4F6CB773F2AF7C07C5A /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D8BC6D684FC93C5BBD851B095B4BCA6C /* BSG_KSCrashReportStore.m */; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3EB9B2850535DAE8A7F3F6AFD80475 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 74143D9BEC871DB962F613209A3A8AE5 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 130E85034A2A0DB5D9F092021F917922 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9724524AA9D6AF0B15DE2A0E50866CC /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8ED60728838621F539415E4077A7154 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E97AC526AA9C09756D6D691D576366E7 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = C02D9691892B3A1B07283E72A0A7802E /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E97AC526AA9C09756D6D691D576366E7 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A3741B86AFDBCB513EABA7C00306FB0 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 068CB8333E3EA16C3C8382BF5A3277A0 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A614829A6886D1836F2A11CD7CAB932B /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CAC75AB083C6995FD42632231A1D941 /* BSG_KSFileUtils.c */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 58351C11CCD5FF39C4071FB4205A6F18 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D5815080B2F35050BC245DC143DE4B1 /* BSG_KSFileUtils.c */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = DA898CEFED39AA72F200D8C1DD7AE9B9 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FB8C39BB60620646E2FA7B10DF6E42C /* ReactCommon-dummy.m */; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C66C8FC34C71543DA942E9B2E7A9EE8 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89A780541520D322F08FE7FD2C9EE1F0 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E9C187BA8A39A6E5DC981B6BCD05DE81 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = F70D4CC6A086B97094BFC4397D6BE441 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B17B59BF6207EF873CCDDD7D77F7B4 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D362AD8B48052F1E3700D074E0C392D /* ReactCommon-dummy.m */; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4A3049C0EB886C67137CBFFD354348 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 121C2910524BBEFA9563EB74C2921F8F /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E9C187BA8A39A6E5DC981B6BCD05DE81 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F9465904A9EF8D7F027216ADBAD985 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 80989FD1E3A28D668EEF944CEBF3D75D /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = B3485A505BF6FDFEDE8C828BF52B50E8 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD350C2D53E9E7F3DD5CB8D2B1ECB3D9 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; EA3D6A64F2CFE7B38FF1161EBA89FD0D /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAC875F4B48A2C4ADC94005F6B4478E /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA4E9E8232435EE430E8A5864860B289 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8245AEA1767AE69C8E76AFC7EAB967A0 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75840501AC038B9F9DC5B368A0ECA92F /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 530DADB2FB61BD3E084E3AC0FA61255A /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; EA82D914F7C4376FA679563B04C8C252 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C582724293C833125C4A1A2AA4CE4FA /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC6A269C5C9BDCF2C63D254462FF5E8 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4082D85A971AC99A76C09BAB6AAF6714 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 2470637122C75BBA356F1484669B3A80 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CB2A66C13E457EED5F54B9238D2892 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 32D5FEFFC7497D57AF5301263E89ED9F /* BSG_KSCrashSentry_MachException.c */; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C5B51263BD350B31BF3EF3D7C1C316A /* REABezierNode.m */; }; - EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = E80230EBE707360184751990DFF558C7 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = A055F23165266D3F07A6EDFF9AB5D5C8 /* BSG_KSCrashSentry_MachException.c */; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 184BA109B3E3ED82B00E700254AF3AD7 /* REABezierNode.m */; }; + EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = C561B80406BEB168381F3AF9E2A3004C /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E11720C8437E0D5F25B9999FA856078E /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EB3971376915EF8F6758C39F0A90EF35 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC06829E7F061E65C930F3116DD80F1 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = A11962794E02348B61C4A3A1EACB896A /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6F7AE35E288C0E936D7C0970AD6FF2 /* EXKeepAwake.m */; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 913EC418AF05573D3B6922EDCAAA5BCF /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369D81D63471C3982BABEBFC22901CD /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = D0546800109BE6E261341AA3BFFD39AD /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE9F4ABCA1B6001FD7755772C259C29 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EFEB5088F345DB3CAA9406AFE2B53B /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EF0915712C8F78394138D0B6A2A050 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ED314843F95989212830490987759EAE /* RNFirebaseAdMobBannerManager.m */; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C0679C8FA015D5C911901384EE4D6A /* RNFirebaseAdMobBannerManager.m */; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF62339FBA85228EAE5E41137BD5F3B7 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EC6C3231D7D2C1200CB6826C0A9CEE53 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4899AB8F9FDD2B76CEB7644F2948E5F7 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F053B45DC8B3349DD2FAEC0223CAD6C0 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 44273F4E9B42941C20D465C19E4081EB /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E42EB11146478ED93A18225F403E840E /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; ECB6B7BA94B66641FE3315168B7D0F3D /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A0E338E3F9FE79FA92EFA49A9F69A57 /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B86FCFEB75C23E52A8A8B511AEDD037E /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 931E9B4CB73464F58A4C5DCCC1B941B8 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0777B403F17F492A3B73D37EFB89229C /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D5330BA7F406E82D2A64AD902CE53B /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCAA040F9FA9E6FFABB25A7E813998E /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED368130DB855003BACEA28F8A340D7A /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D5435566FD9029F4DF3D7B66E556287 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 91A5297C7D8564AD8AB098CDF45B6C32 /* BSG_KSBacktrace.c */; }; + ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 257204B30240739B7940D1A0D164DF58 /* BSG_KSBacktrace.c */; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EC00A2FB16072B5624DA498C2104B846 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4942470818BCDEBFF9C422A2948E9EC6 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C99D44016E628B64067CB76CD65802F1 /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DACA332008F6AC6A637EFFB7C462A0C /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 718F0A5747B5FF095A3A0C2CCCA85379 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4049EA977C8B11EC8AB6CE994017B186 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EE26C68BA1E4A373F6AA58F711E44168 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF67601B849AD8043039ACE8C73DF64E /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = B6753785BC3312CA19994B9A755DE71A /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7DAF48FA7A5A0A40FC1DB6ED9A74602A /* de.lproj */; }; + EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8F9F12C986912FA2B49124546F609219 /* de.lproj */; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61B88246C4A900BA197443CAB45F14FE /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EE8A83128D8380211CB6876B0BD6CC89 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EFF5BAD4FB9D3B56591A6EB08CB68CD /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5A257EA1403422F1C7049818917BCB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FFFB8DCC4CA701C2E53003617B3D8D /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC0AA0FB200B90A95C98B02F8909AC5 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BD82A494878B6A4248FE55C00040CEF /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -2888,16 +2911,16 @@ EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFC7BEC01126D2D45B723A922A686D7 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 549FE3EB49CE7968D8904A19CBB172AA /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EF7E6C878AB8A30D92FFA18861A908EF /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FBAEB1D6479328FFAA044B920BC1017 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7ED2CDCDB99984A84236467E8778B7 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D5038AAD663414FC2313263B1DE2E738 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DFA724D628BD57FDF265E525439C4D8 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = BD204FFBEA859FC24936E884BE2B3822 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 106537DDCF13EBC231A968E46FEADCC8 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F13B7FAEC573229469545471760C164 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFA7E6647BD21D78B6DAF725C5E62E5 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2369BE8BA480523C31349754A50AC8B3 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A3F70480AE9C876EE9D620059A8E89 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2BE66AD8EC2B22D00977A47E0D8FD5 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = D4CEC3C8952503C4CA46E9C7A1C49047 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 235F0F5C7BFD7081642DC8ABF5028694 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C21254D9F7C2191C713FBCCC1E8103 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CF500C0C197531A39634EA183DF8298 /* RNPinchHandler.m */; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E43154BEEBFE6BDFF52BFF59F2F5CA1 /* RNPinchHandler.m */; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA3F2CFCB12B1B29744C28647FD6CF3D /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = D850BB62E6C022FEAA267C2CE99A4AEC /* SDImageHEICCoder.m */; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24A71B5F7EF5A6B61FDF7263F39918B6 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2908,162 +2931,163 @@ F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE815080F7E80173CA594AFF25777BA4 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D8E439BA476130C23BF7C6A07CF4DB84 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = D36C1F0EC78A2845C14FB2963EA0A08D /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AF042D109CBE04A5922843DED1D811 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C024CB1EEE85D32F026EB14C85AAAA /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2DC5C86F5CECF620384916C4995D9B /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A99491D7D2C016F06275D579B43CF450 /* FIRHeartbeatInfo.m */; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93278509708B753DDDF596BCD5A12AAF /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E41D64006AC957B237BD217C6506ED /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E10DE6CEFD17373B18375ADF3FDCA6 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = B25E6C1397474967CB632772D4F63866 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3579C5645A59C212E9D4838934B24C7D /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = F0FE35C0063768002405159CF55BB427 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8CA61BBAC0EAB2F519BF5A90A5CEB7 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AF37083B5DDB6D7DFE1DA413D5CF30 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F0C427C57B51CCE82E5E05482B2E9E /* BugsnagFileStore.m */; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E11C3FE3B6FEA42E2EB418AA942F4FF /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9062C999CB15334EE8AA7068C54EBA2 /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC92F37702AA404B9EEFC33B82445BC7 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D348AD963FD80AA19656A4C004FAC7 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2428F07E26FB454DF0A967A4F6AE3FA0 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DCEC1BBDA66CBCA038CFCAF6348C0923 /* BugsnagFileStore.m */; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAB56A3E9F02762A877ADADABED82F3 /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EAAA7D3E3B9EA2C22622919AB96085 /* RCTCustomKeyboardViewController.m */; }; F253676650181C9AB4472384CDCFE3B9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 937CD84033EBCEC7530AD7CD9164827E /* CGGeometry+RSKImageCropper.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FFED175A51D1C78378F5B09D9BBE61E6 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F25A24D58F9DB18D19FA4AF42B7466B0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5066B5D622B74FA829E74EC57A9A4A3D /* FIRInstallationsSingleOperationPromiseCache.m */; }; - F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 412DD13752812B1CA092B6124855D1F1 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69257681AA1662D7FD8A126E8B78350D /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F26A41277C12D8FFF8439BA0A0DAE745 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = CB239D55874C02D4160E9D47CB6FCB94 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; F272955FEB837F77CA7044A8841831DB /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD8BE2EBFD0D1839043AD8540CA84EF /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2A8DA1AC957383ED61BC129CBFEE9AE /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9C5D8DA10F83B08DD9DD499558F760F /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 959E934C1B3774B4E6211C3E4C0FBBAC /* RCTBaseTextViewManager.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B8289262152BE0ABEB6FC0BCC16E7DD /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3253FD23B394327D3C8FD8D7F6FD570B /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0414BF0BBB66ECC4D8141C234CF79791 /* RCTBaseTextViewManager.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A6112AD0D87A2AE6595A4C3628D59D /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 286EDA02ED5D09F9992ABE65ABD78CA8 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CDAA627AE174F13FE1B9E69D7208E8C /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 084326DB5172F7B4C114122AC4CD8E0D /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E246AF0BBED7036FBE5BB7342F0E2387 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = D64899346B43035B56313D189AA3D2C4 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC50E959A5495A654034EF93E1B8E0E0 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4F147C150A48C9E88C17FC5E015667A /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F3BFA6A912AD972C5425B28A9DBAA633 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; F3C03C6D0A470FA009D6AE2B42CFA79D /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9AA45C53DC651E33C82B0CED94DF2A /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40D4C45C56E709102FC28245D674082 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B1763AB3FE5ED01B658F1181FBF7F5 /* SDInternalMacros.m */; }; F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EDD16EA40620A7D3F4320345E38B0524 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F42591F023436E2D251408E0F6DC9E9F /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 224E8D43D381D0811A55497FFB86EF3C /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADC689FA4AE6037B5D50C5C5F4919F3 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 799F854F7D880C45D29123A3578A443C /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 580D8B46FBFF0A60A8347D2B5B1BFA00 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 850ED263FA09AEE617847B2309FD3D09 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F12B3E9A08BDB290145E3B2BD5B66667 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F48A0381C51B2F0D24730133B0C5D5FA /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64415099B48A04C24817DF97120535EF /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F48DC19A7DE41508D245FE55D1995E1A /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6878A8C96A8BE10ACFCB2F39236042DF /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4D2EAFA010A26A974FC40FEF1E3EA9 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E7412E474F5417A987D514653AB0FE /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E76D46F06A84B4B9286B578A69AD010D /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4E86361F0A277D41AF92EEC1D515841 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 443289FF1C17B6682DA35AFA742DE759 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E81F4118D306076092074303DE64B1 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B959778F5883A6A16C96D03C7B7874A /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8D2E0EAABE90445655F7E1C4320FBD /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E59825E1567763251F6BA3C07E114F /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BA5CB87163FBF3709D07434FE50E623 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2290F20C2B8587B16AAAA9195860246E /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DA2DD30D165E94C2C29486587D8067 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = B82AE2359819957CA87A9C9347903301 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B5890231D7452E53DE643BABF2A1703 /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A2AE040566CF877A70391D5194AF89 /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 150FBEA326FCD79CA0FD0D0D0723C09C /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD0543E8EA480C7B64BC49729E69E11C /* QBImagePickerController.m */; }; + F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9678206A159276B63BD2EB7EF1B3C227 /* QBImagePickerController.m */; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1957EB80E04FA9CAFD53E047A2AB63 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5E977F9F31FB31665D9BB76A04FFF46 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = B431121E46F939344C25942872284812 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 992D961E24F23CBFB94C80495AF2AF3D /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F60BE74EC0CAAE86DF95B244A4C5151B /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = FF3F5880EA2798E9F1380057A2F66360 /* UIColor+SDHexString.m */; }; - F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E9DC97670C22C22ABE2B2891527DB6 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC92FF1C34690BB9B42280B3AF009A7 /* BugsnagConfiguration.m */; }; - F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4F5FC5459405787CDF2E133B7545BB /* BugsnagHandledState.m */; }; + F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC74069D9D5F477EAEF1DD93F60EAD1 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B7E7467BEE8E6F86B0DCABC64CF81B8E /* BugsnagConfiguration.m */; }; + F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EACE5B4C9E08B4DDD8549B2C025DC9D /* BugsnagHandledState.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C76AD245DCE1D4DE8C58E276B04D5AC /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F670C6D440F38F5C8CB289D1D0A50C7B /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0AB872B0C932BC93633FC4FF3731FC /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F670C6D440F38F5C8CB289D1D0A50C7B /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83433962F347CF9964944E8ECF30B5FC /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F679A1C3FFB46A8DA72E9B7078375DDD /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 38398CBE1093B9B3DBD3232473146B9C /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B6A8DFCAF453C51D89CE86CB3AAC94 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF9D966F20ACEBE1C1C47C88988E193E /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6EAE7F32B58579065F02A073AE50A0D /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = D327EEF1E98626D5B854257E7F9D744E /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F8915E6DDB9DB9DC5F4B4D32959B660 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88CC26E86C4581E34F084F45491BF81B /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6EAE7F32B58579065F02A073AE50A0D /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8184F44209E35FCFB3882EFAB43FF84C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F6F66797F0FC78C2248492479CBE62CE /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF3F7FEA5474D69FE2649113E76B0399 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F70C1B48EE8C32FBC9AF78B84C715BB0 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = C97C339316168DB04985D4F5AAB468BB /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 65EAC4A06F298959AC7D59F15810CB5C /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 086C0B6D8BCAA062779CA9D8FF3C63EB /* RCTSinglelineTextInputViewManager.m */; }; + F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B85DCA7215DCC24721034BA8491D07D1 /* RCTSinglelineTextInputViewManager.m */; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5155F3E43B110DAF3E79535861EC66 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CD4242F451FA4CB8BAA9ED1B598B85 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D0F83ECFB17741986A0CCB29911723E /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0053F156D7C435536B98212B3917B386 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA3592506DCD6118EF12506F070EE5E /* RNCSafeAreaViewManager.m */; }; + F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5A5D66A3F340FAF357C3C23740B2CCA /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F79075F88B5F0A11693594549A7B8C5F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = A3B579D0718FD897A3F357CDFDAAC02B /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; F792B40741251C6B961A49C5E56AC7EB /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF15DF569A38692EECB32ADF50BE67B /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB4AA7C7F31AB538F09CA5E630913AC /* react-native-slider-dummy.m */; }; - F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D474600A5BBBA68256658AEBABE66F84 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA0B40E78FBC5BEADCE390C45C701B1A /* react-native-slider-dummy.m */; }; + F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD22B7DF933DE95063DBFA9AB621CA2E /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 005C39B0D6A55407361C60CF39DF33E1 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A6DACFE14CC5DD3EFE1FF52CAE46B0B /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F8382867AA53861CD193DAF210EAE2DD /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE52C59AA142A99D50F0AA974CC635D /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = C27C187C03F06420FA43B0A4C0750F7C /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FB7BB567A6CAE2F752CECF9B7CDB70C /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F87291CF6BE44C7D989180B811879180 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25CF3561507F48600D3F453131A2C062 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F8D2633BB510B8BEDB93A5A5E3F3060C /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 260DB9FC71031205F578DBD5E9F2FACB /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F8D2633BB510B8BEDB93A5A5E3F3060C /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E700032730765E8D6A7310102C555CB4 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3ECEA23C3832F940BD691FAEE3B87476 /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D70454DF8F9142E88B85515B1C4DF172 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = B6C50FC767115CAE492253E1F49D9B55 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2025F903A0F5D0237324B244B18EE916 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D406B162AD1A9BB2D5ED8E49D2583638 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F93B81DDDAEA148C915D38C6EFCEB3D5 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BF9AC1EF2FE819707D1E091F5FC121 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; F96192C5BD1E33227FEF89509259CDCF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F3F080B4AB992EDEF5C1C466626A9F /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE5F2F939A7D13C891AA61A45FFB7B56 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E46A58A12FC794BA1AE3A482A5DC6DC /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F97BED093A11441ADBF6C0E05D48E8CE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 626AD4468A7B3178C7FB17065BF68665 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B675CEF42B5A19EFB9293FF65CBE32C0 /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D826E60BC234B9FF7AD9EE10C96EE99B /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F553972880C3A400C12E0D3D21C1A6E /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F9D66462790E3ECCB90C80157BFEE731 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C2419C4E20F84041A371C056FDD39B /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1F0961C47575C9DFF7AFCA9636E991 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C910CC24C086E197750941C95262852 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = AA2469C485F9FE943B5569FFE2527565 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E2EB32A486C6F16DA6A1DE47AD4C26 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E88F78294801819BD69BE99ED540E704 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C92F5067A0D9C793BDED8B6AF2293E /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C9FE89F9AB0D18A6131735809E51F6 /* BannerComponent.m */; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 055EA80443EBCEC8F7C23CE5DC385C56 /* BannerComponent.m */; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3007ADEE69DAF25EEED4EB1CDA5B2089 /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F3C02D59AC5F2F3B8275A9F2B77D462 /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD4E032F91D695EB8DD21783BFA10A01 /* RNVectorIconsManager.m */; }; FA7B91BBFE85B37005DA2A166EA97D07 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE9E30CA68CB867C1C2E594FB4678686 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 69350944D9C493AFF7281E61F33B7D24 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA53CD80191E2DA2D6F6430CE1DC3FE5 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FB0FC8AE6675285761278B79CA6D28FA /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F8F7CBD2B1FAC92FBC8A7461B2E5DEDE /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = D74218EDAF62BD370256384DE91D9286 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = E499E992ADE815C14367F331C98405B2 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; FB3F02BE14AE9F8DB2CEDA38C6A80300 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BD9328209611FF1811B056BE8AC0384 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB68E4F21B1748E1957D68800AFD3CA1 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9286098BE2AFF9C3096C39C51CC8AE /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BBF166CBC50CC7544F76B3018AED1D /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A76FE361D047EF69149592F12D351D2 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB68E4F21B1748E1957D68800AFD3CA1 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B79A38172EF9EE71FB0A05E099512E /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 71BA7B037466AF872EABED21FFCA4F3D /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F8ECDEFFE4E135FB39B000FF214874 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FB8C1E2C48F2AD8515C5E099C749C5BF /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C538E3BAFE7FB9B1F45E990DDC0E9D87 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB92EE439043A66D7DA98BFDC70A3E17 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A22A0CCAA83F4432C1D88100CB077A /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7561A1F3D2AEBED36E92BC3042E4BF /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBBA5CBD3A64DB549CC7D70A8158B368 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6588555BE590BBE9C4C708DE251C5267 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B0B355A6EF8ED64F63AFA79704D980 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCA1E0D1BC1C44D03756BBF4B8CABC5F /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA70478866168C127052F19BD9EDFD8 /* FIRVersion.m */; }; - FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FDD2D97541D42C063C182563CE8790D /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 87FD3BC45223DF4888204BDA75328D7B /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBF4EEFCACA4C3C85581D62F93473E7F /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCB993469467EC1426890E2EC115BD5 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E4B0DA731DAC06B044C723FE5A3A0E9 /* RCTMultilineTextInputView.m */; }; + FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02CFB7E4EAB9656948616C6F37F150D1 /* RCTMultilineTextInputView.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED9667598D8EA6FD3FDEE12FA763DAB /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F50F78B603073D4CCD13DD46ABA8B2E /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5F09B295F2D3446244328E54525852 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = C52A0895B240C1BAE40AE6AACF1ADC63 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB8150ADB2616065D796E11D415F2F8 /* FIRComponentContainer.m */; }; FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB771581C668A716F2929172EA45F25 /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = E842783249EE7636A023B7A27A74D79D /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0CB3F9986633C22527E056791EE997 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC167B708F3EDC9C2F0762A04B13A3D9 /* React-Core-dummy.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB135E598AEE7B5B14E3597613A98A4 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD38F2F2FA7D1CA194A4316CC114CE7C /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC60C4C23BBB6DFBB67F6C49C13440A5 /* React-Core-dummy.m */; }; FCC4D9CA0739EB52E8ACD925155F5C8F /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCE2FDF0CE0B180C2AF59536B663A8D /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6E0B583D7630D9E06B8B31A2AC8E9AF /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B2BDC1075053600BB48E4327B127095 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCD3515E17588302448E1EEEDB5DE753 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C35EEE4B1FA28E5625E404638F05B55 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FD44872970880E6BC2CA040B3B509AD0 /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B36F266B9D8615A7218FF77A6F09CA /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 190F437DFDFBAE254A394990FFA10E7E /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 78039537C57B2A28ECBD0C23618DD2D1 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C196C6EE62B056C27D54B09A22E6580E /* EXUserNotificationPermissionRequester.m */; }; - FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B0821E0D1250AB35A564499E2E20FE1D /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9718144F08B79B6AE2338040123C354 /* REANode.m */; }; - FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 10044E674177DA989F1497E8EFC30FC0 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BDB57F53D39DBC0E0DE2D840B68111 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = ECD7DBDB498A909518124AA224354D4D /* EXUserNotificationPermissionRequester.m */; }; + FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F1F3E5061E92E19B7F12E323613901 /* REANode.m */; }; + FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = F526B81DD346CBF3318256EC6D0D00F0 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 804A45CCD959C9996B35D180C052F917 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 694E9D704A4770B63763819605BA1D5D /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FDE050EAD80EBE0E02D981562F432050 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4207D75DF1458D3ACE11B078B04F1652 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FE01338F38ED1D4F33168220521C0B44 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F4E6559ACBC02C36028E184C9B0CFC /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE932DAB707565892DA4779DFA205726 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07DC53839E3BF5F28191DD0BA3F31A48 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FE570C55427946ABBAB0EF448040C12E /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9AF9F4D617C3D191A7755710F262C0 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 40F59D5A484EB698DDFE890E2BFEB5DC /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF2D81F19F254450F97DC57AD30D344 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7ED7C867EFB1AADF601062F778482C /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EBD7D64F48D5A37CCB258F80F759C95 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = C88933EF5580895A52694BD12032F2A6 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3CB0803F076C784C3212867D467D430 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = EF27BE664E20A803C35D11B41215F482 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E664162CC3D20649879EE5C9EE42FF99 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A4F1BB4AD11B8B0876DE2E21A6833B04 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C2FDE110C1E900AD0F8481B3CD83ACCD /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7309E915DE439E96A9E58CAE1E960EFE /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C8ABC113DB36F18AF7D1935E65C2EE0C /* EXFileSystemLocalFileHandler.m */; }; - FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B0684322EF78D44F37B45B65AED3DF99 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B163504AB53A51F06A97ED72B62B2B8 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0555DEA8CCC5B069C0C2EE89E97498DA /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B60927F207660FF1F534FEC57BF761D7 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E0DFA6854FAB0AE1641D77286FC5DDE3 /* EXFileSystemLocalFileHandler.m */; }; + FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC3A335A71373D11D159DC48AD1B476 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B45D92C822BE77215EC7547CFF15C6 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 762377E0E59BA8A87334A694F6F9118B /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AADF067596BCA8EE8C2F51825859E1CC /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3448FC55C8E82FA0CDC44861D2A94718 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFA5B034E4A506917A5D5ECDF9E13251 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A50D7A065476A0C4747B680D7254E6 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8C89747EB135ADAEFAE0B2E90A1C51 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFE8ABF8136FB927DC4744C89D988D59 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2347307F0AE2F59567C970617E229854 /* GULKeychainUtils.m */; }; @@ -3071,12 +3095,12 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 004C8F5F789B36F26D63939E8F4CBF8C /* PBXContainerItemProxy */ = { + 012B6E31000B9C7B50203C445166E8D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3085,13 +3109,6 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 015FE2E7F34A5343B8FAE10B149BD8A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; 01B7E2B77CFBD925BCAA5EE41E2360D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3099,6 +3116,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 01C8A4087E0DCFE7278E113AD6885B61 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; 01C9B473BC5FF516A57C61FAAAD8049F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3106,13 +3130,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 01FFA6425ADF76C54A7EA973539292D2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3120,19 +3137,19 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 0293930FFD72F7D2EF341479DC971847 /* PBXContainerItemProxy */ = { + 0323F991328F97F668050CC1F09AEFF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 02F7579CB1C07E489F983DC272882DD9 /* PBXContainerItemProxy */ = { + 039E8CBD37C5983167F040B9350FA534 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3141,12 +3158,12 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 045BB9F8C246EA95DF5597411D7A62EA /* PBXContainerItemProxy */ = { + 0457AC86F2F2F169E373C29F0CB64E88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; 0460274CCCBB15E986D75C4F43071A5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3155,47 +3172,33 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 0491BF5C66E0E3744D2A65D913A34BB9 /* PBXContainerItemProxy */ = { + 04992C00E6EBE5373FE7EFBC57507B72 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 075BDEF35C638FD25B24B2E61018461A /* PBXContainerItemProxy */ = { + 051F5DCCB690390EAB9C1207EB2428F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; - 08F242A01CC98E01F06F3BD1FCDFAC7B /* PBXContainerItemProxy */ = { + 06238F09DE81970920F8FB3CB188A752 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 09B4F49BAFEBBCC03650AB595927E68A /* PBXContainerItemProxy */ = { + 0864129FFA1C9FE7A7E2F408EA14705C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; - 09C4F3A8827A5BF56AB6C5E0DA2BAF71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - 0A6E183C51BA4CE0760887C859674D79 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3204,13 +3207,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 0AAF69CAD8CED905905A68E05F089910 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; 0ABA41EE7B3250B41F236C99879E22DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3218,33 +3214,12 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 0B12C38586470FD6F994547525D09197 /* PBXContainerItemProxy */ = { + 0CE11FC0203744D7E107AE16B6A8C7CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 0B311CEF96EEAD6AA3998C9550ED0FFF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - 0B53A7AF6A94D20FBCD1FBFD5BA93309 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 0DA4C9E60B351F62A059B0E3470E32F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; 0DBDC3964B7166E1CC00C4929706C8F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3253,12 +3228,12 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 0EB93DACED31549362613A8548F77A77 /* PBXContainerItemProxy */ = { + 0DEF6E66DFC16CDC50C902C561CA5EA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3267,12 +3242,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1055DDCECEF0F5C1FB48B003EBE7D90C /* PBXContainerItemProxy */ = { + 10262EA3089B20C23C65722192009691 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 10C2BEA52A3170A3F51CFAF499B2C693 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3288,19 +3263,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 1148DCFED659F0F008EB429AB19E146C /* PBXContainerItemProxy */ = { + 113D310048CCDBA4829745D03E7C5EB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 11A2A259D6CEB1CB67F028B5A756E795 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 1202CD0D4E7F78CCFBB9BAF05625B5D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3309,6 +3277,13 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; + 1227D1FB7E27665C424F0F15E124E59E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3316,19 +3291,12 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 13B0A602F5BB05BB6178D9E13FD2CEF0 /* PBXContainerItemProxy */ = { + 137C2EA56581466C052C35663441B214 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 142AC52C32E58EE1DBBAF6BE519B0EB8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; 14BB3DAC17135FD28DBB5B1361FD079A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3351,19 +3319,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 15F170657600D9F2893626C28457C3D3 /* PBXContainerItemProxy */ = { + 17F8EC1275B4E6633AD6431F19A9E1DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 177EEC019BCCE03D85E0AF53E9E239DA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; 1842322FCC293F8D40D3185CF322FF92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3372,40 +3333,26 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 1843EA0A667352D107DE9FF84EAFC98B /* PBXContainerItemProxy */ = { + 18A8A853FDBA952676258AF9A219E053 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 18B67F11FF5697185DEBC06BB0C4CA9E /* PBXContainerItemProxy */ = { + 19F7171BD534372A0EFDBA36CC5BA297 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 19AF8AA0B6120BAA4A582BF687062154 /* PBXContainerItemProxy */ = { + 19FFA4D76F413735B1A492707578C908 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; - 19D0599A49E7E0F0B70546A7473255AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 19E0E420B080AECE321692641FABC6B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3414,19 +3361,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1D2E6DC52E6158D90C72C209E62343CD /* PBXContainerItemProxy */ = { + 1B81F8C0565FADEB45A711ED943895AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; - 1E680F2DBF399A69C6E63B5B3E9C8DAB /* PBXContainerItemProxy */ = { + 1B916168DEA3C9F7676FA3590811525C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + 1CADAE3BD5BDEE1695D2D3E4635CC7E0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; + 1D95D863811FBD1B356071611606D1D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3435,6 +3396,13 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; + 1F4A7616363E0961A58CA41935200E36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; 1F6D1D516291934964CB96DF667AC71C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3442,12 +3410,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 217A9402BB9DADC4244A2988D1391F49 /* PBXContainerItemProxy */ = { + 217A3152041B91AC2C69C5E57D6F9C47 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3456,6 +3424,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 221CAE049F4AB86CB031AC422F732424 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3470,26 +3445,19 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 2325D3BAC15C0D347B8EBD609D599003 /* PBXContainerItemProxy */ = { + 244E5D6DEF2503D7C675692C46AD761A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 2452928914F8A3B32931D14A727F9EA9 /* PBXContainerItemProxy */ = { + 245FAA2D4288BB2D9D7C8C290A2E4173 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 250D735080BD2E620ED19A725E2D4056 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3505,13 +3473,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 255647DCDA46BF5FA85647D2AE07B813 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3519,6 +3480,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 262124D87F940F49B36C9748D58C48D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; 269E90A4666876CC5B9B5CB8454B71F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3526,12 +3494,12 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 277AACA3D2E2779095A077CF224C5AE1 /* PBXContainerItemProxy */ = { + 27F49C59E4ECECC0F1AD44D9418C2E98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3547,19 +3515,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 2997048CF71BE83C30E2D458147A800B /* PBXContainerItemProxy */ = { + 297A2B84FC17D6F7F91153C9C3334C7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 2A3C26B926698B2FA3E2748F2504AD42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3568,26 +3529,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2B4957EAA07ACCA18F420317536045EF /* PBXContainerItemProxy */ = { + 2CE32DBC2709206E2054AE28B010E175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 2E4A6100591F18D2FA3DFCB05EB15E0D /* PBXContainerItemProxy */ = { + 2E3FCD4E164C20DF6149425A23C418C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - 2E843DBE58216FB157B040F505DFAA4A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; 2F33AF4C1C0B51002BC93979F647366E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3624,54 +3578,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 303E21441EA81F6D0C7C37A8A3F784A9 /* PBXContainerItemProxy */ = { + 30EC7A400C70E10F3722731C54F15542 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 30E62352F87A53A0479838E4B3B2B534 /* PBXContainerItemProxy */ = { + 31B6D878932415CEEFE8C8A835FF17BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 3234AAB3E8D304565F079DAC37081122 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 346EB07811BDB3B7987A0E517C8591FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 347D6AAA9DBA4E6316C693315E777A84 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 349E537D5CBD61F65187B796D0F01D74 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; - }; - 34BE4A7571F8983AB013DEDD961DAD35 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; 34DE7C292D92E3CB1F5D90FC054FCBA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3680,6 +3599,27 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + 3507BD48B392827B556CFC338ED9DE2C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; + 35919A43D7796D975ADA32B79DAB5B88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 3597FB537A4F5019D5421F89B3AA90F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; 35A10B7FC1F84462218C13545EB7FB88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3687,6 +3627,13 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; + 3612DC2F5B92A76BED684DFEB53F5156 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3694,13 +3641,6 @@ remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; remoteInfo = UMImageLoaderInterface; }; - 36A667FA3CE9CB3B00EBF7C2909E8A94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; 370DE049C383B99628BC1490AE7AF5A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3722,19 +3662,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 3A2E01B80E10C39344D240F5DAF03ADA /* PBXContainerItemProxy */ = { + 3AEF996ACD3624F5D0525CCA0F787201 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 3AB321BF7B2A984CC6C4FA224C1969C6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3743,33 +3676,47 @@ remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 3BB76B5E03B9ACB09A327299C921D14F /* PBXContainerItemProxy */ = { + 3B9FBEE4B2B6D2D98D3E9DEA0E5910C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 3C880EFFA5C06B49DDC759D4FFCFC3B0 /* PBXContainerItemProxy */ = { + 3C9D25674D8973B33CAD9955B6E9082C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 3CEF5087A2D3E75491CFFC434701FF1D /* PBXContainerItemProxy */ = { + 3CAD605631D93011CB127DF26BB5855F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 3DEF14A4844EAA86628388DCC7FC1B29 /* PBXContainerItemProxy */ = { + 3D08869D2D5C89ED73ACFB6FD5621227 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + 3D1BF08E2D556F98377224E12140D456 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 3DD3903DB817956DFC2FC8339F36E8D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3778,19 +3725,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 4204021EDABEC78BAF0DB82314B755DF /* PBXContainerItemProxy */ = { + 42234504C7FF67CDFFCAF6B4CAD7F517 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 42EFDCD22937EE937D7C6632548D1388 /* PBXContainerItemProxy */ = { + 4356C23A90B8E137C947C8E3E45D4C23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; 437B65583B16B649BD8F25DF7359E61D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3813,12 +3760,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 450413FBA01E8CD526537C49AB881FF3 /* PBXContainerItemProxy */ = { + 44CBDE61952FBC28F86C739EBC4AB8C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3834,6 +3781,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + 47C15B465F430F5AA1F87F556D8BC4F0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; 47CDAF2090697A38D58C4D7A13E2CC2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3841,54 +3795,26 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 47FC62F3560B787BCA7A31FB7237745B /* PBXContainerItemProxy */ = { + 49CECD17031457623F27667B19749B43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 48099D488F54E1318DEC2EAB02E15A47 /* PBXContainerItemProxy */ = { + 4A8F0BE217B301EC2E43425B0A5F21EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 4836D9B1825D8E8B0380218D4AC8AEE9 /* PBXContainerItemProxy */ = { + 4AC169329774617BA6B8F3F614E8E2CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - 48BD0D6A30D6827EC1D9FB4C4D0C524A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - 49827D8E6C9C3777D3311051F5025546 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - 4AEADBCB37DD4BE17E3E35E924CEFA3E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 4C1697A40951818428033F654248FC84 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; 4C6653A5CA1CE41FC050930288153C50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3897,19 +3823,26 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 4CD227D31426463B5FD883F36389CB42 /* PBXContainerItemProxy */ = { + 4C8957D6D63B4DFC721520B173AD5D7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 4DF27DE68F23622E80FF9986C23BD14A /* PBXContainerItemProxy */ = { + 4CC9310248550CE20442255A925333A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 4CE4C00F0CB7FF9472D6B23967581F2A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; 4EC2A48991B69891116F09993FBAC1BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3925,6 +3858,20 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + 4F32EDCE5B3A12D06CE0D50B6AF3545F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + 4F982604C49A2BD0F1E05AA077E90EEC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3946,19 +3893,19 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 541DE4A51AC21718887C5E375B5C7D94 /* PBXContainerItemProxy */ = { + 547A97FCEF3B5F496F346B56B569B1FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - 548C39B9B1056D07EF30B414335EC9FC /* PBXContainerItemProxy */ = { + 548DFBC4940FA536EDADD9274D48F26C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3967,13 +3914,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 55A40B509622C6CB878A95B7D18740E2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; 55B00EF6EA1E3BAC13075885EAE12B7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3988,13 +3928,6 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - 56B0572E090AFE2E891D0901AD6858FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; 56C91901D2770AB6795E24C1123C4FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4002,19 +3935,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 579558DC66F7B44A40FF7D64907D3401 /* PBXContainerItemProxy */ = { + 5825B399C704E26C1BCB6B61F19FDB71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 588BD95DBD977F2020E42BD9C1313D7D /* PBXContainerItemProxy */ = { + 5915E8006D75569F464804839856A9C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4037,20 +3970,6 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5AAE4BC71664AB267ADEE3E95D590897 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 5AC99F768AC62CCCBE0AD4A98DA4A004 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4058,12 +3977,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5C6E738D9CF62D0EDBFA6741B7403A05 /* PBXContainerItemProxy */ = { + 5C716264B10214580C06B36EBC231789 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; 5D7263A8C3B911982BA2A84F9C447C16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4086,6 +4005,34 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5F16023EAC1F1EB07B1F66863C1A8EF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + 5FAB23E385BA05DBED57BAF876723AED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 5FE28374E7632DBC75D4A5D58FAC3ADB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 5FF7C26F074B004B268EDBE2CE7D7D31 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; 60A0EA9E2BD9CEC64E95082A2A9E3B65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4093,13 +4040,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 60A62D9570D4EFA0BA608A7C022ACA05 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; 61101C6B91C9ABBD9763AA3B33D38B1C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4107,12 +4047,12 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - 616B97A6EAD4A48B2D36AADAF1A04AA6 /* PBXContainerItemProxy */ = { + 61878CFB3F586AE186108990A431EB64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; 619EEBECABCD9B0BBCAB20D81A8AE764 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4121,12 +4061,26 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 631B87AF2D6CFF9F83EFCE06839E439F /* PBXContainerItemProxy */ = { + 623627DBDEC607D90F43FC2EE0AFCF2D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + 6243B5380DE7572F20F68EE582599719 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + 642361D0ADF645370385D06B396110ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4135,19 +4089,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 648C1D4E6D1D696611E950AC41FE465B /* PBXContainerItemProxy */ = { + 644D050C69124CC642E63531715DFECC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 64B8FE1E6A9E2311C7D102CDB6BD4489 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4163,19 +4110,26 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 6653EBAD6C7E773D73762DEA44F1E906 /* PBXContainerItemProxy */ = { + 666A5F249A3AA80B1D46125C42872342 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - 66C780598341392528649A06B2C30A8E /* PBXContainerItemProxy */ = { + 6736F72960F6002FF4A3CF65915D000E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 682D55C33CE77D1D22FE2E939A062C2B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; 68398EDCB17F0A6D8CEE83EC1EB7E137 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4184,12 +4138,19 @@ remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - 695B12575543EAE87240731C8F1836CC /* PBXContainerItemProxy */ = { + 685E92EDBC430330C804A55B8F8878B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 686BC32D1C6CCC457FE2565F332BABCE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4205,12 +4166,12 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 6AE56182B0BAA6258AEB3E7C0283E1D5 /* PBXContainerItemProxy */ = { + 6A352984A742DA189FB8046B104E649F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; 6B208C6A49DF0227CFB52DEC61D41F38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4219,13 +4180,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 6B3B687D7F79A74A9B0E3129C7591AC8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; 6B6C9C98FB7F5650E3334BCFFACE0D76 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4233,6 +4187,20 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + 6C1876B42A8A11CAD3F4F695CDA925C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + 6C268D987CA614E5B63919CDA4EA447F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; 6C2F4A0DAC27B8CC1550B7060BBD3B66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4240,26 +4208,19 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 6C6C21381C0030C061547E5493C464AC /* PBXContainerItemProxy */ = { + 6D67EFEBD531F532E3038CAA6D274C44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; remoteInfo = RNRootView; }; - 6D0864F41F867DEB5ECF23827B8098F1 /* PBXContainerItemProxy */ = { + 6D7BFAEBB699B1285C90F5B301EA2DFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 6D3B3B992C0BEC43909F993F0FF329C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 6E0F5F25DDCF1759D45031621E96590D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4268,6 +4229,27 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + 6E305EFA6CA49BC3193707CC134B410C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 6E717D4CFDB10347250AECA14017ACD3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 6E8DE6BDF28E1F509FAEFEBD2EF06C79 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; 6F3BFA1700F4AD8B8AB51F4F7A157858 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4275,12 +4257,12 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 6FD6FABFE43447D15CA7D9CAD61CBEE0 /* PBXContainerItemProxy */ = { + 6F7F04555C3F3B75491B971CAC243E4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; 6FF8F75EF6992288E8D349C09CF22BD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4296,33 +4278,26 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 70AF2B7C4A4C383D405EC28191B9C06F /* PBXContainerItemProxy */ = { + 705FABF8970AA0635666C3BFDA63D7CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 72321C38B22880024C990C1197740C6D /* PBXContainerItemProxy */ = { + 71AA0A9F4AF2861DC65C634DCA84DA29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 7233D610D9F4D656DDAF9BB8D0F38AE2 /* PBXContainerItemProxy */ = { + 721922D52B0FCC4904CB6A9DC5B0F513 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 7238A50621C3AF093C1110C364BB5C77 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4352,13 +4327,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 748D7DB37563A19AD264C4C080B45A4B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4366,21 +4334,21 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 7507280D306C10833F001714926E95B8 /* PBXContainerItemProxy */ = { + 7581ED2D9DC49A86B186710998456FB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 753FA5A207823BD66D1D71B0CDCF0732 /* PBXContainerItemProxy */ = { + 7591D4886E50377DD63D58E2B727CAD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 7577DCA93516F64058BE2CBD4D16AAB2 /* PBXContainerItemProxy */ = { + 75A14AF211679514F264E7F0DF803B07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -4394,20 +4362,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7874C0256A752A615882184EB9C8F75F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - 79CE470BAE9ACBA179FB8EAD07E849B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; 7A89F7EA8C0CCE4C1799109D360F0F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4422,13 +4376,6 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 7B14E6BD90EA4165214257636A78C7C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; 7B4E5E1C683AA4C9D6520E9A4748E8B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4436,12 +4383,12 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 7BD686A6589C91A0687BACB84CDA4EA8 /* PBXContainerItemProxy */ = { + 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4450,12 +4397,19 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 7D72217BF6506BC58BB7E80E9B09916B /* PBXContainerItemProxy */ = { + 7D209FDD21AC8016C90C101B929B5426 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + 7D7E343C7C927F27F36C93F45E00971B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; 7D9A4DEA0175BC4538E1272B3B0504FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4464,12 +4418,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 80628139D04AD297BCA1171F65E5A904 /* PBXContainerItemProxy */ = { + 7DDD6FE55BBB3E679C5550D19E0C634F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 7E5CF4EB9B0B0447DA4E25A106293A73 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 7E740B3EA4C3D227C7CDD81A256D4856 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; 8074B236F0C465FFAA342F8D44BC108D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4485,27 +4453,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 80AF874E16F9906580FBC01C3C903730 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - 80D98167D220E6CE6447260E8A2AEFA5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; - }; - 8109050B5E46CC7A491E59935EDB62B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4513,6 +4460,20 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 8135C638E8BA5FD09534BEE55259A5BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 81A1D83097B7AE95C8A5857EC5E10AE7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4520,19 +4481,19 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 82A58AC27DB05F10516AA23D87CD3B42 /* PBXContainerItemProxy */ = { + 81F8896C5DB1BCE0407DE2B61AD3D6F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 82A7B3FF6D6F4617DD95988690470EDC /* PBXContainerItemProxy */ = { + 825E6B70DF984A80754D23A4950D7438 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; 82B12BA2AABCF09A5F85DF84C0BDD0AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4541,26 +4502,47 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 837CE5458DBA3870465F878FC3CADD93 /* PBXContainerItemProxy */ = { + 8302F21982A3EFCDC6FD0714DAE85EEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 859652560860CC726099971D9DBEB5B8 /* PBXContainerItemProxy */ = { + 839AF7ADA9594F89244CF78223DBD467 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 872C0871F55F2ECBBB9FC53685A787A0 /* PBXContainerItemProxy */ = { + 83D2618D2C50A897754D642E84FF5923 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + 84082BE82B89E7C124EA0026CADD5A98 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + 84C7A31872934114867DB1B3868C9EE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; + 86183DE889527A9647EEAC01222F58F2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4583,6 +4565,13 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; + 889B4629741816E3830F8BF948F984C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; 88BF67064CFFE8794B0B07782EB28354 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4590,26 +4579,47 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8A63BF9F45CB7C2F21B947C2AA9FA350 /* PBXContainerItemProxy */ = { + 8905D9550652F9ACC7DC0827EE1C2607 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 8A85832EE1A6877F579F093A9D3DB93C /* PBXContainerItemProxy */ = { + 894B471BA7FD2341B3F517268F61BA1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 8AC3B2B8F7504F27CDDE9FBE8E16615E /* PBXContainerItemProxy */ = { + 8A6CA7E78A119BDA035F13C1C2874552 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 8A6FF4D0F60D1A1737F944D831B6F746 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 8B72922AC4529AC0B7D77BE93B230132 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 8CCBAA9D14AB79F06954DD34A2731FCD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4618,13 +4628,6 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 8CD79A2A80337FB72AE57AA8D9785D23 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4639,12 +4642,12 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 8E3C0614D370D7F394E44134278E56A8 /* PBXContainerItemProxy */ = { + 8E8FADFE18B61A9C7EA803AAD965E322 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; 8E91990EDE03926388322CD5BC7E9596 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4653,13 +4656,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 8F59B68DB48BE55715202C35546798A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; 90A863AAA5E405464866F689B43DA4E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4667,6 +4663,13 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + 90F215D1E26A8D8D4244B203701AAB00 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4681,6 +4684,13 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + 923376C74AF4DFE8BA454FE5909DD20C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; 924025D4D8E604372CC80524DD2E97F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4695,27 +4705,6 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 92905335AC1A9962BF38521B85E71DAB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 92E3BB6EBAEFC78CB85CBD28AA64A821 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 934036B476AAA6A4DCA1E0D4F67897D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4723,33 +4712,19 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 93844C1B1AC7AB5814E7B2FE59053A85 /* PBXContainerItemProxy */ = { + 955AAE1FE6E875B0E70E957463F8FB11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 94618A9760AF55BA57DF48ECEEE813DE /* PBXContainerItemProxy */ = { + 9564EEBF40E15A31A8E7CC8D8C0E37D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 9461A07938C27CEB5079BA27ECC8DF88 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 959E7E161182EAC527ED41C4224C461C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 95D6942673DEF26CD96965BD3A7F39D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4758,40 +4733,12 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 973375826EC3C5CAEC5BC24D5D8FA5B9 /* PBXContainerItemProxy */ = { + 96F661024B66FE3559C7774BB419C99D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 98E57BE9EA167ED0FA9EABA43624AB80 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 9947DFC2989D2E7E76F753F50BA5186C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 99895A9632B61357C50AEECCA4561303 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 9A0FF3CE0359BC059D1CBB9669AD7751 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4800,19 +4747,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 9B7DF91205BC0FCDCF42F1C7FA199438 /* PBXContainerItemProxy */ = { + 9A9AF991BD38A26E4991C70E12B3E338 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 9BA5FC7DC2C6E23E73CB5561D875B17E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4821,13 +4761,6 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 9C1523123F4B2E1D269F447EA30989AB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; 9D5A278B1D609214380E444D1D5DFFEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4835,13 +4768,6 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 9DC2DD71210441738528CA3CE8ABCEB4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4849,20 +4775,6 @@ remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 9E9FD5212C281E4633454FCAA11D8969 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; - 9F2328789E7A4B811051BF9D4104093B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; 9F5139B580DB48CBB546E5DA6213CF53 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4870,12 +4782,26 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - A1A282289704EDA50F18108124D75A67 /* PBXContainerItemProxy */ = { + 9FEEE5A7B6225B791A62FF6B93A364EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + A0514ECFACC7F0E9DCCFE507BC6414A4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + A19DF5E0EFE248F59AFA5C74EF0DFEC2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; A21650743E2C37A78D811B8920A0B860 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4884,54 +4810,40 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - A253B0B4E3EA6E0E65AF80B814CA8C5B /* PBXContainerItemProxy */ = { + A243488DBA17CD164C4860C26B1E6385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - A3AB2A0EE3F1761ECBB4FF800C6CA2E9 /* PBXContainerItemProxy */ = { + A352A2546D195F5EAB5CFEAF573EE5A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - A3BDAF38FC335B1A73DC6CE04E8E944D /* PBXContainerItemProxy */ = { + A473FE384ECC0A5305C9C74DC4AA4FE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - A488F9846CBA54BB07FB12B29E552F2A /* PBXContainerItemProxy */ = { + A6230F7EEE1ACF1F51FC6517BFAA3C8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - A4EF2779024538A36B6887A8DE57956B /* PBXContainerItemProxy */ = { + A669E7A301270A2DDAF00B85D781585A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; - }; - A6161B2ABBA63D913268BF2780143A95 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - A6CBE22D95622F2D7ACC00F3B3E4E111 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; A6D3FBE192729DD81F271A1FC6DA3AC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4940,6 +4852,13 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; + A70634994F83F832F25CF3F2767EA577 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4947,12 +4866,12 @@ remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; remoteInfo = libwebp; }; - A7EC3FA2EAB338AFB4C2D3488304D925 /* PBXContainerItemProxy */ = { + A85E89D4FB7CA935A92B4AB152E73C5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4961,19 +4880,12 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - A8E389D91D646E794A926BCA5BF94E40 /* PBXContainerItemProxy */ = { + A897D0E88033885E5D7E049FBA306557 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - A90DDA6C7C83CD307012B1D59B0E693A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; A948FF4AC90480FCBFC7BBA8916F351F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4982,12 +4894,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - A9E735C1F9867C0B3DD9BCBFD431DFB3 /* PBXContainerItemProxy */ = { + AA16D97646B953B5DE25C0F786EB4D0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4996,19 +4908,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - AB551A88F6A300437B5AAEAAACB9EF0C /* PBXContainerItemProxy */ = { + AAE5A28788B8F479BB26A4207392F53B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - AC280A8F0A33B9A38D661AFF3F7FDCAF /* PBXContainerItemProxy */ = { + AB127B7AC6926A555A6A6FC702B198D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + AC36F5A23C7659EEF3D1CCCB7421A131 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5017,12 +4936,19 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - AC808FE34F24C8F77ECCE627F8F376A6 /* PBXContainerItemProxy */ = { + AC6D2E0D2044713E0891D41AF811ACCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; + }; + AC9C0601DAAAEE96A7829DE927A63A35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; AD772911BB22AACF6D82C7659AC43148 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5031,13 +4957,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - AE58832D440D3C3E05A0B799A6B7147C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; AE7111F2927DD7B05F869FBCAFD506C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5045,20 +4964,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - AE8BF63331C900BD24FFF78F77912815 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - AEB9655D38613FF8562019AF175C8D94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5066,13 +4971,6 @@ remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; remoteInfo = RSKImageCropper; }; - AF2340914EB7C63D626A23319D326F86 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; AFBC06851050FD0681A66F16BA170F39 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5087,20 +4985,41 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - B09959DF38D2937CDD2C49B95ABF8D0C /* PBXContainerItemProxy */ = { + B0F7C761F918E18B1D0EEEAFB32C5029 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - B39F8CFE6AEFD0B40C4EE481A0F5AE56 /* PBXContainerItemProxy */ = { + B182109061561F8260E028E35AE84834 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + B1CDEFA1365BCB532C7D56E79CB21624 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + B2F273D9B85840547D0C458F7741B6B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + B38FB333782EF76F150C8C7CA582A8EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; B3A01A4439D0D10A063FC8A085DBCE8F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5122,6 +5041,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + B42A7A869D992BA4DB3CF5080446DFBF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + B42AB67030F3497A99DD3DEFEAE57712 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; B4E7AA2F388BF06D09134ABA91287970 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5129,13 +5062,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - B50760BF6C822D4858F346BED1C530B6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; B56678A4474A9DE17802BB174F7A946D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5157,19 +5083,40 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - B8257E31E04AD1FB72C6CF52AD939356 /* PBXContainerItemProxy */ = { + B765F6580593CA66972B16001E901AEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - B8E07F7CAFE7517B43D7E90D97E4C14F /* PBXContainerItemProxy */ = { + B77EC1A3590605F7F303BFA0F423C646 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; + B82293B9E6A3296AA27328595327F9B8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + B9EEA885BAF142FCA381D83672647BF6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + BA7B7E1F2CF0D45AE8FC7320A03337D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; BA9E3A8B825153221034FDB7B6A40DD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5178,12 +5125,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - BACC6629FB49C2F2D8132FAE1D3A3EC8 /* PBXContainerItemProxy */ = { + BB161EB6C6BB407192EB7CD70EAA2AF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5192,26 +5139,33 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BD52F6557F29272F7B0CDB1133B2E0D2 /* PBXContainerItemProxy */ = { + BCBB0BB67512B1EE5D9FC19E1D158165 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - BDD2B43F39F748B165D3B4CC4C141AB7 /* PBXContainerItemProxy */ = { + BE0DA9D5A9956AE2715C11C1AE7AC86F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - BE860A2E05B7BF993B1F29F3F8B90838 /* PBXContainerItemProxy */ = { + BE237984A2200A73DBA16ED3579E8BEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + BE33BC644F700F14C28AB6288F04A377 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5234,33 +5188,33 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - C033DD1B5F4B16A9A96069B6144CDE96 /* PBXContainerItemProxy */ = { + BFF966814809AC138A75A03363F74170 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; - C04D6EE8BDB5D547263340CFDC3A7FE9 /* PBXContainerItemProxy */ = { + C06F3735F551BCC5AB2B6C61FC941617 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - C14C23E586AF0C0DADFCEDCEB985FBC7 /* PBXContainerItemProxy */ = { + C1D3AEE4D2FEA05EBDCE3A43E5C08707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - C20A830A75E8924D6ABAC4BA679017DF /* PBXContainerItemProxy */ = { + C23BB79C36BAB0253DC82F033D877286 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; C266DDB269EE618DE8FA720583C9C81B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5269,33 +5223,12 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - C2A4A257DC28D124C5CD45F7046545F2 /* PBXContainerItemProxy */ = { + C37E10135CA6C05B846F3506C7F16D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - C33D32857511A8B4E852A615B270DB75 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; - C346D6535452B40DE97F3DD730EFFA98 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; - C3EBEFCD96AED8CAB041BC6A9010D8B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5304,12 +5237,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - C5A29F79D44A9B5007673C3FAB1A0F4B /* PBXContainerItemProxy */ = { + C58BBBD418E6F3778E7EA7161CD806CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; C5C74D9E7DA1AA3DC76770DCBD7CC27C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5332,6 +5265,13 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; + C6C64E1E52A2544CA03B7973DFC5F635 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; C6FB783E0F0B781F24F3E63FACA0E42A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5339,12 +5279,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - C7336029FC65CE439FD369C7E6F4B1CD /* PBXContainerItemProxy */ = { + C7A71D296A06DEFFACAC95769713AB88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; C8CA4B534CE37351B06EDF9C3744C014 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5353,12 +5293,12 @@ remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - C95055B3936F1D9BEA0BB8E7D30288E0 /* PBXContainerItemProxy */ = { + C924141874094D028FB642F223B799DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; C9A96638BA1FF6B3D2046312346C0E9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5374,19 +5314,26 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - C9FA794791DD269922D94CFC2AC0216F /* PBXContainerItemProxy */ = { + C9CD3B03306F8775ACFF54CBE838C68E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - C9FE640C91CF104AE8C75974E1D0F465 /* PBXContainerItemProxy */ = { + CA40F60DD5EE5CF7F6AFA03BB4863188 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + CAA85907C7C17AFB0A10B1530C2BE4E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; CAAFA5AEF75D91014E0A847946B5CD1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5395,13 +5342,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - CAC354F481A7DACB27DA3E491CEA9611 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5409,12 +5349,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CB03656E5F5E47071957ECB1CFB5E0CB /* PBXContainerItemProxy */ = { + CB03CD17FDCABA719768C607406BEB2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; CBBD408BB7D70EE08646E3F8BD770069 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5437,6 +5377,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + CCBF64AD9DF5D129E7BCD151F2EF81E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; CD3509DBFFF8BB18722CE453F9003BD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5444,19 +5391,26 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - CE2F57EADD68691AA638B2E9100575C1 /* PBXContainerItemProxy */ = { + CE12D0235200FECDFC6E74CF0A1D212D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - CE6BDBC6FB2F46117631B453644B3D91 /* PBXContainerItemProxy */ = { + CE542961701E278768ED1BA423934B23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + CF0FE25543B2D6CED188B88FD2FF87E5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5465,12 +5419,12 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; - D069D1BD6BC655C9307A6058CC0D703A /* PBXContainerItemProxy */ = { + D00B27B963BA508B1C8AC2E7E18743D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5479,6 +5433,27 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; + D0CD9F95D7AF114C7FA72B1CD427B3BF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + D1379898B669373AB3FEECEA86DD36B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + D16209CB92E2B310A78EC1EB8F1232B2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; D19900A8FD578E00B4FDAFCE6EE7C8CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5493,13 +5468,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D28C49964D540257512849A23140B004 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; D290869CE5E3CD1EF4C5525BBBF8EC9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5507,27 +5475,6 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - D2E55B6BDAF81BDCC2A59A9ABDC26C17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - D2FC7C42D392B0B8E09236101A4E09C4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - D40C3B376A3048883C9983514D1AB138 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5549,6 +5496,20 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; + D525D6ACA7B1B78DD462D10E15FE1F5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + D5441E0DE33B91B5B638940730AF5F96 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; + }; D57C0DD9800DB5B6699D08359FEF3AEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5563,26 +5524,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - D5E0F479080A3548EA71565443BF62B3 /* PBXContainerItemProxy */ = { + D6092560EDE137614C92BED34B9AE2FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - D614721636D133154CBE77DCB8E740B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - D6196B4CF9DD24461E62959DB974D255 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5591,12 +5538,40 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D8896153C90376FD841F9F6226640769 /* PBXContainerItemProxy */ = { + D677AFC4CC2D97D3DDE846F41F92E216 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + D73D7BA595B1E9DA6DC89A0B9F769F49 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + D7A33C551BF0BFCEE920C8B2119BF542 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + D87770F20C781AA9DA01FBD8E4736763 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + D8D8C376BD01ACE11AF31C74BEFCF6C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; DA7D2B89AC64EE5AF84FBFEB65251C98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5605,12 +5580,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DBE61D88AE671E8815214B116F57E6EF /* PBXContainerItemProxy */ = { + DB021704D3F01D4EF451CFDE6D168943 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + DB0847A53B2FA0A3C99B225E97C243C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + DB8E6C2B826259CD8BC9F60B2D50D0F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + DC53500068069FA76A13081AFB08E2CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5626,13 +5622,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - DF0EE647BBF3364114B255E46E8374DB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5640,13 +5629,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - DF677F765D6C60D3DE6B97DA735E120D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; - }; DF83807DED7F8C5AF770B13C6BAA9515 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5654,12 +5636,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - DF9C8A3667CAC52B56A1BFFC2B88ADAF /* PBXContainerItemProxy */ = { + DFC509BBFDD853A8D299A1455023C72B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; E151C3507E1AC3F51E6253967970D729 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5668,6 +5650,13 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; + E295AEA66CFDD6623A312A4734A37AB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; E2A7D57EF8EAB020233EDC68A9ECF68D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5675,26 +5664,33 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - E2CD70AE7A465B98362B9ADB9A67C298 /* PBXContainerItemProxy */ = { + E2ED9F097AA42802FCCF6DD879C4EB79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - E4DB45AF08911ACBFF949FE113CCDB83 /* PBXContainerItemProxy */ = { + E33F96D95B2EE0D5217037F7BD3115A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - E654496422A19164DCA87DC87D60417E /* PBXContainerItemProxy */ = { + E51C66421462312696F2D01BD169C9E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + E548EF4E15DC9B249703DF7C569CE90B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5710,19 +5706,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - E7BF3B994EB1EB816A02193931536817 /* PBXContainerItemProxy */ = { + E7E2CA5641EE4FEA39D5724A4CE38E31 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; - E81B6CE6732C69531355630EB618ECF6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5731,12 +5720,33 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - EB9A58B4D2988FEA4D86FDE9BABCB937 /* PBXContainerItemProxy */ = { + E87EAF6AF192C2BAC70D150EEF007592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + E8D57349E6188E7731DBA51BCC24F3B0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + EC9888C5259A96C5952907392BBDB28F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5745,13 +5755,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - ECC3487D6608A718BFB2B34971B08AC2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; ECDA3E11587890F6131BBCCEE8B3A5A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5759,12 +5762,33 @@ remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; remoteInfo = "Flipper-PeerTalk"; }; - EE649AE455D207F2A20EADD20FE41444 /* PBXContainerItemProxy */ = { + ED466F782FCAD6F97E9AEE113C58905E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; + }; + EF935A0094EFA2395E9453F7D9C75DF4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; + F00A3AD284C3AE098AFC0F2C255A6452 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + F0270D4E6F206819F8BB666203201160 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5773,6 +5797,20 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + F0866E4673899AF51D540EF97B44B4D1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + F1312F6BB267898F9763CFCAB2225B1F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5787,13 +5825,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - F1BE6DEC64F23BF14FC235D00C202386 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5801,13 +5832,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F2BF1D08AD7B7FCC772F2A70DE138319 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5815,19 +5839,26 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F2F4250DEEBBA02EC2E4F57AB3F67E2F /* PBXContainerItemProxy */ = { + F2F7A2A57746511D774A16249C56F981 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - F3D4FACAB449A01E756FB1E30315D033 /* PBXContainerItemProxy */ = { + F31739D22AB136C7DEEBCAFFFCE1CF90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + F4034DDE7024E1C58C11E10ADB7724EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; F40F967DB5AFDF925A6D54E4FB17CA0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5836,19 +5867,33 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F4D48F51991C68B64DDE7029DC81A05F /* PBXContainerItemProxy */ = { + F45C8B23AAE6EA8FD3DD2D67F77A66DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - F4DC8CC6F0D649433FFF38A495BCC6F4 /* PBXContainerItemProxy */ = { + F4703B1B1058B7A8D057AD4F8AFFEAA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + F47B5413B8735C1D7011155D11D69E4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + F4C3D2F5F697D1FF431D6CCD1DC2E2C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5857,6 +5902,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + F5AB0832E10BD6B650CDAA9D6700A955 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5864,19 +5916,33 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - F74239C82F649DEB050E9FB99E683A60 /* PBXContainerItemProxy */ = { + F7E84F06FCDF6D783EAB427DD266F1C4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - F944FBD086B4F0B7A6A8F98BCFF0D59C /* PBXContainerItemProxy */ = { + F811C2CFEEF4976187C1F2ACEB105D5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + F8979DAB3B05DADF40B66DB3410CA732 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + F8CFE6F279DB272E9F6E36635CFEBF0B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5885,6 +5951,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + FA21F973340DE63A3E52A43007D42844 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5892,12 +5965,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FB9B37C957C03C39DFF9BFB0F54280F4 /* PBXContainerItemProxy */ = { + FB4B9BDA30D2FCA6AC90A933C6936801 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + FB6EA7F53397D6BAA834F970A1CFE9BF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + FC77D8C041630A4415313362FCF92C27 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5906,426 +5993,413 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - FCD9E02655D4F4E60EF5892BACBA98C2 /* PBXContainerItemProxy */ = { + FD34C96679BF0F4BC88604C97BC1A5A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - FDB4CC5D5AEB96DE88E1322E135629B8 /* PBXContainerItemProxy */ = { + FF88C51032D281BDEA5ACBD2E9CB8F18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; - FE085C3B3F06A79867228ECFD647A377 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - FE38C858C518B8FDCD04A5D2231EAFE9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - FEFA81BDAF957029AA3AC4E53AEC606C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 0003504E25CFCD737EB3599D97FA8714 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = "<group>"; }; 0013F7D2E78BC3DB84DD98AA76CA9955 /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = "<group>"; }; + 0021C6A7A997A06C2776B974C7821251 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = "<group>"; }; + 0053F156D7C435536B98212B3917B386 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = "<group>"; }; 005C39B0D6A55407361C60CF39DF33E1 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = "<group>"; }; + 005FE8CEE0A32FC4A24106623708ACF3 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = "<group>"; }; 007F51799207C1556B23F3D8F8C1F218 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = "<group>"; }; + 007F599147497FC96A4178C305AEABCD /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = "<group>"; }; 007F5CF050DF32FA07CC118BE233C455 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = "<group>"; }; 00855890B735951AA5162A55E8A97890 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = "<group>"; }; - 0090BEF13DE7D3464F0062B18937C531 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = "<group>"; }; + 00947C580ABCC7B722ECB8D7D351E6F7 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = "<group>"; }; + 0094CAE67569F4423CDD1130F0BDA500 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = "<group>"; }; 00B5C72529406EE9732D26B824356D9F /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = "<group>"; }; + 00B683AE6E1CBC46286F76D903C3CCCA /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 00CBC60CA92F11200494D717671FEDDB /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = "<group>"; }; + 00E07C03A34E87743AE4F9B6459A323F /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = "<group>"; }; + 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = "<group>"; }; 00ED0947E7C56C338297FCD518F450BB /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = "<group>"; }; - 00EDCAA7B97036AEB4F17F2431CD31C5 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = "<group>"; }; 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 012BB9E56B33EBF4790164443F9F9352 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = "<group>"; }; + 014FD149D02644CEE876F548EC93DB43 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = "<group>"; }; 0165BAA8EE7266F1ED30DF044C6D3017 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = "<group>"; }; - 018D4EB55D0B81E4E0A8B0C4EF13FDEF /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = "<group>"; }; - 0194255A68262603732E2E4F4F9BDAA3 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = "<group>"; }; - 01C015A56F8C5753715F3344D67046F2 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = "<group>"; }; + 017D7E96C0E85B39A122FDA67530E6C0 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = "<group>"; }; + 019000D78E96C67B33027B1AC4CBE890 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = "<group>"; }; + 019221C7B171A8784728465F9FE50ABE /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = "<group>"; }; + 01AE0B052526B55F3E3B0A632AC1A9AD /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = "<group>"; }; 01C61CDCDB208940081BCB076A189961 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = "<group>"; }; 01C75B5F8947006AB1C73BB46B4267E5 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = "<group>"; }; 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = "<group>"; }; - 01DC3D71773A522EB2F7C6F3723730BA /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = "<group>"; }; - 01E111A92A8C204D121A7CE95801F180 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = "<group>"; }; - 0217D0E502821EC62D4BC5A63234FEA1 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = "<group>"; }; - 024002479A430A739738CCA4DA9D7A68 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = "<group>"; }; + 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = "<group>"; }; + 01DC61744399BD2FC81739D0D16C7640 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = "<group>"; }; + 0221AC15766186E7DCF679FB4AD3B495 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = "<group>"; }; + 0230A9B1EF23B78768AEC32DC03858BC /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = "<group>"; }; 02610419E361BBA69BC1DA912F509792 /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = "<group>"; }; - 0276A5984EF410A04E45C39777BA08FC /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = "<group>"; }; - 02839DD93278BE161B024363703E82DB /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = "<group>"; }; - 02BA4A97D0301E28F3FC09DFFF56E09F /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = "<group>"; }; - 02C5D16E99004CE5FCA141D0C0C3082F /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = "<group>"; }; + 027A4BDF040FB5089179212613E3B3A1 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = "<group>"; }; + 02ADEF2EBE6BE74990926B31325535DE /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = "<group>"; }; + 02CFB7E4EAB9656948616C6F37F150D1 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = "<group>"; }; 02D4EE66505B739A233275617D19E90B /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = "<group>"; }; - 02DF8E79EDB719687F9AD4312BE2497F /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = "<group>"; }; - 02E7806F9CAB5FC3C3A6D2F4B19FB0D7 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = "<group>"; }; - 02ED9359D57B349ED403CE99D1BE1087 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = "<group>"; }; 0311B13879609FE9DF91F2242EF8880B /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = "<group>"; }; - 033AEAC06554EDAB089E06D94AD09569 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = "<group>"; }; - 039260E4EB98C38E56BFE23345A91046 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = "<group>"; }; + 03318E53C1FAE6FEF2FE77CC95DBFECF /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = "<group>"; }; + 0390D837DA5045FC965D96C06FEA2E00 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = "<group>"; }; 03BE24F4F18839DA0DF090854262D0F6 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = "<group>"; }; - 03E769E1378A9A173E93E981E490E214 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = "<group>"; }; - 03EBAD293CCBC3FD87634A527B11129C /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = "<group>"; }; - 03F6CCED72BFE6C3312F1EBB5812CEBE /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = "<group>"; }; - 0404F95004D73EFEBB6CDFEF3BF0585B /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = "<group>"; }; + 0414BF0BBB66ECC4D8141C234CF79791 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = "<group>"; }; 044C324DA966C314028D2F3B9D0CB553 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = "<group>"; }; - 045EEDE1DED9F8F66E3B5F0CFE3FBD9B /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 04832F3BEF5457E9231DFA3A7B466767 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = "<group>"; }; - 04893AF65324DB5A2A67812211344EDE /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = "<group>"; }; + 046876CB45E8677AA2A5F488330696D6 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = "<group>"; }; 0489E0A1F8187B5F4941602010D531FE /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = "<group>"; }; 04AB6BB53E4F9261BD400BCA26111B30 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = "<group>"; }; 04D2FF17E6F4BBB06C01BCF2F7ED5572 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = "<group>"; }; - 04D663D51FF3BC07BC8331ADD75706C5 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = "<group>"; }; - 04DE0F5DFBD03C92CCB6615F8DFEC826 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = "<group>"; }; - 04E5CAF5FDF2541E751901FE0B665F3C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 04EBBBA654E5B9311944BB828A0B747C /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = "<group>"; }; + 04EC9F608FFDDB8D66E233F17B837EDC /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = "<group>"; }; + 04EE446FC64B653149F646C077D3D934 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = "<group>"; }; 04EF404723C321D1CE272E4AB802BD15 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = "<group>"; }; - 04FFB9C319EA3BC2AF3541DA4BBD1CC3 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = "<group>"; }; - 050E27E3EE0CA10437F5D07EEEF18F99 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = "<group>"; }; 0517A3D8E3A08BF3DE37F6F920808853 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = "<group>"; }; 0519831A7389E3FD1F01F9B872C14C26 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = "<group>"; }; - 0565C8582A36374220B1E5EE36E36BEB /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = "<group>"; }; + 0555DEA8CCC5B069C0C2EE89E97498DA /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = "<group>"; }; + 0556DB0C37E1FB6783E6ADB0D5A4AF0F /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = "<group>"; }; + 055EA80443EBCEC8F7C23CE5DC385C56 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = "<group>"; }; + 05682E662630AA75EC110F8237BDF8A1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 056ADBB8EC7EC510BBD1C3834CE4F319 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = "<group>"; }; + 056FEC49181BE5653FB8F593FF0BB55B /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = "<group>"; }; 05A3D55CAA8DED5C74FC5C2B3BA51AFC /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = "<group>"; }; - 05B096545AD412892A5196245C3150A4 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = "<group>"; }; - 05C5C1C3B3F9691C527AE26DB0182F75 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = "<group>"; }; - 05C7FF7F0A41C0A62CCD4081A769B7D1 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = "<group>"; }; - 05D0F14DC3B4D4C2B13E841FB85EF27D /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = "<group>"; }; 05E10D9D717D3FF1D79290CB9A54BD38 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = "<group>"; }; - 05E86336AF4C6134869ADC56CB101B4D /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = "<group>"; }; 05EFFF3F828809F4D688B2C16C00550C /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = "<group>"; }; 05F0230F308837451B51927D88623BFB /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = "<group>"; }; - 05FCCDB5B8226B26274EEA2A8835FB1D /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = "<group>"; }; + 05F0473BC278863B6BBF9D7DCC8A3051 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = "<group>"; }; + 05FD565D63FF14AEE82757A428C2A6B2 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = "<group>"; }; + 0626132BA2BF2C2F53356A32CBDABBAA /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = "<group>"; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 064AF5CA1F21861C4AA9F8DF36BA0773 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = "<group>"; }; - 067D46A826FD4774A6ED6EC1D61863D0 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = "<group>"; }; + 064B454F7BC2B101368FF9057395ACE5 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = "<group>"; }; + 06588A0773015BE726D926827B8A288C /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 068CB8333E3EA16C3C8382BF5A3277A0 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = "<group>"; }; 068D3645C0B2E35542B23A98DBDC265D /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = "<group>"; }; - 0694221AA3A53B75F96CFF7D06188206 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = "<group>"; }; - 069DB67EF6B2F8AA995630F6F9E2282A /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = "<group>"; }; + 06B2203029C3C3AFCDD5DD5318FFCC4F /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = "<group>"; }; 06B58C5BE0FB638D9C4152C2BBFB0541 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = "<group>"; }; + 06BB9BF3EDD857DAF1AE0CAA54A507FD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = "<group>"; }; 06DA217DBD0FA2E42BDB897AA049CCC2 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = "<group>"; }; - 06F09B2B54ABF89A0E692B008AA9D6F9 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = "<group>"; }; - 06F7E102B8926396E85BF47205E1D5F9 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = "<group>"; }; + 06DE0CFE6EF973F7525BC19782E877B1 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = "<group>"; }; + 06EA2F015CC2FF6A8803D9BD622FC9A4 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = "<group>"; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; 07017D11692DC682C8E03BB2FA2823DF /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = "<group>"; }; 072CA5F994B8A58A9BBB07C0BBD5B224 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = "<group>"; }; 075EB1E1621767C17080076A7C508105 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = "<group>"; }; - 076E145788164E8C598B00518B182087 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 076DABD1E77AED8A0B388AFE75D74F9D /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = "<group>"; }; + 0777B403F17F492A3B73D37EFB89229C /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = "<group>"; }; 07B25EC8B033867DDBBFA3107CD3017C /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = "<group>"; }; - 07B399C7A1992ED828E225323FB85F8A /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = "<group>"; }; - 07B62A452B7E919C6AB870A78E1B814A /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = "<group>"; }; - 07C26F973618AB9F44097E0D662C8273 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = "<group>"; }; + 07B3A957AE8A7C65C2F2CCA813376074 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = "<group>"; }; + 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = "<group>"; }; + 07C5BA84758EAE136D02C19BC92E32A7 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = "<group>"; }; 07C5F953E79602836E1C0E66794F7A68 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = "<group>"; }; - 07C897057324A69187AF5560B5B5EA65 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 07DA7436B67D3250B60725838F5FBD34 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = "<group>"; }; - 07EA54F24DE6336CA2D2B4FC5255ABB2 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = "<group>"; }; - 082538BE48CF6F5FB00C13256377797B /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = "<group>"; }; + 07DC53839E3BF5F28191DD0BA3F31A48 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = "<group>"; }; + 07EB509006AD0255ADE173C78DE5CB34 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = "<group>"; }; + 07EC667309D8613638DAC8246AD6FAFD /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = "<group>"; }; 0834F0341D9CEFA17C2604FD8D11623E /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = "<group>"; }; - 084326DB5172F7B4C114122AC4CD8E0D /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = "<group>"; }; - 084C851CE8777B564470F9186F0DEA0A /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = "<group>"; }; 0850F8DD2B3FD058769A432CC1156AD7 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = "<group>"; }; - 086C0B6D8BCAA062779CA9D8FF3C63EB /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = "<group>"; }; + 086D2E21CD2C375481D131006EE2FA13 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = "<group>"; }; 0877B7CC18A0B5BBDC61008D68D767BF /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = "<group>"; }; + 08794FC33FD652DF519C9411038FB5A3 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = "<group>"; }; 087C97C5E3BD5E3E1260D6BD7227A17D /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = "<group>"; }; - 08829BC9C202EA1752192651200FF24B /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = "<group>"; }; + 08993EFE6B43F419C92CB656C14C9F84 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 08ACE5ED8E4F4E120D549B4619FE61BA /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = "<group>"; }; + 08B854B9FB03F126D377C8BD3083158C /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = "<group>"; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 08E8ABF2AA68CCA32828468841E0E2C9 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 08F1F3E5061E92E19B7F12E323613901 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = "<group>"; }; 08F56AAB8A1F45A88DEF4D9DBE234CED /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = "<group>"; }; - 08FE08082A646B5291E0826CBC729CBA /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = "<group>"; }; 08FFFB8DCC4CA701C2E53003617B3D8D /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = "<group>"; }; - 09273A96B3ED43EC052D9B9A63186A4D /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 093C1F142FB1F8383A757053CAF1B48C /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = "<group>"; }; - 094E326AC4141C1616866FA844A2ABB9 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = "<group>"; }; 095997D9882CD208B80CB6D5419C5172 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = "<group>"; }; + 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = "<group>"; }; 09710EAB22C0612FDD4330603A259BED /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = "<group>"; }; 097D3E2988DF59797BFB5B084495142D /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = "<group>"; }; + 0981862D8B4B0A9BF6D227952C1B5AB8 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = "<group>"; }; 098EB243A3EC052B12C874589238C80D /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = "<group>"; }; - 099C5A1340A44D9F14576063642AE779 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 09A4A381355DC64EAB844B04A5BA6970 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = "<group>"; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; 09B718FA6415F3DC19B116A3F8AC7A80 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = "<group>"; }; + 09E1EB493AC7120B1A44A4A8DB7DB263 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = "<group>"; }; + 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = "<group>"; }; 09F1FD68918CD5F6B8A22695713E741D /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = "<group>"; }; 09F47523D4E6432D68674A050EBBF338 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = "<group>"; }; 09FBD593E74F1B8207D1D3986F9C57E7 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = "<group>"; }; + 0A0BD1EDF40A187E8200F57B14DACE0D /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = "<group>"; }; + 0A114E7E7641DE0E9E85B5BC6D7F7044 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = "<group>"; }; 0A2216873BA90E168C6F587B532F1C32 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = "<group>"; }; - 0A2BC50D7EEE7D5DFDAEA21A82CDDBFB /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = "<group>"; }; + 0A2744498D0149896FD5A91ED396F100 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 0A4919EF1073454B4888A169DB27DE56 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = "<group>"; }; - 0A55C32FF9E9C1A62EEB8C335B948100 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = "<group>"; }; 0A7B482B2EDA7BF7FCAF15DFB04DE80B /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = "<group>"; }; + 0A7ED7C867EFB1AADF601062F778482C /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = "<group>"; }; 0A8A380780648A9AA51D1CDE20D48218 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = "<group>"; }; - 0A8A7F71CEA3113495178C52D7AB8F9A /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = "<group>"; }; 0AA3C18BAC2940042EF61B66E4F41113 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = "<group>"; }; 0AAF057173CD16FD65A7D97790566850 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = "<group>"; }; - 0AB130C9164156FE7274E191816FBF3B /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = "<group>"; }; - 0AB3F97D5621B9EA82EDDDB3AF335077 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0AB7971155BCD8A7254F8A91313704EE /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = "<group>"; }; + 0ABC7ED6892A1D14E1B7C12C170D4345 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = "<group>"; }; 0AC825A8C701662BD2D24245FBA55E1B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = "<group>"; }; 0AD1D003B598514E16C0786487FABBB2 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = "<group>"; }; + 0AD54FCA63DCA7D0C67F6F026BD7A1C8 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = "<group>"; }; + 0AD76653381D66158768E50C092B7044 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = "<group>"; }; 0AF5331168A419623C9D015644797290 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = "<group>"; }; - 0B00B20AB994D8DF90BA02B6753B4568 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = "<group>"; }; + 0B0F7DAF876312D7B591AE13DEFED38F /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = "<group>"; }; 0B17E1EBB92628A410A70849308F5327 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = "<group>"; }; 0B2E05DDDA73CFF8D52ECFEAA5553C91 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ios/include/openssl/blowfish.h; sourceTree = "<group>"; }; - 0B3C67CBC936295F6A47DC85A4720A3B /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = "<group>"; }; 0B4837B8DBEAF4CB10666E81FD53885D /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = "<group>"; }; - 0B5890231D7452E53DE643BABF2A1703 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = "<group>"; }; 0B5B6CB35133A26728301B5DA4DA94CA /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = "<group>"; }; - 0B5CE42DD257F7CF548FA35A7A041F6B /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = "<group>"; }; - 0B7D80CC1FDF07D80A0C750EE3C70A73 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = "<group>"; }; + 0B83AF1D415F0617AB05BEE783FD1524 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = "<group>"; }; 0B982CB5D09778C5F6636849E66196CA /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = "<group>"; }; 0BCAA040F9FA9E6FFABB25A7E813998E /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = "<group>"; }; 0BCC1163A19EEB4E4104E9F1E3AB8B8F /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = "<group>"; }; - 0BDE6200BCC8CA9DA673AA00EABAB904 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = "<group>"; }; + 0BD6B475F506A117D93185B7968288B5 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = "<group>"; }; 0BE529DB2A0C5D64AD0F79B6CEE37A44 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = "<group>"; }; - 0BE6912B0D636F332F440521664BD442 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = "<group>"; }; - 0BECDB993277765FE62AE6DE2877481E /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = "<group>"; }; - 0BF0923B395BB82C667BCA5BC7DC5E21 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = "<group>"; }; + 0BEFE09AEC5742EBA25538E8C6678AB8 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = "<group>"; }; 0BF348AEB813B4920A2F3FCEB3BA6080 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = "<group>"; }; 0BF6E5EC72095214FB6546581FFEEE21 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = "<group>"; }; - 0C09CCE37497E3AFF29E39CDE5173F0F /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = "<group>"; }; 0C22917C00943A72650B1A5BFECAB205 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = "<group>"; }; - 0C28A2F188C6D7A57EA5CE8B364C67CA /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = "<group>"; }; 0C35EEE4B1FA28E5625E404638F05B55 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = "<group>"; }; - 0C52A92AE75468F558576E0077F7E11D /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = "<group>"; }; - 0C672F4FBFB383A097DDBA19A88F15DE /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = "<group>"; }; + 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = "<group>"; }; + 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = "<group>"; }; + 0C68CF456F99D500678CCA5E50593E0D /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = "<group>"; }; 0C70D2D45E99CFEEAFF2F49D250DC4B3 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = "<group>"; }; - 0C8E863EDC7883D4B84D3851895D0D76 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = "<group>"; }; + 0C821B113E261AE5237AE0BEC3E208B7 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = "<group>"; }; 0C9D0EB752620D220AF34E4887F7E6FC /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = "<group>"; }; + 0C9D1F46BBF12863547B9E44C7D331BD /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = "<group>"; }; 0C9FACF7BE8CABF1A8C5A956E9169D20 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = "<group>"; }; - 0CE1F9FE48F8DB49BD1C469ED796E6B3 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = "<group>"; }; + 0CA5DF24E24FDC22CD14E20AA0EDC11E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 0CA929BB715BCB547AF38F8F94645458 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = "<group>"; }; + 0CCA1E68DD17EC16118BF6A816B65986 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = "<group>"; }; + 0CE293A4C586EECE672A67C9E0434A64 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = "<group>"; }; + 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = "<group>"; }; + 0D17C12C1EAC46D6BAAC64DBECF00650 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 0D33A934B640D0010EFD4513CA46B01A /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = "<group>"; }; 0D3746F217CFFCA932F738BE27F5EDB9 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = "<group>"; }; 0D4641F587498E427490898CA0E10BAC /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = "<group>"; }; + 0D4C0D09B8BC735DD7F524E05248601A /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = "<group>"; }; 0D4E68F669C74E03B1E4A8807DD3C638 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; - 0D511881DEF6E8BE232DB99B4C55D462 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = "<group>"; }; - 0D701F5A644EF76C88AA85644359ECD4 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = "<group>"; }; + 0D610CC92CA12331CC2CE9B30968B59E /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = "<group>"; }; + 0D751A822A49D4F471406EE2D233255E /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = "<group>"; }; + 0DA3592506DCD6118EF12506F070EE5E /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = "<group>"; }; + 0DA5774B039E5920A5520A367E0DDF2F /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = "<group>"; }; 0DAC2F0D55F0D7EDFC1A71F1788BB63A /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = "<group>"; }; 0DACA332008F6AC6A637EFFB7C462A0C /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = "<group>"; }; 0DB084C6DEBA0DC96061D8A514AC4DBA /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = "<group>"; }; - 0DB54EA3A032E7EF454EF8CE2475647F /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = "<group>"; }; - 0DD8C4A06C5E44518B3A2593C0DA33E9 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = "<group>"; }; - 0E0309A5FFC71EA2F72127E3E0A4755C /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = "<group>"; }; + 0DCCBD85E6089FDD00DB6B0FC02A2A35 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = "<group>"; }; + 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = "<group>"; }; 0E082AC97CA13A0B9F95EABCDB5C2542 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = "<group>"; }; - 0E11C3FE3B6FEA42E2EB418AA942F4FF /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = "<group>"; }; + 0E0C1D43ADC74B4277BB727935011CD8 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = "<group>"; }; 0E3C201CBA9DD4D3768A730BE5C94681 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = "<group>"; }; + 0E46A58A12FC794BA1AE3A482A5DC6DC /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = "<group>"; }; + 0E67B37021122702D85563E203C2FA96 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = "<group>"; }; 0E701E05D9B792A11A62162DE7FBAB43 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = "<group>"; }; - 0E73A2B4648EFE290A7E7EBCC97C91F2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 0E9EB4975C32273C8AEBFDF1B620302B /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = "<group>"; }; 0EA407246DA23AF877A0AC11A59FCC6B /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = "<group>"; }; 0EA70478866168C127052F19BD9EDFD8 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = "<group>"; }; - 0EBA549B24B6B26CE6809AD5C97D0D7C /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = "<group>"; }; + 0EA859D080F5B72CD9E8BD9639211BF7 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = "<group>"; }; + 0ECCB6FAFF8614DB159F724F44861AAB /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = "<group>"; }; 0EF2FDC6DD223C088FBD4D0C90FB9486 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = "<group>"; }; - 0EF5794719C7B4624AA1D2197F92DF8D /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = "<group>"; }; + 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = "<group>"; }; + 0F137720240DA2F405C2B3E33C02EAB7 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = "<group>"; }; 0F13B7FAEC573229469545471760C164 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = "<group>"; }; + 0F18338E992B568C10D0F98489507DED /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0F2549B4094943DDD958A7883D04E16D /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = "<group>"; }; - 0F2B7C17FD11CCB4337CB031447D5287 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = "<group>"; }; 0F3552D4BB7A4C91B6ABB4CDF3A78488 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = "<group>"; }; - 0F367E454B11846A61FC33D4BA895A8B /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = "<group>"; }; - 0F3C02D59AC5F2F3B8275A9F2B77D462 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = "<group>"; }; - 0F41F2E73620722F9FE126D608E1D6ED /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = "<group>"; }; - 0F4A75DABC320B067232557DA63A14E9 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = "<group>"; }; - 0F538E8A4AEBF8C5386B7716F6F9998F /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = "<group>"; }; + 0F47718EF009AF92BE248AED9D69506D /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = "<group>"; }; 0F5BAA7D69E01CC8AA8D49B18B958B0E /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 0F7ED2CDCDB99984A84236467E8778B7 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = "<group>"; }; 0F809D0DCD60269E2E7050B1B4449D77 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = "<group>"; }; - 0FB8C39BB60620646E2FA7B10DF6E42C /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = "<group>"; }; - 0FE42D418A6D5C6D284417C3CC40FFA5 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = "<group>"; }; - 0FF95F0DD796C9317D6EEF4ED17B82F0 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = "<group>"; }; - 10044E674177DA989F1497E8EFC30FC0 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = "<group>"; }; - 1035F2DF56DC84A5588DB590E33A8B36 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = "<group>"; }; - 103741A2144090DF1A48E236551CEE6B /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = "<group>"; }; - 104CF4B92F232BBB09CCF7D38A500E48 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = "<group>"; }; + 0F9FE5C49D2E5C7EB4CF15D88966A005 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0FCD10A58261C38003864DF3394A45BE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 0FD8226FCC7309B2337EB58188BAFC55 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = "<group>"; }; + 0FD9D4DA6F7E2E53B3677395C1BA2F28 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = "<group>"; }; + 0FF0ADF5DC6D3FF308AECA808C0C7E30 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = "<group>"; }; + 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = "<group>"; }; + 1039BBF6BD28A96EC30DD7CB8F7FA870 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = "<group>"; }; + 10444C68A034B8B32F03D93EBBF935DF /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = "<group>"; }; + 104F2E03F055BC209F368334BCAFFD3A /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = "<group>"; }; 1050F1435196CED15B61398817AEC9B8 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = "<group>"; }; + 106537DDCF13EBC231A968E46FEADCC8 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = "<group>"; }; + 1068F3228D5C1F21249353FD5E724FEB /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = "<group>"; }; 106EA4220BA45CD3242A9D0BC7332C3C /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = "<group>"; }; + 107D451387B07A0C867AD34BC92323BC /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = "<group>"; }; 108F953B44DF9707CB37C224DD1239AB /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = "<group>"; }; - 109238363CEF0E9728FDA7003F4457F7 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = "<group>"; }; - 10948D14C4E7407ECEE6A3F05531E47B /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = "<group>"; }; - 109AC22229D7FE4FC59622872467FD09 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = "<group>"; }; 10AF9E815C4396263953D3EBC91A3EBB /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = "<group>"; }; 10ECBD724ABF1B2436022114B32A7B1C /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = "<group>"; }; 1102C734E9A28600BADDA0D9509FD931 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = "<group>"; }; - 110A2B745F49BAC59EE79316D115A6D6 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = "<group>"; }; 113EB030A8219A64AD3B0B9C25AA5B73 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = "<group>"; }; - 114720C62A8083FA6E1CAC4FDCB5AA47 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = "<group>"; }; 114DC13A91EB4955B9249B0A1DB723A9 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = "<group>"; }; 1158A11775C169614615E653BE1B25AB /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = "<group>"; }; - 115C472C4001AE49AA583871E2806DF6 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = "<group>"; }; - 1162C1C64BD3A09ED355FA5A7FF82675 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = "<group>"; }; 116447E7D8CF0CCE24E28ED4F12B9110 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = "<group>"; }; + 1168C19E7D2E04FB41C7C7B44D739771 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = "<group>"; }; 116C7CEB27CD7820875966685B7D8C81 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = "<group>"; }; - 117A0DB2224053B6BA37DF19F0CFFBBC /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = "<group>"; }; + 116FD789F72BCE8CECF811A67F7E8458 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = "<group>"; }; 11932AF3F442722C6FDCD514FC54133E /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = "<group>"; }; - 11B6A8DFCAF453C51D89CE86CB3AAC94 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = "<group>"; }; + 11B241AA9D04AEF43CDC2F805CE7DCE3 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = "<group>"; }; 11B73D281691D1D3BF67EC85499B788F /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = "<group>"; }; - 11E028B27968896CF90EA5A8183EC38E /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 11EAFCA84606DCBB044ACBFFA8B431CF /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = "<group>"; }; + 11CD4C8274BF810063EAE4979126E31F /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = "<group>"; }; + 11E31942837740BFD1F989749590B93B /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = "<group>"; }; 1202E3F998555BA59A10D4B421FA45DF /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = "<group>"; }; + 120A2F7AE95B07B1B111D98983BF4F39 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = "<group>"; }; 120C6FE790E1CAAAE33978DE80E762D2 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = "<group>"; }; 12179522A08FFAFDA91630E0E2B476CC /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = "<group>"; }; + 121C2910524BBEFA9563EB74C2921F8F /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = "<group>"; }; 12257C95C8415E77F77118EAD42C5283 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = "<group>"; }; - 1230732873EB5B79DA0BB896FAA32E99 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = "<group>"; }; - 125C498FB2BFE1A4DDEFD3D0C53E71D2 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = "<group>"; }; - 126042AC158442964596E9906F817DF5 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = "<group>"; }; + 12284038935A628DCA5F981E113F4927 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 123BCBAAC647F3A369933558170BD9F4 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = "<group>"; }; + 12465FEC11132425BF0FFA79B10C0558 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = "<group>"; }; + 12569BA1E5FD08B4ED65AE7842806DD3 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = "<group>"; }; + 125B7D56D814DA4086EBBB0FEF39A12C /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = "<group>"; }; 127CD1E1011106B2304548E9248FD62C /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = "<group>"; }; 129EF408AAB22BAA1FFC899CA2743286 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = "<group>"; }; 12A3E5D4C75F9DA66A2A72A97C053BF3 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = "<group>"; }; - 12C19293805EC77DC2BDFCAADCA85745 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = "<group>"; }; - 12C615B6E53E792D8EFA33542679BDCF /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = "<group>"; }; - 12D80FFB92D10F9784F71385DFC77486 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = "<group>"; }; - 12FA32DC2FFD7D3C5521D0A2AC95BC00 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = "<group>"; }; - 1303C8DF7AA10D9753D28197873DFE18 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = "<group>"; }; + 12DCA4210F595CEC6392C49D0448A1CB /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = "<group>"; }; + 12FE2ACF3C60F48E6F74E827FC5BDB82 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = "<group>"; }; + 13073D43FC4026FEFC9288215CA8B051 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = "<group>"; }; 1308592F65945CE9422EDDED884EF9B3 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = "<group>"; }; 130E85034A2A0DB5D9F092021F917922 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = "<group>"; }; 130FA934D6D11BFD2912B48CBBD9657A /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = "<group>"; }; 1311FD33BCC6D1D96DA1E1320127C8B1 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = "<group>"; }; - 132BB75E02D031FB28B8179A0D011290 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = "<group>"; }; + 1326137DEEA71E097D28136A3A4EC4A3 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = "<group>"; }; 133ADC2FB2B622119B3F0BCE1E622E17 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = "<group>"; }; - 13423E1640A4656E33D817D2AD0083BB /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = "<group>"; }; - 1368C23F0865C4AF480A3E7B1C7A33C6 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = "<group>"; }; 137BE22EC1DA14334E8037D1A9899318 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = "<group>"; }; + 13839A8281BCFDFAEAECA7819DD04C4D /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = "<group>"; }; 139202B54DD94BAC1B38C9EB2380E47B /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = "<group>"; }; + 139C71A179C549AB4501ED4EBB6C2E10 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = "<group>"; }; + 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = "<group>"; }; 13A3F70480AE9C876EE9D620059A8E89 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = "<group>"; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; 13D1EFB411756EBD8F39F077B8FDE62A /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = "<group>"; }; 13EF0915712C8F78394138D0B6A2A050 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = "<group>"; }; + 140F3C7FADB9625463231A741F09EDDA /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = "<group>"; }; + 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = "<group>"; }; + 1435A5F30752CD73BD4A3E3394EB0EFF /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = "<group>"; }; 14497A25CB2E5E21FE9A71EA9FCAEE44 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = "<group>"; }; + 144F317E09F4B5D8DFB7D8D6606A1DB8 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = "<group>"; }; + 1451F1374D41FEC6691A399289ED3015 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = "<group>"; }; 1455C4759F082E626BB6836F244E2C96 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = "<group>"; }; - 146F95318E28047948E0F80CD3F6FCE2 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = "<group>"; }; - 147C723753E754518402BEB9ED7DC51E /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = "<group>"; }; + 145A7D59176345B6F215E0E11D6B17F8 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = "<group>"; }; + 147C05DCAC196FCD8EC2E6CE26B3102E /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = "<group>"; }; 14825CCEF2FD93682454B24834479E28 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = "<group>"; }; - 1484965F47DFCFA03874C233A00E5AAF /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = "<group>"; }; 1486467413A9889DB23A6D91579D0F47 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = "<group>"; }; 1492AF4560D763A11F95C42DB674A29E /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = "<group>"; }; + 149CCEB54C1BE4CF3A0ABD79358751EF /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = "<group>"; }; 14C26FAC99C1D2CC6FE055A75273A872 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = "<group>"; }; 14C703D5C07CC19F15EE6FAE4467C349 /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = "<group>"; }; - 14DF957F3F59BBE5E5147FD3AECAE7C6 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = "<group>"; }; + 14CC47269B6761A5EA09A8775959799D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = "<group>"; }; 14E41D64006AC957B237BD217C6506ED /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = "<group>"; }; 14E53155D203E56599A9D97F4A29FF9B /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = "<group>"; }; - 150D9E0A5E644499F1F1B704A0B23E95 /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = "<group>"; }; 150FBEA326FCD79CA0FD0D0D0723C09C /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = "<group>"; }; - 1523F18E0B2366D278772A51A931C03F /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = "<group>"; }; - 156372D4A148699B71680BBE13F43503 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = "<group>"; }; + 153B693BA836AD28207153834B3D3DC0 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = "<group>"; }; 1568F3D2E05D423FDC41CFBDA6C91D33 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = "<group>"; }; + 1570FACE560EB764A1AFB2E1F37E5A60 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 159820A73CBF9AFAA0320A36EFA5E349 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = "<group>"; }; - 15A42CBD5BC645142890154390C26E63 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = "<group>"; }; - 15B621E83A9F251C32699659261E1D7D /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = "<group>"; }; + 15AF66B81DCB43247B4AF0E6E1F095FF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 15C0951EF4FA4F461B307CF6F26BFAB6 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = "<group>"; }; 15FB8184718A34EB222FD57DB483C14D /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = "<group>"; }; - 1615925E1FFEF2FE6497798AA5B55187 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = "<group>"; }; - 163428F7C1130AD4199A56D14F59E9FC /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = "<group>"; }; - 1668B746F551A9C3C748163A58E17CB6 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = "<group>"; }; - 1678C17C726C2BE1EF54A04E4A70DCB5 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = "<group>"; }; + 1608E844F3A2E64140ADD9FD31C15458 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = "<group>"; }; + 1641694B922617A51FF834292C8E44B3 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = "<group>"; }; + 1672F4FBDCDB899F8282004CD26D8164 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = "<group>"; }; + 167D5828800E44CC2451087243F40F39 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = "<group>"; }; 169A97E652ECB8F659D797AFFF6BC940 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = "<group>"; }; + 169B70DFB43463F4A423B7467E996A60 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = "<group>"; }; 169CF9C407F24C79419DCA9222CB9318 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = "<group>"; }; + 16BC366877988251F04BB8A901CA5FCE /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = "<group>"; }; 16BCEA20D9679960A873A33DAFFF74DA /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = "<group>"; }; 16BF1CF862DC5ECF798A50360C0EE160 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = "<group>"; }; - 16C1ABC56AA99C63DED52C9F73ED634A /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = "<group>"; }; - 16C5A63180ADEA316FC29A4B92625EF4 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = "<group>"; }; - 16E558C31E2809B0CADB15F2A02EAB1D /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = "<group>"; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 16FDCAAE6F02F3ABD1B96D583CE5999B /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 16F0331910FDB15B21D137B5FFB94526 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = "<group>"; }; 172F043EAC6C52FB5E4FEFBB8A7414BF /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = "<group>"; }; - 174FDE564279609478619CA73EB8085C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 175B5B65554B0DB154EFC8DBF39DBA6B /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = "<group>"; }; 175BC051753C8BD307256C20A8258DDA /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = "<group>"; }; + 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = "<group>"; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; 1795A7DF13A680DD10B81AF83A303B58 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = "<group>"; }; + 17B51F1B918F1A8CC74355FA300050C1 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = "<group>"; }; + 17C7CB6B1D4A3E3E2C7EF4A816EC877A /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = "<group>"; }; + 17D8D67E8E01B607E176F601FFC20E09 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = "<group>"; }; 17D9E3C037E4F36B08BDF14F3C7782AB /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = "<group>"; }; - 17E134AE584200180363135F28A52B21 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = "<group>"; }; - 18077DE12EEB948837CCA17BAEE0D115 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = "<group>"; }; + 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = "<group>"; }; 180BB68A3404C4AABAC8DB91377B1B66 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = "<group>"; }; + 180E90B99FD16FD9D240CBA38531C2E9 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = "<group>"; }; + 1815B27D3154618D4A51C2618D82DAB7 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = "<group>"; }; 18230B4DBA48A8F3656B5C7AC20A3B75 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = "<group>"; }; 183081D226C94A7516014E21FA983C5F /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = "<group>"; }; - 1842A48AF0D9C5453962C98B9419C9D1 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = "<group>"; }; - 1847C6B2B3476A22DA71286C7F85C66A /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = "<group>"; }; - 184FF60F05BF3303542903463848FD23 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = "<group>"; }; + 1842644006872371281A046E2603365F /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = "<group>"; }; + 1847A9120986DF8A84BD996E25133F73 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = "<group>"; }; + 184BA109B3E3ED82B00E700254AF3AD7 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = "<group>"; }; 1859615519D2E48F8924D355559455A6 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = "<group>"; }; + 18599074AEE17E3DE57927E34123B8E3 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = "<group>"; }; 185B2034CAF6E1EE0931F67A5783DDA9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = "<group>"; }; - 1865BEC60A3B650FC087F92119220D60 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 1894C6BB2FA24DEE867B6C235CA2F8B9 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = "<group>"; }; - 18A99514320870DC97F9BB77ED6044E0 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = "<group>"; }; - 18BBCA01DF008B8037000EFF316ACA32 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = "<group>"; }; + 18B25B2B339EA2F0D269DA97D6979384 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = "<group>"; }; + 18BD91E28252A0B76ED45F7725EF8C3F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 18C92F5067A0D9C793BDED8B6AF2293E /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = "<group>"; }; - 18D0CB006E723541B7F52759180B45D4 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = "<group>"; }; - 18F69EF9D965ECF626511E6B06373FDF /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = "<group>"; }; 190F437DFDFBAE254A394990FFA10E7E /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = "<group>"; }; + 191CEB22E13262B0BFBCBB1ADF351C22 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = "<group>"; }; 191E0AB4AB70334DAAFC00A760F3A31F /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = "<group>"; }; 19348691A9A945AE17613DC4F04A5C7A /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = "<group>"; }; - 193E6AC2D9D4EFA266583DC8E9166F99 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = "<group>"; }; - 1941A5165CBDA9E4A172681259DCD605 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = "<group>"; }; - 1946593FF1D9E84793A440A468B2A8DD /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = "<group>"; }; 194B36E18F29E0A2E52DB40AB782A1E9 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = "<group>"; }; 19510654C411480A9C2D51D81EC73B9A /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = "<group>"; }; - 1974D8C56D7F0E626306A9601ABC0444 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = "<group>"; }; - 19A0371EDA218B45309ECCF1B5BC2AB4 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = "<group>"; }; 19AAFC294F13245488AE17A972FE38A4 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = "<group>"; }; 19ADD9F952E059D819C83F0167A49E7C /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = "<group>"; }; - 19BCFE0872A1AE3E60EB9F2929A0CB8D /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = "<group>"; }; + 19C43E2021D34953E63B6DF7BD3DCB2B /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = "<group>"; }; + 19CB053CF23AFCD3BA264178A105A854 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = "<group>"; }; 1A0965FFAA87384FB3EFC7139043049D /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = "<group>"; }; 1A0A850F9CE40FFD2FE85F81A1CFA6A9 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = "<group>"; }; - 1A2C80C7FEF0CA0511A3B8DC9B6DCFE9 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = "<group>"; }; - 1A6DCEFE83E5A78717DDDA2DE42610E3 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = "<group>"; }; + 1A3C56EA8B1A865CCBEBA9138B63E16E /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = "<group>"; }; + 1A4BF455D2EB8C3B0ED975E7D28C952D /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = "<group>"; }; + 1A54C0ABD6B40C4EB6FC64D55B96F6F9 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = "<group>"; }; + 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = "<group>"; }; + 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = "<group>"; }; + 1A70291ECEF7C38CC3D4003CC6E27B9B /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = "<group>"; }; 1A734FB82B4D1E2AC1CA9C34F994604C /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = "<group>"; }; 1A91653C144A67CF27BF3BD101E38506 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = "<group>"; }; + 1A944B362F74B5E301A83ECDA64AEE10 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = "<group>"; }; + 1A96DC001042A58CFA27387096C2A9D6 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = "<group>"; }; + 1AC3A335A71373D11D159DC48AD1B476 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = "<group>"; }; 1ADC689FA4AE6037B5D50C5C5F4919F3 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = "<group>"; }; 1AF0557324DCAE519580AEC76A8CC4D4 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = "<group>"; }; - 1AFDCF36AF73A36A5A52BEFCDFCB827B /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = "<group>"; }; 1B0C860DA24D708F454DCC5064D32FEE /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = "<group>"; }; 1B0E5A9598A5732F504D41A4D026BD6E /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = "<group>"; }; - 1B163504AB53A51F06A97ED72B62B2B8 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = "<group>"; }; + 1B215F5106A34C76BD7AA30B94C89F28 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = "<group>"; }; 1B3A36A060481037E0B081A183379270 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = "<group>"; }; 1B414757DCBFA6FA63CB5030BFDAE56C /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = "<group>"; }; + 1B54297A29176503CA4448A610338DFF /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = "<group>"; }; 1B59FE6153A8CC3B19F7CA6B444C1A15 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = "<group>"; }; - 1B6067F6B5319589A4F14905A7376E43 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = "<group>"; }; 1B7A6D080BE05253E70FEBAB8FFECDED /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = "<group>"; }; - 1B7DA6E29F3E1B2684FFD09CCDDAF7D0 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = "<group>"; }; - 1BA08779651371D59B6301A376C146D7 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = "<group>"; }; - 1BA5CB87163FBF3709D07434FE50E623 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = "<group>"; }; - 1BBF42452DD7D486BD4061A92DE81C7D /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = "<group>"; }; - 1BC92FF1C34690BB9B42280B3AF009A7 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = "<group>"; }; + 1BA71CFB5BE743092D975B4EF33ABE86 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = "<group>"; }; 1BD82A494878B6A4248FE55C00040CEF /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = "<group>"; }; 1BD869D01F8A7BB12B795985CBE9A604 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = "<group>"; }; 1BE4456FEB0E18D388A28EA1BE658D11 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = "<group>"; }; 1BE71468687D52CA680B2234E364B78B /* srp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ios/include/openssl/srp.h; sourceTree = "<group>"; }; 1BF34DC4EA797B9793EB476CE82E4909 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = "<group>"; }; 1BF4FA651BEEAAF5ED8F95C925D0291C /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = "<group>"; }; - 1C22128EA145E17450FCDF65A15CD974 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = "<group>"; }; + 1BFEA28EBCFB4C01668FFB09B9DEBDCF /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = "<group>"; }; 1C225153782F80BD27563133AD2D2C29 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = "<group>"; }; - 1C3669FC0193628A02BC16ADE587B606 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = "<group>"; }; - 1C450CDA1AA79A853FEF8AEDEDFB2C6B /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = "<group>"; }; 1C493BCB0409DB9EDD6467CACD5605EB /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = "<group>"; }; - 1C494FE127DE6F7613B8BA6E29CC9087 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = "<group>"; }; 1C6444B470DA21473DBF1F1D8A6F8759 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = "<group>"; }; - 1C650C82285956D4C10DE146F9EACCF7 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = "<group>"; }; - 1C69E3FF7D00E712ADC55D418F69C916 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = "<group>"; }; - 1CAC75AB083C6995FD42632231A1D941 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = "<group>"; }; - 1CD3BD95CBEE9A68C6902C24B54B5F36 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = "<group>"; }; + 1C6DF07F4BCAEE95AE18C1A6FF7A1E16 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C9FCF945444DD05ECD9D1A6D9CDF2D2 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = "<group>"; }; 1CD7F1C6AE3C3CDA65BF3322C9535690 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = "<group>"; }; 1CDD2B97131CA882E213597CBDCA850E /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = "<group>"; }; - 1CEBE948416E2B99DAFAFD2D9E3FA2DB /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1CFA32E7F3C5F31B35D111D6C612DA04 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = "<group>"; }; + 1D058CA8909B39B41CBDE50B374B7BEE /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = "<group>"; }; 1D1EDFB9232BCC84D44D1B60E1BFCC08 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = "<group>"; }; - 1D2D91B904F16FA2D28E506572568EE7 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = "<group>"; }; - 1D39AA2C6CCD4EA4CF03EE13E54F2838 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = "<group>"; }; 1D4EFD036EC6654875D4D04D71657858 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = "<group>"; }; + 1D50A0B9839ED6D059771A56CDAC5160 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = "<group>"; }; 1D6402C81734852C6895A864A7CA21C5 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = "<group>"; }; - 1D7736C3A612CA7E71D18CBA61252B5B /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = "<group>"; }; + 1D90EADE13FE1E34BD47BE0C21C5EB80 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = "<group>"; }; 1D9AEDF7296D9AB36C796BB4D1DF4150 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = "<group>"; }; 1DA23D31E9D5059B476C911DCAC4A323 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = "<group>"; }; - 1DA3DAC8AE5991BD58A0D8BE8DC6237A /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = "<group>"; }; 1DC94DF939D00DCC47B1425D23467FA8 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = "<group>"; }; - 1E14F4C3F2A2C314AC444FDF3BD90749 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = "<group>"; }; + 1DCB116A084B6610053249AAB840B959 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = "<group>"; }; + 1DE315D70E5C21E0A0D947E0AF34567A /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = "<group>"; }; 1E2611E2EA15BC9BB7556D44D5C932A8 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = "<group>"; }; 1E27F9AE20DF152DC7F768A46F5E3A16 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = "<group>"; }; 1E4D2EAFA010A26A974FC40FEF1E3EA9 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = "<group>"; }; @@ -6333,281 +6407,297 @@ 1E62C69369E251ACD8E2B0D16898898E /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = "<group>"; }; 1E6866778088727F4DD526D4BAE0C00C /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = "<group>"; }; 1E789D47D086753F372989959FF35FC2 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = "<group>"; }; - 1E942D42A0AFC37106633395F03996A4 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = "<group>"; }; + 1E81EC930DD4B3E8A08B14D713C62A96 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = "<group>"; }; + 1E9181469A87B74FBE318400C549AAFA /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = "<group>"; }; 1EA2CCABD3A90686CC86E119016E92F0 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = "<group>"; }; - 1EBEC90FAEC6FCB04E4466E74D48C5F4 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = "<group>"; }; - 1EDCA54E81D9ACA115E8378C776B89B3 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = "<group>"; }; + 1EAA8503571E0E242647CBE65A879EB2 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1EACE5B4C9E08B4DDD8549B2C025DC9D /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = "<group>"; }; + 1EAD16F1C76B70E914D9B8ED5A9E49AF /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = "<group>"; }; + 1EEE0770D07DC00B82039B5A2F97E499 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1F0101342BF4DC87E70E39AC3F2C37C8 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = "<group>"; }; - 1F25480701B5E717C3AF3FE0D21FA4AC /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = "<group>"; }; - 1F36B529E6062EAD987C661D1F6E7DF4 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = "<group>"; }; - 1F60F10980AAC342007E29131CC884E6 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = "<group>"; }; + 1F2D8B1A106F59DD53D8F961BDA2346D /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = "<group>"; }; + 1F65ADC86C3EEA501595787CC5B00FF0 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = "<group>"; }; 1F676EF261CAEC55075292BF38B330E3 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = "<group>"; }; - 1F69B93B80594B6B0FA28AB7DB1E4D97 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 1F6B4AA6FF573E550B43BAD38ADCB747 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = "<group>"; }; - 1F7E8C7767E4DCA4EDDAF759C14E8C7B /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = "<group>"; }; 1F86FED6A4F58E1E8D6AE7AE417A1718 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = "<group>"; }; - 1FAD7E276493ADE0EA07E3BD18FA976F /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = "<group>"; }; + 1FB7ECFA1E2EB82E596204EF9FF6C56B /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = "<group>"; }; 1FB9836A0870E8AED5574E9DEB215076 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = "<group>"; }; + 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = "<group>"; }; + 1FFB7D705B4A5244B8A90E9D3A4A6115 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = "<group>"; }; + 200A3530239A107CD98D893C9A4DAA61 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = "<group>"; }; + 20110542FD849A0ED0F1A1345A97FFAD /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = "<group>"; }; 2013D693B860F2005C84896FB128353C /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = "<group>"; }; + 201506DCFFE14B340C726A0F0563D72C /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = "<group>"; }; + 20186ADFF4E69C5D1FC63266686DEC52 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 201E31C2C549AC2848CC0559FB4F8371 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = "<group>"; }; 201EFAC398DA47C4E519027C9ED948D8 /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = "<group>"; }; - 2025F903A0F5D0237324B244B18EE916 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = "<group>"; }; + 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = "<group>"; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 203D3F75974FF1B69382C71BF5360C36 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = "<group>"; }; - 206D58BA534E12AA0AE510AE364945E3 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = "<group>"; }; + 205328114E4BF15CC8CF7906A5B8671D /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = "<group>"; }; 207190979E1C3EC1E0DA1D3D40E86F17 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = "<group>"; }; - 20944B96277506C92AD6C4D908692FA5 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = "<group>"; }; - 20A589512E058D378E9A880B6CBFD571 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = "<group>"; }; + 207A93E311A2B2567CB197FE30D9BFD6 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = "<group>"; }; + 20880348C7D369561B78EA32911E79CC /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 209773EB2859EE02FAA4C3152B2861E7 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 209951A4C6E443A5A3BA0CE4DAB14DEF /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = "<group>"; }; 20B345804667E1356630DDD7D0F75706 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = "<group>"; }; - 20C298BEB48D13AB7E5E3913EFC492A7 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = "<group>"; }; 20D84784FEB9E892845F083EA8451F7B /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = src/evhttp.h; sourceTree = "<group>"; }; 20E4377AB83B86A78E53C33FBE57B109 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = "<group>"; }; 20EC8E8F8B257145DBAEFE598A889D3C /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = "<group>"; }; - 20ED547FE4F223A111167318F82A21AC /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = "<group>"; }; 20F40B1861D13D01526C617DBCA79546 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = "<group>"; }; - 2102EFE53A7C0C91FA921F01113D4E9F /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = "<group>"; }; - 21319F0AFA59E134BCC424856DB5D5A6 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = "<group>"; }; - 21376D6CBC9B9D2086785C44E747384D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 212466682BAE7E9458E3FDD6DEEDE465 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = "<group>"; }; + 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = "<group>"; }; + 214943770AA62639A6B229CCD7B6B50D /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = "<group>"; }; 2149CA39B150BD8657AE5F8ADF6B95F2 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = "<group>"; }; 214A517403EFC2E68CBE2E2426122C2C /* Flipper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.xcconfig; sourceTree = "<group>"; }; 215C261D87D5D65CAC10CBA91012E7E4 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = "<group>"; }; 216CF2691BAD265246BFA60A93ED9D42 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 217981D4C57B400D196ACBE2AE4F4F7A /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = "<group>"; }; + 2185D5433F48B8B084131511CFF6F88A /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = "<group>"; }; + 21885A4ADAD17766C17F964FF29C82FE /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = "<group>"; }; 218B28488234367B1A4CBAA2AEE25A54 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = "<group>"; }; 218C9C4CC995AE9EBF1ECF84FEFEA9EA /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = "<group>"; }; - 219D15A24717D200218759B277C58214 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = "<group>"; }; + 21AFCC848706AC146667C33200C1CD2C /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = "<group>"; }; 21C464AB02F18AABD4F0C37CB48ACB27 /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = "<group>"; }; - 21C946A2F7C5F007344256C733EB92F4 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 21C8C861B96FF98541E71324A1572405 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = "<group>"; }; + 21FC3F7AD7A415BCEC9E446692D850B0 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = "<group>"; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; 220F92F77A59A58888FDA1B79641A324 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = "<group>"; }; + 2228D771F5EFF55AA041447138D04359 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = "<group>"; }; 222DDC2B4FFCB6970555879212622815 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = "<group>"; }; - 22307CBA9097E8A629DB6AEDEC5F0C94 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = "<group>"; }; - 224DC4BC11BA41A51020ECB6E6FD820F /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = "<group>"; }; 224E8D43D381D0811A55497FFB86EF3C /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = "<group>"; }; - 226E7D30DAB7CFB6A19A218FBECECD21 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = "<group>"; }; + 2256E6BC3F5D843D3102CE2D02C1C321 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = "<group>"; }; 226F9D0C0D2F82062B4EBF5A763A916E /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = "<group>"; }; - 22703DFA8D26FD60D1C756C16D301C94 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = "<group>"; }; - 2282B9C099E923015053646C706DFEB7 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = "<group>"; }; + 228CEFF2E2C187172950B2CE3A62B9A8 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = "<group>"; }; + 2290F20C2B8587B16AAAA9195860246E /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = "<group>"; }; 22AEFCED6B75662F6CD5BDDEE99FDDF9 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = "<group>"; }; - 22B21E6AB65C8B7873FEC458AC2DE69C /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = "<group>"; }; - 22D18AEB5846C5B54F7E0800E98526FF /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = "<group>"; }; 22D4DF2E82D37065989833E6A83E8EEE /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = "<group>"; }; + 22F87E7247324887C6502EDA25DED060 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = "<group>"; }; + 22F8EA0880333E9DA3ED04ABBA625281 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = "<group>"; }; + 22F9465904A9EF8D7F027216ADBAD985 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = "<group>"; }; 22FCCEAEBB965818279B78F98A9FAB7A /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = "<group>"; }; - 230529220D67496D3FE2C6F935DA5DF5 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = "<group>"; }; + 23210B88C177CF8F2F8AB6FD1FF0BD89 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2347307F0AE2F59567C970617E229854 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = "<group>"; }; + 234D7174B898D7155E4CB08F88C5F96F /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = "<group>"; }; 235F0F5C7BFD7081642DC8ABF5028694 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = "<group>"; }; 2367D19C603A3B08B7440895E32D82C6 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = "<group>"; }; 2369BE8BA480523C31349754A50AC8B3 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = "<group>"; }; 23798023D9032C3422CF7ED2CD4868BD /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = "<group>"; }; - 23979EA6379079ED391BF8D1BDAFDEA5 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = "<group>"; }; - 23ACE1E4D86A9BF4A43FB04E8C62EE20 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = "<group>"; }; - 23BB6B718434B869AA1574BDD1817223 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = "<group>"; }; + 237F3148163949A0F39743C8DE76F8ED /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = "<group>"; }; + 2395C55DF2741069950E865FC9E46A8F /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = "<group>"; }; + 23ADA4CFA5E72A90563F77FFD7F8D2CE /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = "<group>"; }; 23BE60BE79A13A031B7B515290AF3DEB /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = "<group>"; }; 23BF276F1AE4E94777C66FAFB545C31A /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = "<group>"; }; 23C3C5F08BD13409D8FDE9FE4D1CC598 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = "<group>"; }; - 23DAC1E3C5C972983376E3AECD1A9444 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = "<group>"; }; + 23E8E6412A8B80FB18F58A48DCB7C15C /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = "<group>"; }; 23EDBE5923411A3DB974564E52ED078A /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = "<group>"; }; 23FFB8AAC78F63DE6D89521A6E71CF10 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = "<group>"; }; - 2423EC95E2A058DF8BD5D25EF832F863 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; 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; }; - 2433ED05E10706705FBE91CF4448814D /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = "<group>"; }; + 2428F07E26FB454DF0A967A4F6AE3FA0 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = "<group>"; }; + 242E3459A63C4A83BE36384D867E7011 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 245B33E1F4D089A1FF002688512F44F6 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = "<group>"; }; 2465EEC076DAD80C81BE4185445B2A9D /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = "<group>"; }; 2470637122C75BBA356F1484669B3A80 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = "<group>"; }; - 248C390820FCFC0AD4DC2D486FBF2E6B /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = "<group>"; }; + 247B221CDE93B0F8AF6F2E1DE91C2178 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = "<group>"; }; + 248119582169AE2E14B8DB9AC79E8664 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = "<group>"; }; 24A71B5F7EF5A6B61FDF7263F39918B6 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = "<group>"; }; - 24B0299006628F4A75C33025C3F82674 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 24E56B1C171744B6C095AD9171D395C4 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = "<group>"; }; - 2546AFE3D6A648E1D8534105F0BA411C /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = "<group>"; }; + 24C36A97CAC32C557FFA180623410217 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = "<group>"; }; + 24EFAE732626F70AF40D14252040F976 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2536DDA97AD131C68C0518E3B194F4BC /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = "<group>"; }; + 253DA86CD9850B20CA326647CF689F7E /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = "<group>"; }; + 25515E093BB5827043AB4142E1B445A0 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = "<group>"; }; 2570B45F50BCBB7DCDAE727C311DDD99 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = "<group>"; }; + 257204B30240739B7940D1A0D164DF58 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = "<group>"; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 25870310690272D6D92BFBD97E5A2BC8 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = "<group>"; }; 25898516D1E2F14B8A40C4C1C657B8BD /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = "<group>"; }; + 258D5FDD1098DA394D695543A5EC6D96 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = "<group>"; }; 259032220E882F1A3F9C8364086DAF94 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = "<group>"; }; + 2598E2C79750DFB023DA23A9AFB1C983 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = "<group>"; }; 259BBB31FEC3712023900184D0A6BC38 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = "<group>"; }; 25A2EA5C585C00FFBCD44CB1F4AC7891 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 25A4521AEDF5DB7E2947E852A83F7979 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = "<group>"; }; - 25AA79157C4CDF8239CC3B7D64E6E39B /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = "<group>"; }; + 25A6614C17B736AC115629DC8B42E299 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = "<group>"; }; 25C6B32E86597D164E92D87CF1F9DBBC /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = "<group>"; }; 25CF3561507F48600D3F453131A2C062 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = "<group>"; }; + 25CF7B2E403EAF3907627D3B8AC8CA0A /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = "<group>"; }; + 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = "<group>"; }; 25D52BE28A98C19C5268488B71CD037E /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = "<group>"; }; - 25E18881F29CD4C1AEA02BD47E5CA7C0 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = "<group>"; }; + 25DC3494FB12543357BB8575BAAE65AA /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = "<group>"; }; 25FC6D35ADBA36B3A2058A46B71ED99F /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = "<group>"; }; 260818DEDE2BCFEDCEAF97E551C02FB0 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = "<group>"; }; - 260B98901DB3236D44D2001FFD6C7550 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = "<group>"; }; - 260DB9FC71031205F578DBD5E9F2FACB /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = "<group>"; }; - 26347F9EA70B7827CA27CB21148817BA /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = "<group>"; }; + 2631ADD27366017C1CF5E6C4B7E68F6F /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = "<group>"; }; 26355BDA8ACAED4B5B52CE2D7896BCE9 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = "<group>"; }; - 26468D7FEAB555E9EB117944B5F283BA /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = "<group>"; }; - 264FFAEEF4A846297922FCFD162C5E8A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 264B852CD3B4070CAAE523CA5FFBEC83 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = "<group>"; }; 26587EC6A915959D983534FD3CECF9E5 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = "<group>"; }; 2681E009AC3FC0C49FBB8399EF75B297 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = "<group>"; }; - 268669962E4E6898FE9E5F2C0D61A886 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = "<group>"; }; - 2686F76D2F4EEDD3FBF450F8FE6B69BD /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2692F96A70C996939FCF0292FF468288 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = "<group>"; }; + 2684476A26F9AA36378CCD73BB417EC2 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = "<group>"; }; + 268E537109136434EE2FF5DFF465541C /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = "<group>"; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 26BFB0467BB9E53213E8BCEDE7E73CD1 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = "<group>"; }; 26E892040FE11059CCF8A12CEA7F3B3E /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = "<group>"; }; - 26EDBBF1C83F104184FB5A4306FEB25B /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = "<group>"; }; + 26F21C4F043E602684FCF1300BDFC8F7 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = "<group>"; }; + 26F445F6D03A3A82E37268A22BAE1C95 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = "<group>"; }; + 26FA8683647426F62DBA9EF6375C2573 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = "<group>"; }; 270D70A64C3266A193849A260BD97F8B /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = "<group>"; }; - 274F250FE65F56868C40E5E70B546957 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = "<group>"; }; - 27597EF3FEFC3AC072E27C9F5F3756D1 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = "<group>"; }; + 274F0C5E12F8002678AC0075BEC38942 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = "<group>"; }; + 27500E1C3EC9295178F620CC41A73CA3 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = "<group>"; }; + 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = "<group>"; }; 2761477FB5731BF97BEA495423F22DA4 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = "<group>"; }; + 2767680CE41ED19D766E69468F280AFD /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = "<group>"; }; 276A65F3FD717086395DB7D24A64E833 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = "<group>"; }; 278D2204B731B6483DAB6E05F60ABE15 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = "<group>"; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 27C4185FF117BB68E954C769B2CD4FB8 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = "<group>"; }; + 2795DA0AB50B806E3127BDEB66A5A180 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = "<group>"; }; + 27B47193B9A5F70C9FC551D403944866 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = "<group>"; }; + 27CE5F38E7E2C21F4A1C2ADC04919A91 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = "<group>"; }; + 27CF5439AFE8FA90355B9679CB21494B /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = "<group>"; }; 27DF4FFC237F06C5693622AA55FF8069 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = "<group>"; }; 27FB570FDC9BAD136561E512D148BD88 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = "<group>"; }; 280D09B7AD881B183B9C2BF25975FBF6 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = "<group>"; }; 2820A02A351356A0FFD7017542CFF65A /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = "<group>"; }; - 2834338D61EB1A76801CD4768032511C /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = "<group>"; }; - 284703F4AE62E032976179B75B48AB6A /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = "<group>"; }; - 28506A3EC5990915B6009CD4332BA1A7 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = "<group>"; }; - 285EB98A82041BC3FDC0B6C01B431A79 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = "<group>"; }; - 288B2FD89C645557E49F695B96129A2C /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = "<group>"; }; - 289AE4B553F18EA71E4E9D558239950C /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = "<group>"; }; + 286EDA02ED5D09F9992ABE65ABD78CA8 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = "<group>"; }; 289EE0C9ACCBE6F768388F258B8FFFA0 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = "<group>"; }; - 28CFF1631686533CBDAC4F58170D6326 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = "<group>"; }; 28F4BD11D608B29BFD0B2EA33C846AEA /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = "<group>"; }; 291D6C2C49433692B9FE34BC24939C2B /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = "<group>"; }; 2950B3C674F730AC60BB3286C66128E2 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = "<group>"; }; - 2963D7695879E13F81FD71BE68242A99 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = "<group>"; }; - 29712B2787A0895DF45ABF7303567E67 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = "<group>"; }; 2983C8167A247EF469501A4EBFBE4D7C /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = "<group>"; }; - 29A25EAD683E0A6041E89DADC7DE240A /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = "<group>"; }; - 29A7884B00029944AC2B47C05C19C558 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = "<group>"; }; 29B090899F53FC663285262C68375363 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = "<group>"; }; 29B0B355A6EF8ED64F63AFA79704D980 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = "<group>"; }; + 29B194002894F596571B50ECA498E7A4 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = "<group>"; }; 29B35AFC1D40CA8D7FC1A6D8123E238F /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = "<group>"; }; - 29C24C17132AC96C2E62EE137999E4C3 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = "<group>"; }; - 29CF8ED071C75882C35B55CDD7CC77E7 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = "<group>"; }; - 29D13108789C0ED5A0E97E864F8C8D05 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = "<group>"; }; + 29C61B48928ACB47767C42DC8802C61C /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = "<group>"; }; 29E37543C5ADBF976E44895AD6B574A2 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = "<group>"; }; 29E47FEDD187A358688BEA85EDFBB3BC /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = "<group>"; }; + 29FBA07AD4FFC50AD572B8481FEE71B1 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = "<group>"; }; 2A016E99AF04E27264203E00A4B009EC /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = "<group>"; }; - 2A19CCD10A9ECB726B21E9055C91C72D /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = "<group>"; }; + 2A0F368092D9D7E5A6F338E6BFE5660E /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = "<group>"; }; + 2A174FCBA44E8253E94EF53F873F0FA6 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = "<group>"; }; 2A284E5C8ED6619014004F9F23BADEB1 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = "<group>"; }; 2A2F25028AF5BC0BEFB17EC66F786A67 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = "<group>"; }; 2A3DB6A871C64B1CF548EAF68DBD8C43 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = "<group>"; }; + 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = "<group>"; }; 2A460CC099BBFF7CE881C10D1CE7711D /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = "<group>"; }; 2A4B8B5C2E23AD3CA3584BC627836DDD /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = "<group>"; }; - 2A5F851DD103B3122A832F14307F000D /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = "<group>"; }; - 2A61CD93CD86B2847C62012BC8201AC8 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = "<group>"; }; + 2A4CD029A18F4685FFEA2386D5576A90 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = "<group>"; }; + 2A6455F4DA46D3D011AFEDCB85C66A94 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = "<group>"; }; + 2A66A0DC8DD246AC86E7EF106774B144 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 2A6DACFE14CC5DD3EFE1FF52CAE46B0B /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = "<group>"; }; + 2A7191EDD6EC5DAD69F0407AA2C1E31B /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = "<group>"; }; 2A81D81B2D603824294FC7AAE0B8B5EF /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = "<group>"; }; - 2A826A64BC18F13FDF783C6AEBCB84E4 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = "<group>"; }; 2A89EFE2052008631ED7EF5F6775D509 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = "<group>"; }; + 2A8D197A0AD529686EE251B7CBA051CE /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = "<group>"; }; 2AA4E2E650FB2F10CD6B28690D080A14 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = "<group>"; }; 2AA5BA75C3F022CEBA5F14374FA0378C /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = "<group>"; }; - 2AB94246FA5A8587DCC2EF3CA5347550 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = "<group>"; }; + 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = "<group>"; }; + 2ABB5695E72294DF01503F46F8958E57 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = "<group>"; }; 2AC887141E35A329AE5DE15C7AB64B7E /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = "<group>"; }; - 2AED6104FB755CAB53662F840A8C88E5 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = "<group>"; }; + 2ACF4DAE836F3A6D95CFD47CA16B8438 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = "<group>"; }; + 2AF05263F11E9264AB29F3FF7BEF7AB2 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = "<group>"; }; + 2B118C388E08FB135AF5C4AF3FBFB753 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = "<group>"; }; + 2B14C4E56BD11C9AD9E7D7CC67D321A4 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = "<group>"; }; 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; }; - 2B1AD786AD2B5B7C57E86680A8E002A0 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = "<group>"; }; - 2B260C54E830F6E4E7F93F1EB1025642 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = "<group>"; }; + 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = "<group>"; }; 2B2CD74073247E0ABA4E1B68EF1547B2 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = "<group>"; }; - 2B38653346BCAAAF6D0FBD9B612E49BF /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = "<group>"; }; + 2B3EB9B2850535DAE8A7F3F6AFD80475 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = "<group>"; }; 2B69D88565423B3C09FDE136BF8C5B66 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = "<group>"; }; - 2B720F1263348DE5A54E3740536D80F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 2B79BF2D133095918AFDF1DBD44D3F79 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = "<group>"; }; 2B79DBBE85DC254ABEF25C5D20CC1299 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = "<group>"; }; - 2B8503A5D52E175AE5FEB27FA1115608 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2B8F0CB7B18252642B5D4A076198B56E /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = "<group>"; }; 2BA0F3CBB6D7743D677C5BE964F67CD7 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = "<group>"; }; - 2BBDBB22145B78714CD090797BE20365 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = "<group>"; }; + 2BCA7D25953AD7B71A4DDEF46B0CFA17 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = "<group>"; }; + 2BD6D05211FC0A993AD167FD7F658475 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = "<group>"; }; 2BEA148826FBB5E958D57D606913DCE4 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = "<group>"; }; 2BF8E9A99B123336E4490F22C58A6A56 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = "<group>"; }; - 2C007EF19AC1F93CB99375FEB25E78C0 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = "<group>"; }; 2C1C9E4FC69D6D477AE135711492DE88 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = "<group>"; }; 2C2CB39E6AB98330E4DC3B91371B039A /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = "<group>"; }; - 2C2D51761076F23017FE64D5162CBD54 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = "<group>"; }; + 2C315F99CBFABCC17238E3253EA2F661 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = "<group>"; }; + 2C3382E851B93FEE126ED1E2823BE675 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = "<group>"; }; + 2C3ACBCD984A4A11C1B429B020F1B81C /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = "<group>"; }; 2C3D6F2F0BD6A80301C0154FB416A93F /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = "<group>"; }; + 2C3DD063E32E5E8662D6A1C1443DB935 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = "<group>"; }; + 2C42F9714A09EB66DC4FEA36E14C86E5 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = "<group>"; }; 2C43C3E16E41E3F8C049D78F0280E02A /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = "<group>"; }; - 2C4AD027FCF42D8DFD3D1DC59D05781C /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = "<group>"; }; + 2C4CD1EA00042DB134AE0FCB59D02089 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = "<group>"; }; 2C66BC1E035DFC8C5A9B17AFF831BD1F /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = "<group>"; }; - 2C696B4ACA920D873CD4B01DDB9D63FF /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = "<group>"; }; 2C80263B941C199881AAD0480066051A /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = "<group>"; }; 2C8233B54E3EF80BE1946D22E0D87040 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = "<group>"; }; 2C82F235679116F370DEE1DC2464A06F /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = "<group>"; }; - 2CAA07C9FAE1CBC5F8CED9BE1DAA8808 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = "<group>"; }; - 2CB59D2B895AC64EA439D8430CA3489C /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = "<group>"; }; + 2C910DEB0F6609AF005E02036652D748 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = "<group>"; }; + 2CA5D52946D5146220F0C1D6E7DA0956 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = "<group>"; }; + 2CBB7A0A0D3341A8729B9F3D14F53598 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = "<group>"; }; + 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = "<group>"; }; + 2CD41FE5D4488D18AEA8D0FE2255E01B /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = "<group>"; }; 2CDD0B49E53E253DD76070CD5F430567 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = "<group>"; }; 2CFDDDFB98B4BFDB4327F2DA7239B3B7 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = "<group>"; }; 2D0EFC89B228A007FAAD0BBC50F4A310 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = "<group>"; }; - 2D0F83ECFB17741986A0CCB29911723E /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = "<group>"; }; 2D113AB762E333161D4F04EE310B3C90 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = "<group>"; }; - 2D1612B5B2E0995F0BEF81686283D1DA /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = "<group>"; }; + 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = "<group>"; }; 2D25D25F813838C74090FBF8F83C6213 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = "<group>"; }; 2D5BA069E6DFCFE1A8F4280D50172973 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; + 2D78B8E80FC6143DC5CEAD2D643B2920 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = "<group>"; }; 2D86C30001BA5E9D611749856BA32230 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = "<group>"; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2D8BECE3AD16237B5C54424807FC5037 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = "<group>"; }; 2DBCE57D2CC931F4BE40AD14D0D2979B /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = "<group>"; }; 2DCCC69679F935D7E2F10ACACD5E79F6 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = "<group>"; }; 2DDDC948C5A7095855026FD526CB2122 /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = "<group>"; }; - 2DF88F7711EA92D72BCF7BE7CE17068C /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = "<group>"; }; - 2DFF2067FCB29BDC2048C01A70055C83 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = "<group>"; }; + 2DED67D16CA9A33AD31C49901B1634BE /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = "<group>"; }; + 2DF7C10E2CA08CA750381E0305B01342 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = "<group>"; }; 2E0237BD4E90D915BEF384327688A7EE /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = "<group>"; }; - 2E038C449F763C718AE5E2ADB78A8957 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = "<group>"; }; 2E26711C9C0DBFA835B5B74E622BC253 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = "<group>"; }; - 2E40C82BA6437FB33889A36A09D824E0 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = "<group>"; }; - 2E500DA4066B4BC698E1361F118D3F3C /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = "<group>"; }; + 2E426055F0DD1A897CF3CCD3618F3143 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = "<group>"; }; 2E6D736667E4999E61DA48BC2CD9FD5C /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = "<group>"; }; 2E7AB37A4C9A9CD685B607A810B44352 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = "<group>"; }; + 2E816A440D4FBA6227C86874FABDCD19 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = "<group>"; }; + 2E8C1DBF25BB49301681AE4675992A9A /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = "<group>"; }; 2E8C89747EB135ADAEFAE0B2E90A1C51 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = "<group>"; }; - 2E90EB2ED936DFD9CED122BA83D782D9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 2E9730B90DF9CBFC3873545D88B5EA10 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = "<group>"; }; - 2EA51A884524618DEA398DF4840AD3E8 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = "<group>"; }; - 2EB9720AA2EC1DF9EB8CB25C4D864E1F /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2ED14333F4EBF2AFFD8909008BD5B197 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = "<group>"; }; - 2EEBD729D7FE97E7BB56701E5707CB0C /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = "<group>"; }; - 2EF16A2BFE903141A47F30D5594332D6 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = "<group>"; }; 2EF308BA1672296F22BBDE80801857F1 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = "<group>"; }; - 2EFAFAC3EF4E67E8ED649AB357974741 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = "<group>"; }; - 2F00F28BA9A6B4D31407EB9B4FA91743 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = "<group>"; }; + 2F00430F4588DE0811AFF23C2FC72E54 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 2F0EEDDF0CA1745BF7448FA38B67DC5D /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = "<group>"; }; 2F19B1D2D1D3E6D0CDFD362FDF60E68E /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = "<group>"; }; - 2F67073A4073D195BC1CBBDAD46DF2D7 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = "<group>"; }; + 2F1D4A55EA9BEA7C6F854E7A48AA4BE6 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = "<group>"; }; + 2F4763AE51946C33BE24C00FDAF0EA71 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2F4A0CC84C0513BE8B9846E35F771239 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = "<group>"; }; + 2F74A495375CC373ED1DE23E8F032EB5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 2F8915E6DDB9DB9DC5F4B4D32959B660 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = "<group>"; }; + 2F975ABCF1DDACF01397576F14A4E751 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = "<group>"; }; 2FA846683603BFF27115ED2F9AA693B3 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = "<group>"; }; - 2FB8CE87BC7CEB537F1899D1C1324F27 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = "<group>"; }; + 2FAF2CA43B8035437F93508EE9003AD7 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = "<group>"; }; 3007ADEE69DAF25EEED4EB1CDA5B2089 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = "<group>"; }; - 302D978B412665C395F56FFE0369AF17 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = "<group>"; }; + 30169015F3924A9D83E887FACFD06434 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = "<group>"; }; 3032FCA0F6D3E8D3588E8A516758E5EF /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = "<group>"; }; 308098C32F21C2C1817357A88B725B5A /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = "<group>"; }; 3097072566A9C6B9EA6C6A732B54717F /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = "<group>"; }; 30B93E1F6A28A2113ADF5C4963E92F75 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = "<group>"; }; 30C26D9E8BA9B0C1C3FD84643E3A62C9 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = "<group>"; }; - 30CE21B672A1DA765D0CC772CE042C9B /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = "<group>"; }; - 30D0D4C3F5916BC4D68C3E0DBCC9517E /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = "<group>"; }; - 30DBFC7A4FF039C5917173CBB4D02D51 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = "<group>"; }; - 310B657865ECF27AB6D535AE434CDF1A /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = "<group>"; }; + 311043C1601FF102B6E628231C20528A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 3123946DEF3421A12E9BAE834F1E3C63 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = "<group>"; }; 3127D00DF32C10EF345C5A607BA2F0EB /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = "<group>"; }; - 312AAE5A6C6467B1BD4D1576263C73E2 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = "<group>"; }; - 313C789BE0FC7B4E88B0EA6F25F995EC /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = "<group>"; }; - 314B00F0556129330C28971515652AF2 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3162B0BB098E0A0E5725BE6C2F9194DF /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = "<group>"; }; 316D9D195CF9A8195A75DC78F7F59054 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = "<group>"; }; - 3175C4A8CDE2820D0086ACFD9E057C6B /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = "<group>"; }; - 3183CB576AFDC61926A9EC4D748E02AC /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = "<group>"; }; - 319BDDC22E54A7B2B3B6F822B75394DC /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 319B47D9A35D9D659C3A3ACCFACDFAAF /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = "<group>"; }; + 319EB6FAC518BAF8FB8D069B119BBCC3 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = "<group>"; }; 31A34D813C9BE0C4D2D9FB56A59FE8BB /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = "<group>"; }; 31A7478A71140105AF55B7AAF813239A /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = "<group>"; }; - 31BD267E131ABFAF03BF7C2FFC0CB16C /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 31E5253B01FC9B140DD8BEC2420EFF77 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = "<group>"; }; - 3202FBF29C4F149BBE0DB85272BDEF4A /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 31E2C8455EA94AE9E641B248102206B8 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = "<group>"; }; 320E0B1A25EB2F637CBF4290094ED6B3 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = "<group>"; }; 3224500CF0F3FB09AC30951ED4C8EE14 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = "<group>"; }; - 3224C69845F199046B556C08D2ADBA96 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = "<group>"; }; + 322C21C553A1DAB04CC9C758267576DC /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = "<group>"; }; 323E1B424291F692103EBDFD456C1BDB /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = "<group>"; }; - 3253FD23B394327D3C8FD8D7F6FD570B /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = "<group>"; }; + 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = "<group>"; }; + 324706CA72283709C6953C448166A9A9 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = "<group>"; }; + 32697D5DA0B612CE8AFF865E3133F083 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = "<group>"; }; 326C1C8C0F48FC5A36BCAA9A48BB4735 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = "<group>"; }; 32A6FAF621DD8E42929F3FA9DE1FB33C /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = "<group>"; }; 32AEBDE4BE631D2A005BC2CB50F9580E /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = "<group>"; }; 32C0C15D205C2A456F02A54148A83B64 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = "<group>"; }; - 32D367A7A858ABE44FBECC0E98AC64A5 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = "<group>"; }; - 32D5FEFFC7497D57AF5301263E89ED9F /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = "<group>"; }; + 32D62F9FE254D779D1AF7414AED6EF81 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = "<group>"; }; + 32D6692C58A15CAE118365DE54D97957 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = "<group>"; }; 32DC7ABAC6A190D72BD38D21F3B51E48 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = "<group>"; }; - 330F28E14D260FA2752AB8244F045F1E /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = "<group>"; }; - 33438DB7F71465101165DA2719EAB217 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = "<group>"; }; + 330566AE5AF4C4FFF95E7C2D625511FB /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = "<group>"; }; + 3305EBFCDE2F3D9BE8746FA55736C793 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = "<group>"; }; + 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = "<group>"; }; + 3334E27A81D92C38902F3EF06E65C508 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = "<group>"; }; + 334755F233628245C1D01956028DA931 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = "<group>"; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 33717BADD5994F7219D8F0E327A52F29 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 338684C7E93881F6575D9F4B01EDF68B /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = "<group>"; }; 3389D4D1E3F77F09829A7ACD37FA8A6E /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = "<group>"; }; 338B456FE987876072B45A158A31614D /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = "<group>"; }; @@ -6616,25 +6706,22 @@ 33A00DECC9301D1BBEC0A60EE8B99A8A /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = "<group>"; }; 33AE5102B7218B102D9683C94F8937BA /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = "<group>"; }; 33B3D54191A1B4DD4747CFE7113B08E6 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = "<group>"; }; - 33B913E6B0D46E4ABC3598B1B632F213 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = "<group>"; }; - 33D95BDFCF516395A611299362841842 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = "<group>"; }; + 33B7C5D1D926FC345037DFC006FCC356 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = "<group>"; }; + 33C501A1A12B23A1737140EC045E0289 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = "<group>"; }; + 33DDA7B76998A58E33B738D9F35141B1 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = "<group>"; }; 33F64DDC7E68F08CA71D263DC0CC3E0F /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = "<group>"; }; 33F85B092F6064A0ED2AA95A2188EB1B /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = "<group>"; }; - 33F8A11A31D2EAC23A3C7402B0518EE9 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = "<group>"; }; - 34126C55143BB4DA96826DE04732E9AA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 341402BAC319CA956870770E48DCB3CC /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = "<group>"; }; - 3425EA6F10A8D06F7055B161E70740CF /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = "<group>"; }; - 3438CF072ACC11A4F3EDAD57FF022997 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = "<group>"; }; + 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = "<group>"; }; 344455418677B550C102ADC52DFCAA76 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = "<group>"; }; - 344569415CFF47FE8C46071BB022DAD8 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = "<group>"; }; + 3448FC55C8E82FA0CDC44861D2A94718 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = "<group>"; }; 3455EB917ECE0988D4BC9BB519933A28 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = "<group>"; }; - 345F6534E197D92BF760D41620CDC133 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = "<group>"; }; - 3460984D7C361328571349EE5D4B8FB1 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = "<group>"; }; 3478AEF60CF975B80483F24893ED01A6 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = "<group>"; }; + 3481A38292488F28E5A6CF01D5EA7CCE /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = "<group>"; }; + 3489CB37C9B3ACDD44CF38EA4DD561B0 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = "<group>"; }; 348DA93620B968E86B2258E7BF32AFA7 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = "<group>"; }; 34A05F256E0E3B229BB0FAB0D94BC1BE /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = "<group>"; }; - 34A8DF0A198A06F689AE0C2F60D179D1 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = "<group>"; }; - 34C84038B05552925384036934DE56D4 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 34AE55DEA5FFA61EFF3FEC80D5A8FD8D /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = "<group>"; }; + 34B9077B77809D6B9B552D2BFA10F8C3 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = "<group>"; }; 34E4C5FF003511FCD5A7F6A2752F1FA7 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = "<group>"; }; 34E775840571C0EE3226EC1C1E0D2D89 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = "<group>"; }; 34F3F080B4AB992EDEF5C1C466626A9F /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GULKeychainUtils.h; sourceTree = "<group>"; }; @@ -6642,523 +6729,526 @@ 35078CE922A0A92EB3D0F127D9DE23A2 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = "<group>"; }; 353EE6C33FEA1FBA2171E022A6BD897A /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = "<group>"; }; 3541D06EB8C59BDE0027D1E6341BC285 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = "<group>"; }; - 3555285237DF241DFE5ECFC129B82679 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = "<group>"; }; - 355DED01991AF95805580082EE4D8736 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = "<group>"; }; + 35557C57F235E90EB2ACCFF11F014BE9 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = "<group>"; }; + 3556FDCD6800754D6B7E16B921BD577D /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = "<group>"; }; + 35690D5F90F8D260BD6751FC9BBF609F /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = "<group>"; }; 3579C5645A59C212E9D4838934B24C7D /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = "<group>"; }; 358C9E91962A56C204E62638347FA102 /* OpenSSL-Universal.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.xcconfig"; sourceTree = "<group>"; }; + 35C7E2D98FA30BBB9A085F507411C7CA /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = "<group>"; }; 35E0D02970C5BB6EC2EFA5478256E115 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = "<group>"; }; 35EEA45FA2DE8E285D43AE37CFA7AF4F /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = "<group>"; }; 3600814DD008F55BB46FDB23644C5EA2 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = "<group>"; }; - 3627F3B981C21B4200542013C5E9430C /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = "<group>"; }; - 3629342F9E169EDA183AEB7ED9AC2EA6 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; 362DCF91A55A56D69B0ECA55A973800F /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = "<group>"; }; - 3634D87B73924CC5131F6B0E98980D02 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = "<group>"; }; - 363D688DA87AE4DEBF94D3FE2907EE02 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = "<group>"; }; - 36702AE98C56797A537205898FC341AA /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = "<group>"; }; - 3693AFA36C30B1CD3B841A7E328299A1 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = "<group>"; }; - 3695617AED5C82AAE921B0400A171759 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = "<group>"; }; - 369FD78FF5156599FB854E626E31CB94 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = "<group>"; }; - 36B7C68AC1C8AACB3FBE5504BDA2DFA6 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = "<group>"; }; + 366B857DB460F6EA175748F3CB9E520B /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = "<group>"; }; + 3679A9C3EAA7E2A632E8B6689309FC57 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = "<group>"; }; + 36A5BF922FAFED826AF8644C774A3DBC /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = "<group>"; }; + 36B1EA524695A5235642D338CFACE993 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = "<group>"; }; 36BC595DFF8CB1CB7E39F0DEF96F5EB1 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = "<group>"; }; 36C34866DBCF5BBE9CF21BCF066F4F09 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = "<group>"; }; 36CA48016AC8CF0F80FC04D682B01F9C /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = "<group>"; }; - 36CE6F3BB9C5E2A84911F0EB0D50A85B /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = "<group>"; }; 36E87CC503F95E7DCBCF552BC0BF04D6 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = "<group>"; }; - 370D292975A2043376B9EA3E171BDC19 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = "<group>"; }; 370F4C7AA1DEB0D3A3169588D360A9F8 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = "<group>"; }; - 3726B6E0CB5EBEB17A4C0E84EEBB1680 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = "<group>"; }; - 373F1A7D3589BEC36FAC2530D2E9F763 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 374D90D2D94D95FB6B3CD0907FC7E9DC /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = "<group>"; }; + 373D9CFD1D5D8E68722A9BF8BA08B629 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = "<group>"; }; 3754E206186745C3D9A8EE51218F5A5E /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = "<group>"; }; - 375728919619FF75FA66E1EFF31EA0CF /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = "<group>"; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 375C920EA998F832EAB1C920B324F461 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = "<group>"; }; - 376289F925BBA97BFE2326E9482FBD1D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 3781CB5AEC53F10919903CE56174F596 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = "<group>"; }; - 379FE274E8A7DCAC4B987B18D6867063 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = "<group>"; }; + 378045A1235160477787871E19B23164 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = "<group>"; }; 37A89F466422593989BBA494562789F4 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = "<group>"; }; 37ABC434552931F0A595FD484E5C22E0 /* Flipper-RSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.xcconfig"; sourceTree = "<group>"; }; - 380AEA85EBA61336850CB2319530876A /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = "<group>"; }; - 3829AEC3DC988CD50673B1724E7A381E /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = "<group>"; }; + 37B4ECBC815DD0545E6E71B8A58F910B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 37E2873581DB11877516F8501B3EABDC /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = "<group>"; }; + 3807015D1473BCE97EBCD824F4768D95 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = "<group>"; }; + 381E485B872E78BA9520875768779D42 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = "<group>"; }; 38398CBE1093B9B3DBD3232473146B9C /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = "<group>"; }; - 3858F2F8315421376F3B70D7C71AF7D9 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = "<group>"; }; 385A850319001F2BE3E12C09663F7280 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = "<group>"; }; 385FACEA2E38248F7771BF71AB6219EF /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = "<group>"; }; - 38A733AE537DC49958ACCA83938D62A8 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = "<group>"; }; + 3866A25D361D738C3C4146B8EEECEC71 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = "<group>"; }; 38C6B5F5057A29AECC758D204F8E4B02 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = "<group>"; }; - 38D6450F6A8E0BEAC091B5E216F92647 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = "<group>"; }; - 38E0016D738D88DC9345BAE075747225 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = "<group>"; }; 38E81F4118D306076092074303DE64B1 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = "<group>"; }; - 38F39BCA112CDB5A3FE2B699C153AD24 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = "<group>"; }; + 38EE6352FEB572021F497970361E22E2 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = "<group>"; }; 38F542AA63759451E14BE2891CE36907 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = "<group>"; }; - 38FC571658638D8A3F5B74B23C77C79A /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3908931CC3AD282C86A05F921B3D10D0 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = "<group>"; }; 391809D6099DBCF7ED4F67B5CF7C077B /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = "<group>"; }; + 391FA89E4A62EA22768FB6CA3B8C06A5 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = "<group>"; }; 3922B2324DFA23B70E7FBBBF971AD437 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = "<group>"; }; - 393649E868C1F3608372A39A3CC494A3 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = "<group>"; }; + 393719E8E07E42AA1712335F0D76BD52 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = "<group>"; }; + 3938FC31FF56249B4E10A15443534921 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = "<group>"; }; 395E95C403AF67A9659CB016D77A3436 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = "<group>"; }; 39775A8C0155C941E8CC5EAA9FBB4C16 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = "<group>"; }; 397DC933BD2F2B41EC3696740DDA1F75 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = "<group>"; }; - 39938D64691205D235E91657B49CF7AD /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = "<group>"; }; 399409442F56DEC163C87052645635DC /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = "<group>"; }; - 39C6BC0725BD672410A391879277ADF7 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = "<group>"; }; 39C7AED29148A1FB6CBF9BBE2AFB58B5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = "<group>"; }; - 39CCAC4A2D7E157D625AE2E79DD5784F /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = "<group>"; }; 39D08AE05367AED5E02CBD69FBEBDA5B /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = "<group>"; }; 39EFE1454B4E804D8C66C8ED2B014708 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = "<group>"; }; - 39F290DEB801CA50C62E5E8CBCCA0EC9 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = "<group>"; }; - 3A0FABA01C07B1630A74F20C92AC00AD /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = "<group>"; }; - 3A2A01DC99BBC7CD86517EEED9666713 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = "<group>"; }; - 3A872B996E9B044512DA1A4D00D907BA /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = "<group>"; }; - 3A8E2E8D839F67FE9206D7EB9D49D047 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = "<group>"; }; - 3AD3E8AA4DB772AEFC6A888CC307134C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 3A3741B86AFDBCB513EABA7C00306FB0 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = "<group>"; }; + 3A6C91F2959D078E7D6060F10431C3E5 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = "<group>"; }; + 3A6D3E35BECB150CD5F980483BC52243 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = "<group>"; }; + 3A8479C700A99D42A45C19893F8A5857 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = "<group>"; }; + 3A958F3EA31FFEE89B58963F03BF74DF /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = "<group>"; }; + 3AC56F9DA9CF3A8DD38C1913E720E0D7 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = "<group>"; }; 3AD89021B169E25E5255658335D92B54 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = "<group>"; }; - 3ADE7AC6AADEF017B591C0715DA215CB /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = "<group>"; }; + 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = "<group>"; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B25D029817EA978A309499F929477CB /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = "<group>"; }; 3B2E2FAE979095438F3921A484FF5914 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = "<group>"; }; + 3B31BEBB5858E81C44FEE36887BB30D4 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = "<group>"; }; + 3B3521A9FE101B163F2C9A187BD1E7E3 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = "<group>"; }; 3B38136BE7F825000980BF45DD6B49CD /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = "<group>"; }; + 3B47F771593D230817BD77F43EE081FC /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = "<group>"; }; + 3B4A3049C0EB886C67137CBFFD354348 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = "<group>"; }; 3B526A91B07206C623733F489B2415BB /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = "<group>"; }; 3B57D3294265E219668F64D7A40FC3DA /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = "<group>"; }; - 3B62D8AC6B14363808EBEEDB068F1A84 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = "<group>"; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B661D63CB8E4F265BC5AAFEBAB482A6 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = "<group>"; }; - 3B8289262152BE0ABEB6FC0BCC16E7DD /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = "<group>"; }; 3B832C63D25434FE443A3C81F86AD4F7 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = "<group>"; }; - 3B912757EDE4CD245B6F841ED3028A0D /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = "<group>"; }; 3B959778F5883A6A16C96D03C7B7874A /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = "<group>"; }; 3BAA4C10B3A9110764841A16FFE09690 /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = "<group>"; }; + 3BCE74587D3EB3186469314D0C81FEDB /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = "<group>"; }; + 3BD7115DD0B67CF8A67D86E8BC7DA72E /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = "<group>"; }; 3BD9328209611FF1811B056BE8AC0384 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = "<group>"; }; + 3BF7FCBDBE58FF824E55296C47D01FB9 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = "<group>"; }; 3C0174E7A6077176C3B561C76A3A50C7 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = "<group>"; }; - 3C03B2D351FC20816E45627C7934C0AB /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = "<group>"; }; - 3C2607EDF9EC549569171AE3CDECF5D6 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = "<group>"; }; + 3C06A74260BEBB5976EC38B84C16A54A /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = "<group>"; }; + 3C0C031D54483C4716ECA6D731C239F4 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = "<group>"; }; + 3C26224BFC9F7CAF1BAA53D76D222B62 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = "<group>"; }; + 3C2FCFF1B74797ED46F81119F1ACFE14 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = "<group>"; }; 3C3954DD83E601BA4029D3440FDD3365 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = "<group>"; }; 3C3C07C9519DAD395D84577B2349F5FD /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = "<group>"; }; 3C66CD3BB081E6B8F5FF09E729538BCD /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = "<group>"; }; + 3C88B7C68A22A41BF671FF5473A7AC4C /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = "<group>"; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CBD01CFCEA5982CCF544C58730ECC84 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = "<group>"; }; - 3CCFC9A0010B28776BA6E3D13C6B6E89 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = "<group>"; }; - 3CD1A7C15C31FA648D8509671D563123 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = "<group>"; }; + 3CBC29214A35D70A6460363696F3A412 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = "<group>"; }; 3CE034C6B186B447C39072B20294DFD2 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = "<group>"; }; 3CE861D402B237A53DD459BB593E2C81 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = "<group>"; }; - 3CE9F4ABCA1B6001FD7755772C259C29 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = "<group>"; }; - 3D0149F9ECF69B7586A6E5B0877111F8 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = "<group>"; }; + 3CFD4E37FCB41DFC0E9A17BFA73CCD48 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = "<group>"; }; 3D02598A0900902A1CF01D1AE846AFDD /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = "<group>"; }; 3D05F90C02C4C146D38A1263DD93B325 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = "<group>"; }; - 3D133A999991806DB0A11FD60D37872C /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = "<group>"; }; + 3D0EC160F40518C6771B030C1BB9FE75 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = "<group>"; }; 3D2E783E2A548CA0579D5CE081E9DD3E /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = "<group>"; }; 3D434058588DC6E842D3D280DCB00912 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = "<group>"; }; - 3D8D63713F558A5393BFBC8A60477607 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = "<group>"; }; + 3D4D955BD35DCD869F66D0B9054109D3 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = "<group>"; }; + 3D90C5DD717032ADDD6AA5FA6A1DA9E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 3DA146C09B7AB2F2DCFD5F46F31DEB53 /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = "<group>"; }; + 3DC6A673372926D61D8997915CCE6D97 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = "<group>"; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DDB4F771CE941B081304B03114DB50D /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = "<group>"; }; - 3DDF1CE1F1DF8F2EBBEAEEB8B361FF4C /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = "<group>"; }; - 3DECE78FD5A2983C4A35967B61B994F5 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = "<group>"; }; - 3E128E50F8F17712E6D31986A49F70B7 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = "<group>"; }; + 3DFBAF76F2517CC481FBA77F96333C94 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = "<group>"; }; + 3DFD64EA055EB18942E3F17304F94DDE /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3E0327631D614F964926C116CE2D0667 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = "<group>"; }; 3E2A8BDD5B43E8C53B1B17CAB035C90C /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = "<group>"; }; 3E422E47E3BB57CAB5AC2E7F81C8B6A9 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = "<group>"; }; - 3E4B0DA731DAC06B044C723FE5A3A0E9 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = "<group>"; }; - 3E58473565FA7BA6B52C7C03F53AFCCC /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = "<group>"; }; - 3E598A4522837C5C56EB185F33A212F9 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = "<group>"; }; + 3E43154BEEBFE6BDFF52BFF59F2F5CA1 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = "<group>"; }; 3E5A42DDAF903A1C93C1B4A0C3A84B6B /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = "<group>"; }; - 3E5B12CF0741F96E982DEEE369ECD7AF /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = "<group>"; }; + 3E5B2EF96696FDE275E71309F9EABDF1 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = "<group>"; }; 3E60978F54BEFC76D758C52F2DCE696B /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = "<group>"; }; 3E72A96C3E51340E4B917875C909221D /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = "<group>"; }; - 3E875E5D8F30242B23D7B7AFD926CE3D /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = "<group>"; }; - 3E9F531D47A3C35188ABA3451FE35CD6 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = "<group>"; }; - 3EA609FA0CBBEBA1A9DA413C5AE8E2BB /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = "<group>"; }; + 3E739FFFAF59E0686A65318682F53F97 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = "<group>"; }; 3ECEA23C3832F940BD691FAEE3B87476 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = "<group>"; }; - 3EE9497DDA217A30BA230F090A238CC7 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = "<group>"; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EF0ACF7318680C3D44E958FA684B972 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = "<group>"; }; 3EF36CB287F7DB44B3568306B6A1ECA5 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = "<group>"; }; 3EF71BA9825407811D79C109B9096405 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = "<group>"; }; - 3F0E57C43BD5B58923EAF3133A8DF42D /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = "<group>"; }; + 3F08A534E16C64957338A0CE5064E4C0 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = "<group>"; }; 3F0F42D8DE9C65D239BCC5002B2017DB /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = "<group>"; }; - 3F3BE8EF729EEFBEE87B89FB9A688FBD /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = "<group>"; }; + 3F26AD8F4F3D371230E2B519E3A584B8 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = "<group>"; }; + 3F37C3569D69F6D9FE0DF0B78ABC8991 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = "<group>"; }; 3F3DFEFF8AB18EB244F07350AC46618F /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = "<group>"; }; - 3F543489C546E88E54FBFE968E7C4CB1 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = "<group>"; }; - 3F77483F54D414C3E112B08D4D728DFB /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3F3EABA8585CA3821A70440DE9644798 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = "<group>"; }; + 3F580CE60F927001A6863759BDA2500C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 3F6FCF94C80C1D5782D49CE8FF488110 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = "<group>"; }; + 3F74F63D4500638E176854142E804CF0 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = "<group>"; }; 3F79F90715010468FF63C2788D4F3679 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = "<group>"; }; 3F9C8FDD1AE68A48A21FA0412E153E35 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = "<group>"; }; - 3FBA2F8AB4723FFB9D43907C4A5D4475 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = "<group>"; }; + 3FA335B90F2FA11F4F3680BECA99C737 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = "<group>"; }; 3FBAEB1D6479328FFAA044B920BC1017 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = "<group>"; }; + 3FD2C5A75B26AE120DA1A0C22A771FF4 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = "<group>"; }; 3FD7D48A89F4C89BE5FAC0AE983DC9A2 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = "<group>"; }; + 3FEC4E9A82D86777153BD8C0B53B45AF /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = "<group>"; }; 3FF6B9B2F80475BDAF9406B0C11AEB29 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = "<group>"; }; + 3FF7D4167A48ECE14628804DB78D760E /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = "<group>"; }; + 401979E8E4C19911C6E4F9B3742ED49A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 4032C4C557F3A1F04712FAE17E9EAF26 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = "<group>"; }; 403827E274826CFF30F539519D193F30 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = "<group>"; }; + 403F69E50B9F50E302A25797738D2E04 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = "<group>"; }; + 4049EA977C8B11EC8AB6CE994017B186 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = "<group>"; }; + 405FF0F93527FF8267B2465C55E555BA /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = "<group>"; }; 4082D85A971AC99A76C09BAB6AAF6714 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = "<group>"; }; 408433CF1B7EA0B7FF2397A82A33AFEB /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = "<group>"; }; 4085FF73C7C30BADB2FBEF9BAAE48C10 /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = "<group>"; }; 4088903476B95FE6DF28291572F20B82 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = "<group>"; }; - 409330992F3D3BF12E89545D9C524637 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = "<group>"; }; - 409936061B878BB235E455401E15076C /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = "<group>"; }; + 40BA53CDF13B063CB38159B8F1FFF71A /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = "<group>"; }; 40BAFE338E7AB738B25B647E7368DB91 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = "<group>"; }; 40CD0F0863C85C21A8217DBF0AC3C4D0 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = "<group>"; }; - 40E6ED70362AE84D52339DFDCD6DEC4D /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = "<group>"; }; - 40EC405B3CC16154B3954F379C47921A /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = "<group>"; }; - 40F56A28871C357A8BDC5C3ED3B1020B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 40F59D5A484EB698DDFE890E2BFEB5DC /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = "<group>"; }; 410141CF3DACA5A1583864981B69968E /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = "<group>"; }; - 41050FCF0778A13F7C853A6BE64BAA9C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = "<group>"; }; - 412659A6BC82EC70D3FD25F062A09510 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = "<group>"; }; + 41222C666A8F46E06A91673973BAA9B5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 412D48D731E53A5618B1DBB917CB8899 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = "<group>"; }; - 412DD13752812B1CA092B6124855D1F1 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = "<group>"; }; 412F3CC7709CF5225D74E43E35F39640 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = "<group>"; }; - 4162C587702750AE20889B623F3E300A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 414461A82EA3444F6A5D1E74A7C041F8 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = "<group>"; }; + 416154B7E09202C63484462EEC3E15F2 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = "<group>"; }; 4164EE003AFF094D680F7CE313560262 /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = "<group>"; }; - 4176701C84EB6E9A4E05B9DA78F07954 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = "<group>"; }; 41983F8D589C341916296E9E572A32A2 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = "<group>"; }; - 41CAECA76E8396085CB984BF6927F6A3 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = "<group>"; }; - 41D0293F53C01FE2EC7861CAC2794DAE /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = "<group>"; }; - 41D3CE8CAB00766CEBF927D74F2EC9EA /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = "<group>"; }; - 41E34DF774AB75999624309D3B29DE63 /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = "<group>"; }; + 419D7F99EC80B8052540CD50BC3163FA /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = "<group>"; }; + 419ED541E249724B97BD0D0933226484 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = "<group>"; }; + 41A197D6922541ADF732712A52AEC561 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = "<group>"; }; + 41FE7C4DC3FAC003F1B598A2B9F5C053 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = "<group>"; }; + 4201BE87D92B9946897F0B9935126CF7 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = "<group>"; }; 4207D75DF1458D3ACE11B078B04F1652 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = "<group>"; }; - 4228BD660D1D0B8E7989983B66587B3B /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = "<group>"; }; 42344ED6709C5B76F5BE76C36F1A379C /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = "<group>"; }; 423B63627875801FEB7E4ECA36A7EA84 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = "<group>"; }; + 4242A7899DB4A39CA35B05A1C266409E /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = "<group>"; }; + 425595E475601471A5020B4C92A26954 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 425948E172F368C6A68D1CED6CBE3686 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = "<group>"; }; 4277DB60D1EC8D61D0D72FA1F14F3D5D /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = "<group>"; }; - 4281C8FC4CD07B1860F60AA34369E863 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = "<group>"; }; + 429EC9BDA101E3155E8BA23E62D9E72D /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = "<group>"; }; 42A215B9092D5B963166C1F6BB749044 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = "<group>"; }; + 42A510FC5C085CC40B04B6AB76649708 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = "<group>"; }; 42BF9AC1EF2FE819707D1E091F5FC121 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = "<group>"; }; 42CE874E597F53D2384D60904EAC671F /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = "<group>"; }; + 42D90568CF9B3800373795CB9CAD8F84 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = "<group>"; }; 42F89E7F7223E6EE2A483ECECED9329B /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = "<group>"; }; - 43198AA2A2C1F738A912581A6215A2C2 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = "<group>"; }; + 4335EF4928C61574AB47E7CD8B7BFA1B /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = "<group>"; }; 433622B6D6E6EA72C4501936123F1D6A /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; - 43404C253050F35B18ED1228E992C51A /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = "<group>"; }; - 43483FBD75EE29E35FC81C740C127C8D /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = "<group>"; }; 434CE4BB3399591C2F9CA7319B700A25 /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = "<group>"; }; 434DD67F0977965E950CE7EE6FF128BE /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; 43534F0D85442B9E619CF5E9D9F45B0F /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = "<group>"; }; - 43569936956F579DDE780457A99DF58F /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = "<group>"; }; - 4363F3255126FD5D35E83B598067BC60 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = "<group>"; }; + 4369D81D63471C3982BABEBFC22901CD /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = "<group>"; }; + 436A2C1CF5C436FE19DEA09C716D9B49 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = "<group>"; }; 43732A94F78C75F675A29E3EF54DD945 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = "<group>"; }; + 437CE74CA59C58F794EBC32E2CB8FC0E /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = "<group>"; }; + 437E9354DA6C66E56A1165795756265E /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = "<group>"; }; 438B1DE0E62A8B0F75F6556F9D3BAB54 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = "<group>"; }; - 4396AF01347CCA03B9E7140BADCE88BE /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = "<group>"; }; - 43BD1B04416643350A4BF3D1B251217F /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = "<group>"; }; + 43B30801029C061FA6A7CB4004C37E50 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = "<group>"; }; 43C961736240DE8782C3CEB40773DC64 /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = "<group>"; }; - 43DE7A16E50B78A6B067DEA6AA4EE763 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = "<group>"; }; - 43F65837E45A2C07E2A1DCC999CE8873 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = "<group>"; }; 43FE403BE04AC4009034336C80A9B3A1 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = "<group>"; }; - 441BB89DF713814C009A35EAD6428445 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 442F3E0569DAC8222F36443BF2FE3A97 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = "<group>"; }; + 441F02D10BB61823144938EE3580E748 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = "<group>"; }; + 44273F4E9B42941C20D465C19E4081EB /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = "<group>"; }; 443289FF1C17B6682DA35AFA742DE759 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = "<group>"; }; - 443DC7DE34626A793CF8CCCE336854DC /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = "<group>"; }; + 4442821F5922C2837AF490FF6733A42B /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = "<group>"; }; 444BA0CBD91918EB6F172BC4A1FDF2BB /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = "<group>"; }; + 447B8DCBF522A8F84954BC51ACD0569E /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = "<group>"; }; + 447D548BC3C3A6985F7B1265A736866A /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = "<group>"; }; 448A21A3CB44AC4AD2A39C5D90D61041 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = "<group>"; }; - 448FA111380C5F7D091857A14B026038 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = "<group>"; }; 44919622BD454671DB4D66170BABA29F /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = "<group>"; }; + 44AF5B74897837122FCB1F6C88514382 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = "<group>"; }; 44BF4DB7E982E0A4109C4C15028DF1D1 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = "<group>"; }; - 44D6285937F4C5F37A9E2C88FB47A322 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = "<group>"; }; - 44ED62CC3DEFDFACDBFB15E97D56696E /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4500DCCD43CADD1527758DA5F848FC2B /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = "<group>"; }; - 451695E95BEB3B65629C4D2E02D043AD /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = "<group>"; }; - 4555182B961E262F7A5D0D88C698AAEC /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = "<group>"; }; 456318FB0B8675792A19156602488932 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = "<group>"; }; 4570B2791DCDB681C6884144EDF39C85 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = "<group>"; }; 457ABA7722CF7E4B51B0F0B3990BACA1 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = "<group>"; }; 458F564036F6CE604B89D8C515B85152 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = "<group>"; }; 459327D88106B828E8FED49069C1B8DB /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = "<group>"; }; - 45BDB360A9615C0ADD637982396843BD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 459E720AF3048001A28D86AB1813580C /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = "<group>"; }; + 45B3F54749A87CE4A5D8040256402A95 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = "<group>"; }; 45D00F8D02BC30C9CD3C92F08AA8B19D /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = "<group>"; }; 45D1B3F889FBAF209826646F25972B3E /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = "<group>"; }; + 45E343BF066A1B734C22DAC9C8A99AFF /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = "<group>"; }; + 45E52094466A02ABEAB86B29FE43D4F0 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = "<group>"; }; 45F0F2DCFFE7E9486B1F265805F680CB /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = "<group>"; }; + 45F7D27CBCB40E8F77D9ABC84E89A8B7 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = "<group>"; }; + 46043EA22750F5C014FAC7118BBA397B /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = "<group>"; }; + 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = "<group>"; }; + 461A9A49911068228783AD7F9A834FE9 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 463444A762A6DD6F36C8B8129303E5E8 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = "<group>"; }; 46427E3D983747630117EDCE331946B1 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = "<group>"; }; - 4655428B02A1A4541AB1D8DE42C67949 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = "<group>"; }; 466D597AD1459F3BC853D24ED8127E57 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = "<group>"; }; + 46726F35FDD4FA684D6C10085DD089D1 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = "<group>"; }; + 468376E377086F72089C0879AD2F764F /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = "<group>"; }; 468722DA6A5F7BF2065C3337128D6C37 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = "<group>"; }; - 468C35F5B2133BF7FB4CF023226AA2AA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 468D763FD715BA65BBA48C21E8A5C2E6 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = "<group>"; }; + 469614418673ECF5A39C6A40E4EAE2F4 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = "<group>"; }; + 469DD77831E65227AA6C84B6C2B2AC01 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = "<group>"; }; + 46CDFD5D6F50620F9E7601E85A37F8BE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 46ECEE1F1FB8E769F87814B37E02C7DF /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = "<group>"; }; - 470A3254430782FB2D826E72C22A5F1E /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = "<group>"; }; - 470D0A90080CEFFB6CB17D10B442265C /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = "<group>"; }; - 47132D3CD2951DF9C74041BDF317D97B /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = "<group>"; }; - 4730CAE79DB9E448ACFBF47D5A9CF3EC /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = "<group>"; }; + 4701A56E6E6454DF97BC15234A739DF5 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = "<group>"; }; + 47334D1C0A25C8B95A919986395B4E4F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 47493263C20295178AF58DD9216ABC8B /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = "<group>"; }; - 4758BA760E88879F33BC50BC967013D7 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = "<group>"; }; + 474A87575CEA38A9E52970DFF7AEAB43 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = "<group>"; }; + 474B6F3D8B930EFEBD3F53CEF5115FDE /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = "<group>"; }; 4767264FEFC132643C5311D5096788E0 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = "<group>"; }; 478B71F6F87C9F9BA4F0B8BF8CAB0621 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = "<group>"; }; 478FF91049F877DC033DD166C1CD7FD4 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = "<group>"; }; + 47BB49A7A88CDA666966A40A60D0472B /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = "<group>"; }; 47BE8606ADAA46F17D3BCB260DFDB92E /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = "<group>"; }; + 47CD048DB4EE75F4B79A8E53249E3012 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = "<group>"; }; + 47E106347AA5264F3182C3270E9B7D23 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = "<group>"; }; + 47E8087BF3CD1AC8E9B10155B51E4636 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = "<group>"; }; 47E81847F376B9ED13D4052F3DB0D23B /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = "<group>"; }; - 47FDE73B387B1B21EF6C22D33E8959F3 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = "<group>"; }; 48076F4983CE8007308CA27053AE9DE8 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = "<group>"; }; - 481B3820998F43EDD713E62F75E310C7 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 483014B9AD6D877783DD88E8D0B8AD11 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = "<group>"; }; + 483B294389BFC1A333B174C9EE7424D3 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = "<group>"; }; 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; }; - 4844DEE99A51269908F7176068E8A268 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = "<group>"; }; + 484F71D2F1FE4AFC1C9AA945E58569D6 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = "<group>"; }; 485F6A036642CBC1CC852BE2FFBC1556 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = "<group>"; }; + 4861260C10C20CC6A6F44A2E9425059B /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = "<group>"; }; 4867946AE62EB71973F0CB1AB2E3EDCD /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = "<group>"; }; - 4869AB951FA7D13BACB5E81747F1EEB0 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = "<group>"; }; + 487E3FEF367BF978805E546FCE64BCB2 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = "<group>"; }; + 487E52295EA3E526B90F88CD0BCEB60E /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = "<group>"; }; 48904D0C22DA601116494CB6287EEC29 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = "<group>"; }; - 4897EC7EF5071628F652E107B67E97E6 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = "<group>"; }; + 489381BD88BB462EA51AC3844735251C /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = "<group>"; }; 4898F69B4C0225E1DBBCFD6566D34923 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = "<group>"; }; 4899AB8F9FDD2B76CEB7644F2948E5F7 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = "<group>"; }; - 489D5376AA4DD9E40E97D572C797336D /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = "<group>"; }; - 48A09B7FA3DD7062A06F4285D4E67E5D /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = "<group>"; }; 48CA643B7C9426F0218624D4222E051D /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = "<group>"; }; 4902177CAEFA56F1474E9DF0D3EC09A6 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = "<group>"; }; - 4912B19107CF8813B0F62A95D0E2D787 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = "<group>"; }; - 4934A02909CA8A0AAA0AE951033F0CFC /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = "<group>"; }; + 490FB0A3ECA38BAD6E8E1167DAD77439 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = "<group>"; }; + 492536DC8DE6C57B7A06571A85F557EA /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = "<group>"; }; 4942470818BCDEBFF9C422A2948E9EC6 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = "<group>"; }; - 4949D1467B88E537DAB04E4BBECF0830 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = "<group>"; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 495865D3D60F68840B36129479BD0EE9 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = "<group>"; }; - 4961AAED3E78164AA1A4FF8BFB1179B6 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = "<group>"; }; 4983905CDDD9456E7C6241113749DD9A /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = "<group>"; }; 498C62399F6E7CF8C62EED33F4268C25 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = "<group>"; }; 499A35760253D34D71C2A85A14E3A98D /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = "<group>"; }; - 49A3B6F8D50B3FCE7D69AC55BDBC26D7 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = "<group>"; }; - 49A56D3DEACBD718BA26CC3AC3EC1F68 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 49B4816434FB935DF284754497A2BD3A /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = "<group>"; }; - 49EAB33DEDA451ECE220EC8AF4ACAA1A /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = "<group>"; }; - 49EF1C764B546A232C8925033E3F0C5C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 49C3ADC6C2C4519340F0B60372FFA46E /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = "<group>"; }; + 4A060F3AD7FF09042B53176DE4F6BE83 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = "<group>"; }; 4A0E338E3F9FE79FA92EFA49A9F69A57 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = "<group>"; }; + 4A2E59220BA4CF3ADCCEBFCF7E012A28 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = "<group>"; }; 4A393F8488B18D1536D2F02287AC8ECA /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = "<group>"; }; - 4A3D8CC5FFD182B2F6B93B6E2FD0EF10 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = "<group>"; }; - 4A4ECB2F7EA6F141F83A9A64A0F0C53D /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = "<group>"; }; - 4A617D4D33AEF921AB52206884C4AC07 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = "<group>"; }; + 4A3E2AF7B71E6955C3306EC63508E8A1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 4A5B84D8D191ADDAEECEB3851DFBC0F6 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = "<group>"; }; 4A65D79B71FF304B26CC65AE91E72C73 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = "<group>"; }; - 4A988470F4B29CE5B5BDBD075AB07AD5 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = "<group>"; }; + 4A997A07823FE6EF7EDD39E9C0C2A47D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = "<group>"; }; 4A9AA45C53DC651E33C82B0CED94DF2A /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = "<group>"; }; 4A9B05892173B8527974566E9A4CCE60 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = "<group>"; }; 4AA51B1BFE86323A2C6ACD6D95E5E6EF /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = "<group>"; }; - 4AAA202C801CE16AB694D62DA2603A7C /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = "<group>"; }; 4AAD5C30DAD4C5EB37A880FA003C77F1 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = "<group>"; }; - 4AC0D7F44F4D32A037596050EADFCB2A /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = "<group>"; }; - 4ACA231A5AF8AF7BDB90244762C19195 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = "<group>"; }; - 4AF32D081EB6E524CB3E39D7F94422EE /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = "<group>"; }; - 4B0A207F5DECC90BA9748FB44FE35C67 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = "<group>"; }; - 4B1CA8C2D400559E299CF2BA94A19268 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = "<group>"; }; + 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = "<group>"; }; + 4AC9046FC579AB3098D2E25E77291FDA /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = "<group>"; }; + 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = "<group>"; }; 4B2D7E43FE3D242C173192E4B29C7C53 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = "<group>"; }; - 4B38030C6457042B7E387FF284371FEA /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = "<group>"; }; 4B413219C8EFD22BCBABB018CCD1A790 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = "<group>"; }; - 4B437B82D8B38DC6D02A8693715AE253 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = "<group>"; }; + 4B43B1EA24ED075AF55FCD69F05A2398 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = "<group>"; }; 4B43F51A5F2BF1C0DE5C049B0B83F385 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = "<group>"; }; - 4B4D275C053B311AC8947C32C9F23697 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = "<group>"; }; 4B6E1CDA83E69E0B0606D6714E7C127F /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = "<group>"; }; 4B99F1BB9A0883D3DBBA6E8D1B3723F9 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = "<group>"; }; 4BA70FC21A5EAD3CD445F5B2FB389895 /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = "<group>"; }; 4BC46BC75E9FB785073AB403AED85863 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = "<group>"; }; 4BD8055150F383E0BD14DF2F2AAAC255 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = "<group>"; }; + 4BDA53501828E67B064CE59174B180E7 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = "<group>"; }; + 4BFC1547F97DE6C894000BF8E995FD4B /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = "<group>"; }; 4C01A812FB78D4ED8C9A4A20A5F17386 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = "<group>"; }; - 4C052440A08990251FE8C34ABE1A8110 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = "<group>"; }; 4C08D00A4D32EE9C330329164648195A /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = "<group>"; }; - 4C12648425553EA1F655E7D7C927E3C4 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = "<group>"; }; 4C1B737D6ACED98AC219B441356D8B69 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = "<group>"; }; 4C1DFB76D2A04133AF31E767C7B34973 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = "<group>"; }; 4C51737D911AA7D429A0EAAAEA91B08A /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = "<group>"; }; - 4C5A257EA1403422F1C7049818917BCB /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = "<group>"; }; 4C6C4FAE5AC01C6228E1DEE8D1D7642E /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = "<group>"; }; 4C9899F29C5C44523857D03C40AD583E /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = "<group>"; }; 4CA2CF9E9E5B72C55B713CB8F1E618C2 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = "<group>"; }; - 4CBBF971C05CEC8082948405150737D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 4D029270B92D120097A75C1B3664475B /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = "<group>"; }; - 4D0C7C37DB1566D69F8B271076F5A2EB /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = "<group>"; }; + 4CBCF12FDA5C1595B8125D84D561102E /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = "<group>"; }; + 4D044C0CFBC0C0821B5697ACDCF341F6 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = "<group>"; }; 4D1957EB80E04FA9CAFD53E047A2AB63 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = "<group>"; }; - 4D204EB057FCCCC304504A18638884AF /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = "<group>"; }; - 4D3D401F048CD0B2D3D20DEA6B94DF32 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = "<group>"; }; - 4D54BD1D2775DA26FAF4EC58342DC59B /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = "<group>"; }; + 4D1ED5503A25804AC17F6D80724CA290 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = "<group>"; }; + 4D20256C34296B182165D221419D1583 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = "<group>"; }; 4D5AAED53C93242320D9C9745B18095E /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = "<group>"; }; 4D63835C447BE94F7312B8F41FCF8F9E /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = "<group>"; }; + 4D63AF2B14E3601110E5B672A7F1379D /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = "<group>"; }; 4D6B86EE0471035A8A3457810B19E9CA /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = "<group>"; }; 4D78469224A31FF4998FBF1572479254 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = "<group>"; }; 4D7AC696022DBE83B7A382DB0BB9E3B5 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = "<group>"; }; - 4D7C49B84BD526A4C0D086192C1B76FB /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = "<group>"; }; + 4D8121F726CDAE6ADCD01AAC8172BAA9 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = "<group>"; }; + 4D8A7791A3B0A0EEDC802FFFE8A8DA8F /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = "<group>"; }; 4D9AF9F4D617C3D191A7755710F262C0 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = "<group>"; }; - 4DADCCB5ABE86FFBEB2A6AEE8FCA5959 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = "<group>"; }; - 4DAFCF05956B7A5E5240AEB63CCC16D7 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = "<group>"; }; - 4DBC53743AD8998637A0AF9E9D226DAD /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = "<group>"; }; - 4DE12EB18F60EB078834BDD2559DCD36 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = "<group>"; }; 4DFDEB74B14A09BB7A2CB49B451ADDD9 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = "<group>"; }; 4E0F7031B485AFA3CB77A34F11BB9B63 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = "<group>"; }; 4E387E9A45644C2A715A8254E353E53F /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = "<group>"; }; - 4E39D773243E62889778C6F995D48E88 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = "<group>"; }; 4E447142861A454EB90784A40F96FE18 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = "<group>"; }; - 4E5A6C4B35F1E9A3742289D9C5D441F7 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = "<group>"; }; + 4E4B781294FCC5535E344853261D102B /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = "<group>"; }; + 4E60F5AF0B10402EF09199C76684B61C /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = "<group>"; }; + 4E63113E3489FE47881A391D1384385D /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = "<group>"; }; 4E73DD428C053251E496A070FEE4D7D9 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = "<group>"; }; - 4E99A0DB12E82102F2DE919C00B00041 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = "<group>"; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4EBCFAF9789A05515D413DBD56D1F75B /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = "<group>"; }; 4EC49410B85855BFCABB034DE12E77CC /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = "<group>"; }; + 4ECC1133CD66CE037AC97303759C6DB0 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = "<group>"; }; 4EE560EEF8A1CB47F4F99B57FAE6174E /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = "<group>"; }; - 4EEE3FBCA4F3B5B6E24A0D8BA30C7F79 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = "<group>"; }; 4F04E64E8FF9D2C52B118013BC6D9A64 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = "<group>"; }; 4F15483934B6E08E8CEBE2CC5A1B465B /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = "<group>"; }; - 4F2020222F85CFE66C30A065187AEDDE /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = "<group>"; }; + 4F19EBA29103DC2448E841002CC11C7A /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = "<group>"; }; 4F3080E77E5BB8B52647E6EC7E3C8497 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = "<group>"; }; 4F308241786214F0EE80C61CA1F66623 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = "<group>"; }; - 4F351CE4D2108C412E825050B755F4A2 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = "<group>"; }; 4F3A22757CCF4CD86B5ABA167EC115F4 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = "<group>"; }; 4F4307BEF84378FA36AA378BE6573FBE /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = "<group>"; }; 4F4484D4F17FE49A7648C01E719C6E92 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = "<group>"; }; - 4F50F78B603073D4CCD13DD46ABA8B2E /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = "<group>"; }; + 4F47506F7D233C846DE592A73AA5D7A2 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = "<group>"; }; + 4F4BB708C72F52907ACD07FE64B773D5 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = "<group>"; }; + 4F672DB4D92F66DE84FD03E7D200DE65 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = "<group>"; }; 4F754BA97D31F81C0D2C840E3F713C40 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = "<group>"; }; - 4F910EE1A4DA7853B3533645D672CCE2 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = "<group>"; }; 4F9B0C29282F358A364C74AE8CADE12A /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = "<group>"; }; + 4FA86B460D2D7CF23574D4E10D10EF7A /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = "<group>"; }; + 4FA994CE366C65719695EB6F013ABD30 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = "<group>"; }; 4FC0A2E4BF079EB4CC2101010D18944C /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = "<group>"; }; + 4FC16D49BF9944D48937049011C40DDB /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = "<group>"; }; 4FC7C9D569FFD5217EA66C11E24A7BCE /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = "<group>"; }; + 4FD3C5F2BB3CAF7B49F02185D0568A7C /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = "<group>"; }; 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4FE0A388D1FAB6CE31BD44DD33632804 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = "<group>"; }; 4FF2260DF2EE76044A040F7CDB9D71C1 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = "<group>"; }; + 4FF2675301A1914717195CB49B661D97 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = "<group>"; }; 4FF837E921214E57FAC00A022F950067 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = "<group>"; }; - 5017B0B57226A96AB971E2D67B3EBB0E /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = "<group>"; }; - 501AA85736F8077BC8D0FA543BD8D1CC /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = "<group>"; }; + 4FFC168E8AAAFFC31E531B9F8EF58A2C /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = "<group>"; }; + 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = "<group>"; }; 501FB7ABD2FF16391752851CE4688092 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = "<group>"; }; + 503EA93552579AE3F0C775B13E3732AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 5048E399774757D1D19822C71300239E /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = "<group>"; }; + 505C5615C155C91CD06C7CF8DEF8CD78 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = "<group>"; }; + 50601530BA179B2CA3FA469BF548DC57 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = "<group>"; }; 5066B5D622B74FA829E74EC57A9A4A3D /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = "<group>"; }; - 5069F82DA01299977ECB909E9DEF164F /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 508931DD0D3167182E0C7EB5A34D206E /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = "<group>"; }; 508E3344833774F5D374394A9E2D6D68 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = "<group>"; }; + 50A93D4815E9A8F99BA52DDF7F226000 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = "<group>"; }; + 50B45D92C822BE77215EC7547CFF15C6 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = "<group>"; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50D042FE2D16C91036D259168ABF75F5 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = "<group>"; }; - 50E6ED3E1BF88E5E08B9B9EE5B8FF6C2 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = "<group>"; }; + 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = "<group>"; }; + 50D716E093D94B1B33877BCC9D547EB7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 50E233B1E5177E8DA53E63374F960DDF /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = "<group>"; }; + 50E502CB2B7A1EB5FBF82EFA8C9B927F /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = "<group>"; }; + 50E59B9EDF6B2622F3A594660EB04AF5 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = "<group>"; }; 50E7DE2231C4C01E96F2EF0256C11ABD /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = "<group>"; }; - 5110B9E4FD92BAE1ABF0FA39557E0037 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = "<group>"; }; - 51186CB66910B367DA5B0F86E043AE6C /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = "<group>"; }; + 50F4F2490052CAE69DE71527843602A5 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = "<group>"; }; + 50FD58598508C4D9DEF6F64BFFDE308E /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = "<group>"; }; 513AA54AD9587A3B06899E8AADC8E5D1 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = "<group>"; }; - 5147B173FBF4AE07E220CCCDA9C0D551 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = "<group>"; }; + 51441DAC4CCB0A6CE1CA2B3A3DFE8FFC /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = "<group>"; }; + 5144A3DB29D7509839A527B2C0690C0B /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = "<group>"; }; 516E8E98B631789DD4E1138D1F45C97A /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = "<group>"; }; - 5198D0DA048180F2B4B1ED366308BD4B /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 51A91662661DED53F35DE951BD775BF4 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = "<group>"; }; + 51A6B5727D6DBC4C0896F3F90277D0E3 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = "<group>"; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; 51B989233D2DCFB9B2D977F11E269CF3 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = "<group>"; }; - 51C13ACF4C333704044F230487F185C5 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = "<group>"; }; + 51BA4E67C19A7D7F0B629B19C1B227F2 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = "<group>"; }; 51C3E2CF4182E8EF20FA41FCE1B1359C /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = "<group>"; }; 51CCC35D452C44CE4E6354148EF5F188 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = "<group>"; }; - 51D103280379F139280B1760C31B0B51 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = "<group>"; }; 51D1146DC010B29D45DD7B30147F197D /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = "<group>"; }; - 51E59B35956E3FFBB857B4A547442403 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = "<group>"; }; - 51FA1E11B631E141216E9525FC620226 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = "<group>"; }; - 5205F507564DE7F6518EB49735BEEB0E /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = "<group>"; }; + 51F0795B53F3F7136750F1F4752176FD /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = "<group>"; }; + 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = "<group>"; }; 5222202571D23C90EC14FF4444E812AD /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = "<group>"; }; - 5225F56B29130ED55B17AD04AC192D42 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = "<group>"; }; + 524B0B734499A06C5A775B80572E1787 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = "<group>"; }; 52650D5184EB3D467B9553887EB46DAC /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = "<group>"; }; + 529C3029FA0D10D8FA86294F3CBAB092 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = "<group>"; }; + 52D02674CEFEA02DF36005B198EFE9FC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 52E15219291B4AD1CBB4041F5220B7E9 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = "<group>"; }; - 52EA19B187157B29F6D3FBFFF458D18F /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = "<group>"; }; - 52F227FBBDB7B39C62D537ED80137800 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = "<group>"; }; 52F9F955925687D141D53630BFEE5C36 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = "<group>"; }; - 531DC503CE497FEFFF6D249545B5C40D /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = "<group>"; }; - 531E1A693BA508D60B8ED475B73D6DB5 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = "<group>"; }; - 5334D0EE63C391DF789AD79EC20647FB /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = "<group>"; }; + 52FA14C797DD21BCB477C6135376D908 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = "<group>"; }; + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 53053026D8C22321912DFDD101F6F9F3 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = "<group>"; }; + 530DADB2FB61BD3E084E3AC0FA61255A /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = "<group>"; }; 5364F369762F2D9A787AA4C0E3A83302 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = "<group>"; }; 53651B34A56593ECD757F02DBF8481B3 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = "<group>"; }; + 53735EFB9F05CB52643324CC9137DE1A /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = "<group>"; }; + 53827A1BAA34745F5753731158F1E88D /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = "<group>"; }; 53874D6EBB1C2337463823F2596E32C1 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = "<group>"; }; 53A068B00CB30837397FF64FE68BEA95 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = "<group>"; }; - 53A953CAD946C0F09D2CF09241084311 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = "<group>"; }; - 53A96DF8044C623DB08981ED6E22EDAD /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = "<group>"; }; - 53B1C3603254F3E1558A984E76996BA6 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = "<group>"; }; - 53B744F59D1C04416D041480E8946D3E /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = "<group>"; }; - 53CD110FCD349863CA704AC151DEEAA3 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = "<group>"; }; - 53D1D015FAA87C1F89DCFE418908A9FD /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = "<group>"; }; + 53C2EA867FAAF4242F4816A6E06D4685 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = "<group>"; }; + 53F09EABC9DB13F31C94C4D730AD53D8 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = "<group>"; }; 53F1E50015EBD43CF4A44AC38C915425 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = "<group>"; }; - 53F28D711125B13F67868E8FBB13CAD2 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = "<group>"; }; 540F25F5C89E7F63205430278E6B3C42 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = "<group>"; }; 5423FE419658ABF1C4299BB4D59D4F88 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = "<group>"; }; - 54245F296835AF6CDF72895DD82B4148 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = "<group>"; }; - 542F48FF482072F96E81D5F11E172D6E /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = "<group>"; }; + 543203FB8D4208545E517A49207FDB26 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = "<group>"; }; 543DE3054E91774E4423D77DBBE6BD17 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = "<group>"; }; + 543EE479196945500F4F316FF197BD5A /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 54401F61C3357D1E96C80C18C4E2DED0 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = "<group>"; }; - 545DDB1511F7E1EB94975935ACFCB004 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 54895ED019669E05F7D101FC8F1DCDB6 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = "<group>"; }; - 548A65611B99CE2BB5D24D446CCA793C /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = "<group>"; }; + 546950BF37FA3C1CC3E6F29E4B25EB69 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = "<group>"; }; + 547E4D6E09F65BE8DEB5595A5D04DB00 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = "<group>"; }; 5491F32F8F60ED50CE3102C164314364 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = "<group>"; }; 549FE3EB49CE7968D8904A19CBB172AA /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = "<group>"; }; - 54AB5A27CF7AF667A90DE266F7CB8121 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = "<group>"; }; - 54BDD31F4BCD765222811E370F3F4CE8 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = "<group>"; }; + 54AA020BD3FF830AE950170EBEB58E8A /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = "<group>"; }; 54C30ED4D431E2395CC82CD4339BF167 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = "<group>"; }; 54C7FDF8AB0C24C4635437749CA79C62 /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = "<group>"; }; - 54E0AC7DA579910DBE058F2F7FD0BE37 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = "<group>"; }; - 54E6565DCEDC1F296DBC2C558B1CB935 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = "<group>"; }; 54EBC6948C77C9B0D5184C24CFE72E60 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = "<group>"; }; - 54FD41CE98D7D05B469DDDC770F2F8BC /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = "<group>"; }; - 5500E6F36870F3141E33609BD3C5966C /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = "<group>"; }; + 55285077E38ED492DD98E9A9AFB8EB33 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = "<group>"; }; 5539AD89AEA9861EF1B99D011E04E6CF /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = "<group>"; }; + 5540E9A88E41B5FBCBD645E6BE4B9B72 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = "<group>"; }; 5546A82EA9B16B9A917F4317F783C207 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = "<group>"; }; + 5550464D5561100A4BAB8AE0084BF335 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = "<group>"; }; + 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = "<group>"; }; 5565D0B0219F47A21C7CC94B6B3C3CD2 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = "<group>"; }; + 556767749DE24538CB02EBA61C2DAA2F /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = "<group>"; }; + 5597149807C5CD9062AF0D8023D0B074 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = "<group>"; }; 559974B33C84BD097B301DF7D8404708 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = "<group>"; }; 55B1763AB3FE5ED01B658F1181FBF7F5 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = "<group>"; }; 55B1C20B517E629D985B3B18258990B0 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = "<group>"; }; + 55D0A10204E528F27BA1071BD8E43D9C /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = "<group>"; }; 55DA2DD30D165E94C2C29486587D8067 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = "<group>"; }; + 55DC61064D7A4D14AA291832CD233B1F /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = "<group>"; }; 55E6B2F05DCEA24E835E98078C3E4C42 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = "<group>"; }; + 56008A9DB03796D3639D33CDA5BD9263 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = "<group>"; }; + 562584E82F2BA44F023797AC4AEF56C4 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = "<group>"; }; 562A1BC49C45FBEA1C44CF9D833ED9FE /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = "<group>"; }; - 56320EF8EF4F3C598F10A45A405D2110 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = "<group>"; }; + 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = "<group>"; }; 564F7C149A5455FCF310C4282FE2FF50 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; - 565B3AB90D3B33DFB09E81B36CFECE06 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = "<group>"; }; - 5665317E931B100A95C5273B3E7900E4 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = "<group>"; }; - 5668C85563C49F42A1762165DACDAD21 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = "<group>"; }; + 564FA813A54C5B41E4AA514B0CE1DB19 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = "<group>"; }; + 565BE9B8724E8F9DD645CFB25EFE6CA5 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = "<group>"; }; 566BDC3CA9E55B141F1F03BA37242126 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = "<group>"; }; + 569B2202C973C9A08DF9A19D4DEDE4B9 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = "<group>"; }; 56A3089E1AF3ED6EF31C8F1B27D7E3FA /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = "<group>"; }; 56ADD42358572A2B87D543D6BA6CA0FF /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = "<group>"; }; + 56C9B7B55742024335719A8E9ABAD44B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 56DFDE0F7096307BDD052E55BA03D153 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = "<group>"; }; + 56EFD8A78E58DE590D240B9A06419AED /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = "<group>"; }; 570029F8BCE61753E91796B10138DE8D /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = "<group>"; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 574CAC2BE1FDC0C3A64A41100E04D1B8 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = "<group>"; }; + 574D7400D4FA4995E1CA19A91291CB58 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = "<group>"; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; 57509420978B49C3330ECFF8B8EBF8E2 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = "<group>"; }; + 57533F6BD93D2DE4244B0735402B9DA4 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = "<group>"; }; 57784F65BD8985275C9A5F6E04C78FE7 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = "<group>"; }; - 578A5E424AA39BB8736B92C23E06C35A /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = "<group>"; }; + 579AB1CB9E07D1EC28F83A7FE86F2DD6 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 579DC6D5908AC81B1E3A4C952192D04B /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = "<group>"; }; - 57AA6F21612F4E776CC7A5A35C390674 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 57B17B59BF6207EF873CCDDD7D77F7B4 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = "<group>"; }; 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = "<group>"; }; + 57BC2564DE7D58D34C118892BB94ED29 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = "<group>"; }; 57BDF67B988839CC89CBE458C879E6B6 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = "<group>"; }; - 57D9339A80A2127F7E2DFFD905D9029B /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = "<group>"; }; 57DCDD7BF6C1987F005B2362584030CA /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = "<group>"; }; 57E1116AD4989C13E56247AB3EF0B0FA /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = "<group>"; }; - 57F656144F13E21F98EB5E66F96DCE3D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 57FE4AF464DCBE7EDA14ABEBF64561DF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 57EB8B51C0ACBDB44AFD9D3D36D858E1 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = "<group>"; }; + 57F565A0716A8A2504C090CBEAD20E1D /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = "<group>"; }; + 57FB57EB684658B26EF51C068CED7380 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = "<group>"; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 580D8B46FBFF0A60A8347D2B5B1BFA00 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = "<group>"; }; + 582B4B4EF40968FFBF3C53E67990F8E8 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = "<group>"; }; + 58351C11CCD5FF39C4071FB4205A6F18 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = "<group>"; }; 584322C35BFF6658B17DED225C26017F /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = "<group>"; }; - 584AD821C7438FC4E7DC0A8807F78FE4 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = "<group>"; }; 585929899B30C1025E4A709195FC4CEA /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = "<group>"; }; 5860181AF8CBDC4D25825FD085F35C71 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = "<group>"; }; - 586311FC297A3D12D5D9C2B3D70F25C6 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = "<group>"; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 58A7AA742BB72B9CC46855C6A063EB42 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = "<group>"; }; 58AFB9EF0F7EC114EBB0227EE16AF9BE /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = "<group>"; }; + 58BD6E5AED675450ABB68C160C6386CD /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = "<group>"; }; 58FA7CFB9960B64D469F5745D1A48216 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = "<group>"; }; - 59003C4A59E895A5DBB5AAA617BA5E72 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = "<group>"; }; + 59138562FB292D9BF6D6DCF80210A029 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = "<group>"; }; 592374A4AECA89B1BB68DE278A852A29 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = "<group>"; }; - 594720EC17C24E9C376C9161CABA61BC /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 59484F5AEE05BEDA82F47FAD83B29F58 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = "<group>"; }; - 59512F530EDCBAD83CE007ECA7A09A1D /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = "<group>"; }; + 5925DB433330BD08AA33FABBF4FCA52E /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = "<group>"; }; + 594C6F33F1EC10518B8B4A0F2B753591 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = "<group>"; }; + 5978EB2DC09C2C72478F6CEEE0A63978 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = "<group>"; }; + 5979A1FEA57DFC724A635015F53D1860 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = "<group>"; }; + 598B021AE50CDB012A9AFF42DF032658 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = "<group>"; }; + 598C6FCDFC1133042CCDACFFF06EBC6B /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = "<group>"; }; + 59915589514583DB857FDF711C887880 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = "<group>"; }; 599970E94039218125B53C62427803DD /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = "<group>"; }; 59B552994943BC4F3821FC44D6AA93A7 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = "<group>"; }; - 59CB52967B9B2F4C19B7E23E0D0BF179 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = "<group>"; }; + 59B84CA60CCBACB2094EC597E1D54171 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = "<group>"; }; 59D0AA3CB733B93E960AB827FF417B7B /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; 5A1A5C915BDC8D51571EE0E49CE01324 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = "<group>"; }; 5A2CE6670F1063CE769F4F38D99C6814 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = "<group>"; }; - 5A2F1E4070AF4AD5830BF74B0EAC6FC0 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = "<group>"; }; - 5A37ECECFF215A4E4752D225E775EE54 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = "<group>"; }; 5A4A6D9BE1A5F271A1EBB343B090BF4A /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = "<group>"; }; - 5A56E0999D905D918357F9A626E97294 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = "<group>"; }; - 5A695A3AA87E9E2133BEA229916153FD /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = "<group>"; }; - 5A9286098BE2AFF9C3096C39C51CC8AE /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = "<group>"; }; 5A9D28C1FE5235A48F4E83F0AA0C01AA /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = "<group>"; }; + 5AB135E598AEE7B5B14E3597613A98A4 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = "<group>"; }; + 5AC98D1BE9683B2CB2C454621F2280DD /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; }; + 5AD2B6D719ADA2E1D3B263FE4F910F46 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = "<group>"; }; 5AE3E2D34034CCBEFBE5A22102D9E078 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = "<group>"; }; + 5AEF694E046418F4A639846BBCA2C17F /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = "<group>"; }; 5AF0F6DED104EACE28E659E12F1F0166 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = "<group>"; }; 5AF33804C90B2F27596A938C6965F0D4 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = "<group>"; }; 5AFD5B0CD3DB6FE2ABBE27D0B45F4C5E /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = "<group>"; }; - 5AFDA65CBBC8F291193E176B64B63A3C /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = "<group>"; }; - 5B001CA7D16D8AEB2A6398B7C218AD5D /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = "<group>"; }; 5B07187600368D19AB68107BB7E39DED /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = "<group>"; }; - 5B1B4DA7525B57D92E6D3A7F25DC90B6 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = "<group>"; }; + 5B1951C1771CD2415AA7C45609EAD28E /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B3C34B03583AA3880C2B10C6A9AC96F /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = "<group>"; }; - 5B4127266B5EC6DD89FE1F94CCA4B6A1 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = "<group>"; }; - 5B4F226B18548F31137F52D5071D0332 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = "<group>"; }; + 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = "<group>"; }; + 5B413BE8228FDBB4B0C6C7C9FB61A6A3 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = "<group>"; }; + 5B4692F054A0876E2EE22CB02FCF1D54 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = "<group>"; }; 5B50AA58A65EE4E7957C395C893954CD /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = "<group>"; }; - 5B7856B64CF439D8990CFE0BD38F21BA /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = "<group>"; }; 5B78C2054BD401323DBE0D3FF2ACD19E /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = "<group>"; }; 5B8D5C7B5F859A2D090F83B0D396D2DA /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = "<group>"; }; + 5B9E1711916938B4550078E5CBE3AA79 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = "<group>"; }; 5BA0A22B2CF6460059F6EF22F8A6E81B /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = "<group>"; }; - 5BA2F82971CB6B4A0FB1D42C333FC510 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = "<group>"; }; + 5BAFBBE57DAE334A1168DBD0F4E64ACB /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = "<group>"; }; 5BC0AD4A9E6F7A208407E5570B8E8EE1 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = "<group>"; }; 5BC5712BF038099E2747B83FE45D7F50 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = "<group>"; }; 5BC6222422A5D872EBEC5AE4557AA1FF /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = "<group>"; }; 5BD8BE2EBFD0D1839043AD8540CA84EF /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = "<group>"; }; - 5BDC933DFE94D62C79CEE810609054AA /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = "<group>"; }; - 5BE8D2E5C05970C1FFCB00F4AC73D134 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5BE507CE36D4C90FBA38F2E85F6EAAA3 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = "<group>"; }; 5BECAE76A3B465BA23A1C66051C5F853 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = "<group>"; }; 5BFE7F1F6FA0BEA225AE855A9EEFA10B /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = "<group>"; }; 5C0381BB5E707395A18ECA335870AFC3 /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = "<group>"; }; @@ -7167,819 +7257,857 @@ 5C496112AB5D4B2E1ABBB90DB4AB235E /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = "<group>"; }; 5C582724293C833125C4A1A2AA4CE4FA /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = "<group>"; }; 5C5CFD76CBC6BBD47BCF0972E23E2004 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = "<group>"; }; - 5C66C8FC34C71543DA942E9B2E7A9EE8 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = "<group>"; }; 5C6CA8F62953BAEB0F8092434A7712E9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = "<group>"; }; 5C8CF24201B2DC334D3A02990C1D0DD5 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = "<group>"; }; 5C8EC08DA57FEC621D53E2C37A998546 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = "<group>"; }; 5CAB9B80CD17812C2F3043711D2987F9 /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = "<group>"; }; 5CAECBD8555470A7F074F6AFB206F146 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = "<group>"; }; - 5CB6A6C8D18E3110A5CD591E1E7E382F /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = "<group>"; }; + 5CC0F74BC3951272C9AE7D4668E950E9 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = "<group>"; }; 5CC38ADB2846AE34F45CA010EF842901 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = "<group>"; }; - 5CD59214E1DE8393CB0AF4AA12F4FFAD /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = "<group>"; }; - 5CE0B684D1BCA6EEDD82AD1128AEB955 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = "<group>"; }; + 5CDDDB2FC493FE58DBE223EE05AD05F4 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = "<group>"; }; 5D074A7A0BCD845F052E82477A409415 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = "<group>"; }; + 5D0933BD8EE387129928FBABEFA183BE /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5D0CEE1C56BB79DE0C00C3EC17045BA0 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = "<group>"; }; + 5D1098524967543792A0E135B7C05633 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = "<group>"; }; 5D25A04C7AECFBB3914686C7377373D8 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = "<group>"; }; - 5D3F9DFF7953D8FA3D73FDD58A4D6579 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5D2D1A48C5247A0B54FA16DBF05D106B /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = "<group>"; }; 5D4ECB528B2D76E0673537FA9E94FDCA /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = "<group>"; }; + 5D758ADE968A990B4698132F5A18CE57 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5D7B43E2AE0DA3E677F16D0D6ECBFCC8 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = "<group>"; }; - 5D93CFE720FC5F9E54794A51F911DDEF /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = "<group>"; }; - 5DA713A8AE2ECF4010B9F8F2D95C8971 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = "<group>"; }; 5DAE53859ED47C6A11187FF0D51E9DB7 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = "<group>"; }; - 5DB1CB7104EC36C7D721043229510EFF /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = "<group>"; }; + 5DAF4B359C47429B3B0D698854CA7E83 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = "<group>"; }; + 5DB50946D34C0843D5418E4DF571D536 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = "<group>"; }; 5DBDD8C26B34485DB619FCD221D039F0 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = "<group>"; }; - 5DD06B5D07354B1AE2ECE57824782241 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = "<group>"; }; 5DE64BDBE1D2294310795EF2666011F9 /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = "<group>"; }; 5DE8D35F978E4154DF11ED0D43CB1DFA /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = "<group>"; }; - 5DFD3C57B3BD3377FEF14E236D53E795 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = "<group>"; }; + 5DEBC18A46494601D218BB6CFF822423 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = "<group>"; }; 5E0085519BAEB9908A5E6217FD030B48 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = "<group>"; }; - 5E0D41D3C1308F1D00FB3F51F751B6DF /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = "<group>"; }; 5E110A3A64EA74F01229A6D8918954B7 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = "<group>"; }; - 5E14E803222896FFB5A5FD3579D2F497 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = "<group>"; }; 5E2315781F7CD76456E6007795F77ABC /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = "<group>"; }; 5E2825CBDB965A6FE1E73E9F2739870F /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = "<group>"; }; 5E360366BF27FDA8105101E74F33F934 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = "<group>"; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E4BEC03C02A6ED4B4E77A9D08060ABD /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = "<group>"; }; 5E5618EABF16B6BE7F3023CBED9FF456 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = "<group>"; }; + 5E79C9C256AF6B3FA26D8859642FD8E2 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = "<group>"; }; 5E7DDE91F9500DAA2030F5660BB183FF /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = "<group>"; }; - 5EB3F5F0FB4F5504EA197220EF0E89A5 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = "<group>"; }; + 5E9D3EBF1958D478F2E1A4516BF26487 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = "<group>"; }; 5EBD7D64F48D5A37CCB258F80F759C95 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = "<group>"; }; 5EC4F58B0DE2BB4762E39FC0B88447AC /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = "<group>"; }; 5ED497064532BFAA36428BAFCC9D5222 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = "<group>"; }; 5F27FBA792B86BAB2A7544FDF950B7AB /* bufferevent_ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_ssl.h; path = src/event2/bufferevent_ssl.h; sourceTree = "<group>"; }; 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = "<group>"; }; 5F3C161BE83097E80AB9684DB3F8A1CA /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = "<group>"; }; - 5F4113C049E565A753E96474638C645F /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = "<group>"; }; 5F553972880C3A400C12E0D3D21C1A6E /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = "<group>"; }; - 5F61EA0F96EAB1BD9DD7607D35EAF450 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = "<group>"; }; - 5F723712A73CEB0A2EAFBF083088B50C /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = "<group>"; }; - 5F77C74FD6C937AC517FC100AC8913EA /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = "<group>"; }; 5F7B6D673F33A2DD3BD8ED538388A839 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = "<group>"; }; - 5F8AF113A509813E95166E06F0CECA07 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = "<group>"; }; 5F91AB395D1656F85C58279DB4859FD9 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = "<group>"; }; - 5F985C910FAE0FE1BAA10A83557C1054 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5FA06D199CC04C071D159F75EEB0F8D1 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = "<group>"; }; - 5FCB72C959DB390BB52DBF99270459F7 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = "<group>"; }; - 5FD992436AAB1A770C9940AE43E0685D /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = "<group>"; }; - 5FEFC3571A6FD5B34B0ACFE04575228A /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = "<group>"; }; + 5FD707FAB446B9FD7708C85ADB7EEE19 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = "<group>"; }; 5FFC7BEC01126D2D45B723A922A686D7 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; - 600F83F094161DCB11ACBA732FCFE8D1 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = "<group>"; }; + 600E11526FC1B31D3900246187123E89 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = "<group>"; }; 60223630A540490757C88CD4BC763CE9 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = "<group>"; }; - 603AB881836871206A2C963F81B7E6D8 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = "<group>"; }; 60449B27A12259B39C496269C8EFCFAD /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = "<group>"; }; + 60452327D46CD26998CD827F6F8E7B21 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = "<group>"; }; 604670516571B225E964B9ABE7EB5968 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = "<group>"; }; + 604983AC2EFDD2D9B0108CF938E38A58 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = "<group>"; }; + 6049C82BC2C47603E9076739B55CF121 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = "<group>"; }; 604F918E26DCE54BC4597CCF44A5589F /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = "<group>"; }; 60550095E577D0A98614076646C46E63 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = "<group>"; }; + 60635D6B0CBD0F7C59C17DF1470E9A88 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = "<group>"; }; 6085F2A7F13F2B19547527A44D7198E9 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = "<group>"; }; + 608DB5CAABECC13DA111E0248582A04C /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = "<group>"; }; 60C29C33923424EA722B44C2EEEF50A4 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = "<group>"; }; + 60C5527B609F93E18346725FD1B1F454 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = "<group>"; }; + 60FBFC75084DECB3CEC5950D42179801 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = "<group>"; }; 60FF7FD7528AEF1B48986584185A487A /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = "<group>"; }; 6103A99149FC9381E854472556E91AC6 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = "<group>"; }; + 6109228AD003D537CE60FBA075433CAB /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = "<group>"; }; 6129E1B1B4AFCC8CC28309986C0952DA /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = "<group>"; }; 61383164C8977EA49DC60163A8512601 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = "<group>"; }; - 6174B53535E3C2D7F3A81148A70C18C9 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = "<group>"; }; - 61B1B88F486C629CDA3174F191E86CB5 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = "<group>"; }; + 617B59A4E91152675FA15196E979E7D4 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = "<group>"; }; + 61A59992915560BF800EF136C199BE56 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = "<group>"; }; + 61A712C2DBA1BA55EA32DD1DE3CECA40 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = "<group>"; }; 61B88246C4A900BA197443CAB45F14FE /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = "<group>"; }; 61B997809B2EF78B20C8B716EB9FC9C9 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = "<group>"; }; 61C2419C4E20F84041A371C056FDD39B /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = "<group>"; }; 61C2992A91BCC973E8283FE16D351969 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = "<group>"; }; - 61D33EC39F8A38E08EF5019D147D8062 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = "<group>"; }; - 6210D07A896201E57DE39B266F754E6E /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = "<group>"; }; 621281BA3ACA98DDEE4378BC990EEF36 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = "<group>"; }; - 621760E57ABAA1008C332FB653081A9F /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = "<group>"; }; - 6233BFE6CE44F90A1D9F3C0D0B3F4D68 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = "<group>"; }; - 624354EAD040C154C25AF8A3B25D7F36 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = "<group>"; }; 626AD4468A7B3178C7FB17065BF68665 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = "<group>"; }; 627254BAAADA6D360990561CA2616E52 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = "<group>"; }; - 6294BE257860FFCCFBBCAB4C30B7A3EF /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = "<group>"; }; - 62992206A392D504DB2D295AA2DA5443 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = "<group>"; }; - 62A34B35C1A364C4C3B805970035DF08 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = "<group>"; }; - 62E3F1CA2AF2B2798436C6CE66C9B4CF /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = "<group>"; }; - 62E62EC5384FBED8735A65903855A9CA /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = "<group>"; }; - 62EE3DA6C710D0E10B6C47CF18F77326 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = "<group>"; }; - 630AE913DA165FDB10106D8C1CD76053 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = "<group>"; }; + 62AA18061B5817E5FE1A408600036362 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = "<group>"; }; + 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = "<group>"; }; + 62BC3E74BA827A2EEF3D1A1840C389C1 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = "<group>"; }; + 63105F52D965E142E96F80DC3CF4FC18 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = "<group>"; }; 631CC48B9CD6ECAE17C232840A63B4F9 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = "<group>"; }; - 6336FB675C2D1B8F98D5EB73A15BA5E3 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = "<group>"; }; + 633A906CE55E133E541EECD104AA1625 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = "<group>"; }; 633B4F7B73EE964A790E6CF1C2682615 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = "<group>"; }; - 635C9713D64FD7E54AD46609A9F6BB79 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = "<group>"; }; + 635C8A490489A52B4F3B315065E607AC /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 635EEB1EA7D3D21225D4A9D0833916C4 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = "<group>"; }; - 6362B6944C8392DDD2BC93AEA5C91972 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = "<group>"; }; 63684F773F68086B7AFAAF0A6C831AFB /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = "<group>"; }; - 638682DE935CD84BD611ACB71BC7C1D9 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = "<group>"; }; - 63940262A1C022F64E735F4B35879C0C /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = "<group>"; }; - 6394E86913C00F1D38779DA1EF4CE70A /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = "<group>"; }; - 63AF042D109CBE04A5922843DED1D811 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = "<group>"; }; + 63A1581D25708EBDFC5772BEF67E7B5B /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = "<group>"; }; + 63A4E654F582CBCE2393A56FB247C076 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = "<group>"; }; 63DA260ADC6E41432919E15F5F76D429 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = "<group>"; }; - 63EC225EBF846663B501B4250033C942 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = "<group>"; }; 63F83E6A25D2FF254B453C191F615310 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = "<group>"; }; 64013498C54D3FDC3F3E3051E481C81E /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = "<group>"; }; - 640F365C9C39E33F7051B6B2E8AABF04 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = "<group>"; }; 6414F9BABB4450A280B3232696EEECE0 /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = "<group>"; }; - 641D8F8FA1DD9B786D2ACCE319365B95 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = "<group>"; }; + 6416EDE9EE7CA2789EEBA998ED56CFDB /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = "<group>"; }; 64415099B48A04C24817DF97120535EF /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = "<group>"; }; - 644A48572AE4E2E8E7D7A3D898C23FBA /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = "<group>"; }; 647D10C24327EA02C38729D823266A25 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = "<group>"; }; - 6488D764E9CC6A04FCB067377339CA78 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = "<group>"; }; - 64A7ACF5EA2DC554B6551D507DF09BA1 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = "<group>"; }; 64AC14C9AE85CBB22EC70D57BF398417 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = "<group>"; }; 64B2B7D58EA6528FDE8E517CADDC63A1 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = "<group>"; }; 64BBBE91D0AF7836061BF59939412153 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = "<group>"; }; 64CFFDEDD3C1D8F8CCAC0F4DF2509B1C /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = "<group>"; }; + 64D2B610AE30090AFFD9BBDEDEF1E802 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = "<group>"; }; 64D59E994DDC3D265A32ED3A9AB7ACA2 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = "<group>"; }; + 64EAAA7D3E3B9EA2C22622919AB96085 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = "<group>"; }; + 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = "<group>"; }; 64F4AD60856C32501C6F0BB036AE666A /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = "<group>"; }; 64F5D452DBBF0D16A4B835ADC487D71C /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = "<group>"; }; 64F6B673866A97E956ECA208E93D2EE5 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = "<group>"; }; - 6505D65D1332B88D851A39BF7B5F81A5 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = "<group>"; }; 6506E90DBEE865CCE7B43373CCE642E2 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = "<group>"; }; - 6509F99A2B26E0DC23794301BE53B4AA /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = "<group>"; }; - 650D37CD871A2C3CD4502DF5708EDDFA /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = "<group>"; }; - 651256C1092CCF9365A098FE18AD3EF5 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = "<group>"; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6533886934CACBA43208AC7E656462B9 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = "<group>"; }; 65443F9818534C95F2D33F0A8F23D574 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = "<group>"; }; + 65512EE3A272FEA187D7F68BB2CBF52A /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = "<group>"; }; + 6571DF5436311985C9F0ECDD2F9B822D /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = "<group>"; }; + 658414AB81E9A68B93362D1497A8B2E4 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = "<group>"; }; 6588555BE590BBE9C4C708DE251C5267 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = "<group>"; }; - 6592B5D56B3CC715C8E023D48FCBE105 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = "<group>"; }; 6599B27F5A6D52B23377F0CF4891290F /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = "<group>"; }; - 659B8AFFFD1878996F6262A0F1A9FCF7 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = "<group>"; }; - 65A57FCF27A46E1F4C2BE0BE2908E578 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = "<group>"; }; 65B0BB45DB99449B9171F3AE48FF2758 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = "<group>"; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65DF166FE6429A2114841E65BA1C4A73 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = "<group>"; }; + 65E4440EE31CB8F998754FC55591F20A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 65EAC4A06F298959AC7D59F15810CB5C /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = "<group>"; }; - 661C8E055C8F70FAAA2304A21FEBBFBD /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6625698EFE2D0EDAB5A9C8BE25A6E35D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 65F10B2813F3BB5491C67117D19BEB2D /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = "<group>"; }; + 65F2F83421140FB0FBCE7718EEB0CFE1 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = "<group>"; }; + 6602B30C16434EE37FC3C9EF28A5CFC4 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = "<group>"; }; 663730D6B97993DE05DE56E1E64A85A9 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = "<group>"; }; - 66493AEC9C83D25C8F263833D43F409C /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = "<group>"; }; + 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = "<group>"; }; 66519C9B614BF6B46A85952E3000445C /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = "<group>"; }; - 66590469C3C0AF368D9F0433F6ACA4A6 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = "<group>"; }; 6677EEAD784A5DB213F7C91D9A820EDA /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = "<group>"; }; - 66D11326AF5E22AD70B87CEFA2511021 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = "<group>"; }; + 669FFDF2DE29C85E089E798B671D17B3 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = "<group>"; }; 66E373EE07F1EA890C05FA090F690DCB /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = "<group>"; }; - 66E8FCE1223E014EC5357983B6CDC36E /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = "<group>"; }; - 66EEF92B99D35E7BBFB4C8F45B1A844F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 66F22EA9D4C27DF77911F6FE1C1B0FE0 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = "<group>"; }; 66FDE46C73DBE3989EF7943C600233A1 /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = "<group>"; }; - 67128EB79907D7A2D1BE62C9A068CCB3 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = "<group>"; }; + 670F0EBAC9E68A6388175F2D2C39F1E9 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = "<group>"; }; + 671E06E02DB17731102E25AA92C08C8D /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 67229F49490CA9AC27DAFA4CEC3A419E /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = "<group>"; }; 6725480D5B0F92AFE93DD41620842F0A /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = "<group>"; }; + 672661EC0765FB80ED5E2083213F3A98 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = "<group>"; }; 674B6F2710F83FD4E8D65327654F702A /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = "<group>"; }; 675D9C2D56362FEDC42624B8F23A4D31 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = "<group>"; }; - 67692094518366EFF88C1CAB1E920E65 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = "<group>"; }; + 676AC51213B44BDACA97E33DA530D6A8 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = "<group>"; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 677328F64B117500B16665C480D5EEC0 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = "<group>"; }; - 677CE3ED066C849D0096475252BBFCE4 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = "<group>"; }; - 678B926E8D5136C3A9D858A685BC5FBF /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = "<group>"; }; - 67DD05B1B7F2C6C26D127E8A1845FC5D /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = "<group>"; }; - 67E42338FFC645BC4772588D7419BD56 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = "<group>"; }; - 68323286233BC90E4D00487AE01003BF /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = "<group>"; }; + 678513A72FA0C2B0C590EF9F5FD5995E /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = "<group>"; }; + 67925FC22407721697D6FED16443727F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = "<group>"; }; + 67AE65B8CE4FC27E0BC463F86E0F5521 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = "<group>"; }; + 67BD8F0F05A2995677B644E6C936AA2D /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = "<group>"; }; + 67DEC3CEBDF826564BC379BD72DAB258 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = "<group>"; }; 6841A78971D85A941CD8351ECDA7F450 /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = "<group>"; }; - 6842555D6F2AF5CFA9E7007E2D3A78B8 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = "<group>"; }; 685E1F09883F281A395F2B2B7981B173 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = "<group>"; }; - 687220EBC07C9E6FAC205C6519208563 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = "<group>"; }; 6878A8C96A8BE10ACFCB2F39236042DF /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = "<group>"; }; 689EADB3E0A7641AC1A34081430CEBCE /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = "<group>"; }; - 68A81ED96AF7133ACD2DFDF9C9433C37 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = "<group>"; }; 68B4093DAE4627388150890D8FF25FA3 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = "<group>"; }; - 68B4E0C2B52D4FE00EABDB34434D232F /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = "<group>"; }; - 68BAAD1869DA2A408565E9D274C609F1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 68C024CB1EEE85D32F026EB14C85AAAA /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = "<group>"; }; - 68F4E1BF2AEADA8C7C6F2FFFA5E56BBD /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = "<group>"; }; - 68FF22655FC4BFBC4E4778A6155ECCC8 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = "<group>"; }; + 69057191801F0C641AB39F2B2D45F311 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = "<group>"; }; 69227533CC8398DB1B4E51347D096821 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = "<group>"; }; + 69257681AA1662D7FD8A126E8B78350D /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = "<group>"; }; 692DAA201755341940CB790FB309EF0C /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = "<group>"; }; 69350944D9C493AFF7281E61F33B7D24 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = "<group>"; }; - 6937D064C749EA2BD80D9E075CB49CC1 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = "<group>"; }; 69393C4B61ED5D6D0893FFA459C5B1B7 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = "<group>"; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 69447CBD78985E97A5634DC4BEB3B679 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = "<group>"; }; + 694C5135432E74476DD1273FCAA5C815 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 694E9D704A4770B63763819605BA1D5D /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = "<group>"; }; - 695A6927BDDA54F68A63EC4B650279B9 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = "<group>"; }; - 695E8FE81F6E84CC91ED24E33B1B409F /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = "<group>"; }; 6960F072A24C584FEC6810FFC1519A2C /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = "<group>"; }; - 697A1FE1BC8E72A3D866D5A6C7558CB3 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = "<group>"; }; + 696B1C6494D9F35BC815B814521219DF /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = "<group>"; }; + 69735FAF2EE9D19F875455375BED5E67 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = "<group>"; }; 698C573E2A3AE5D9A2AF05020316C4C4 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = "<group>"; }; - 69AE2BC1D2DCEB0F8F2A47F3D7F10F2C /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = "<group>"; }; 69C1B69EEB6282E2E6C1AD4598BB2865 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = "<group>"; }; + 69C9C6813386AF2B515E56A11F952C21 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = "<group>"; }; 69D2D6BB90F5AC5504598F63D17D69C6 /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = "<group>"; }; 69D6106A77F649DDCAE006388446B24D /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = "<group>"; }; 69D6226D851FB99D77632AE7B571420A /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = "<group>"; }; - 69D91E3D9873D84638E8E8D1A52A101B /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = "<group>"; }; + 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = "<group>"; }; + 6A01959049459F6180CDF12E9BF2E794 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = "<group>"; }; + 6A13372A97961B2FCEE907AF7C06F9D8 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = "<group>"; }; 6A2AC03835AA9B61E4698BDD1F320751 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = "<group>"; }; - 6A3986572B3729A0FDF958E4A2C8282E /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = "<group>"; }; + 6A43995AA71DF326C4A3EB8629602CCD /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = "<group>"; }; + 6A53285CF74D6D28B879D3E7A6A7497A /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = "<group>"; }; 6A5E8F5770ECA8C93F6E646F3C58A5F0 /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = "<group>"; }; - 6A5FA9017C33745EB9B935A35633FADD /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = "<group>"; }; 6AAA25DC9C51F2D3F1B5D1BBE81DD06D /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = "<group>"; }; 6ACE1A5C881DA3FEA888E20C4DFC8C85 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = "<group>"; }; - 6AD4758068A2DA90FF3E153F456A00FB /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = "<group>"; }; + 6AF8B876AEED4AC249E46457AF985862 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = "<group>"; }; 6B11D89E535467E2748B61012D5764D1 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = "<group>"; }; - 6B1D5ACB4E714B2E52F83C05C0217AF2 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = "<group>"; }; - 6B55EEE00637AB2BB164C5B985CAE324 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = "<group>"; }; - 6B623689BA218C0D34E963D0C41B7614 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = "<group>"; }; + 6B2BDC1075053600BB48E4327B127095 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = "<group>"; }; 6B62D7C50D2225FDE4B7E2EC357C7E69 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = "<group>"; }; - 6B75DA3423AA1866F8885F8B7BD7956A /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = "<group>"; }; + 6B7EFA3C553FFA3C0E411FD9481118B5 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = "<group>"; }; 6B845AD51C1A4A59B02E3A86BD260478 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = "<group>"; }; + 6B89925743BFA191F4C929424A14E0F0 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = "<group>"; }; 6B8ED577628803471AA06F17FEBF0EF9 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = "<group>"; }; 6BC003F5EF2439B669F24315D544E30A /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = "<group>"; }; - 6BC5891678C02779436A1B9553BFEAAF /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = "<group>"; }; - 6BE812F7876E0DE2BF9725ACF8E93D5E /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = "<group>"; }; - 6BE8B85B9E36A416752CDE135629619D /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = "<group>"; }; - 6BF94CCA9657DA7694ED28B399E68790 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6BC1449B2CD4362D1CA4046B1D8AA71C /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = "<group>"; }; + 6C11B76031D69F7EBD8459372BAA8DCC /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = "<group>"; }; 6C1D8002FB0B3678187844345027A132 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = "<group>"; }; 6C24B6D79D95254053CCA03B2811EAF6 /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = "<group>"; }; - 6C2BB83A4306C3912617A2AE64EDD900 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = "<group>"; }; 6C3115F7E0E2ABB73E131A40586F98AD /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = "<group>"; }; - 6C5B51263BD350B31BF3EF3D7C1C316A /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = "<group>"; }; + 6C4F9E3BF3C9734CFD410F10F8CFBFE9 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = "<group>"; }; + 6C5624E0E20A589ECAA03A7C6C028BDF /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = "<group>"; }; + 6C56F7C925156EE85B46657168DA3106 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = "<group>"; }; 6C5F90E8404AF111F1776A63E62A4743 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = "<group>"; }; 6C6CBC0C1CB06C8DAD383CE6F3FDE6E4 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = "<group>"; }; 6C75D136A6F7AA5D96443C3B6FA382D1 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = "<group>"; }; + 6C86C06DD06CDAB3A0E9C5D8B39F53D1 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = "<group>"; }; + 6C8750C9EFE82EDFF67C7A02C297E56F /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = "<group>"; }; 6C89113B89093908E37CEA5C8D7EB5B7 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = "<group>"; }; - 6CA0A23C08C58D1DCA329D63905CF3F8 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = "<group>"; }; + 6CB305FB16C6980DFAEF89A3008ACF2E /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = "<group>"; }; 6CB6A8BB8C8B864596CF0473DFD589CA /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = "<group>"; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6CC47D4CC2D06131056A2C2AF3876DFD /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = "<group>"; }; - 6CC4950F11A5BAE422A01CD661DDE700 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = "<group>"; }; - 6CD371BC3A1F8EBA19BFB073E235E096 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = "<group>"; }; + 6CCE025922FB4CA88EB49C8B913D1801 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = "<group>"; }; 6CD3C566B079AE99E3FB83982AF9C545 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = "<group>"; }; - 6D1429B3ACD01380B8593A079FEF40D5 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = "<group>"; }; + 6CDC0EB331DB0D4FA5F4673557464E8B /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = "<group>"; }; 6D281EDC9696B7F44BEA76E706891017 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = "<group>"; }; - 6D3103FC5FF8511D79937ACF821502A3 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = "<group>"; }; - 6D401696460DC234C4D3BC0A6A16DA8C /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = "<group>"; }; + 6D45484A1A289F44F405566817D9650B /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = "<group>"; }; 6D5435566FD9029F4DF3D7B66E556287 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = "<group>"; }; 6D58017FD68E21AD1CB0739DE13EB5F3 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = "<group>"; }; - 6D791AE312E93DF3F3AFD4C628799188 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = "<group>"; }; - 6DC8CA7F5DB43986C39104FF54E12677 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = "<group>"; }; + 6D6FD24549CFD1B0EDFFEDBE798C54C9 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = "<group>"; }; + 6D89DE4A9E5689C45C23744162FF7B0D /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = "<group>"; }; + 6D91F1C7FC160F085A0887B9A504B834 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = "<group>"; }; + 6D9CB1B65131C59EBB47BC1727E119BE /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = "<group>"; }; + 6DAA73BB8821C72D48536DF5F9AF61C2 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = "<group>"; }; + 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = "<group>"; }; + 6DD091C6F83EE0CD038105910C0ADDFD /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = "<group>"; }; 6DF1748AFE5AC4DDAC49DE337A96BBA0 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = "<group>"; }; - 6DFB9FD5D108FAAA25D77ED39AF86899 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = "<group>"; }; + 6E212ED79BB2DBDB1AC098B2D414E584 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = "<group>"; }; 6E26D4A9819C02B1477264B691BBB58A /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = "<group>"; }; + 6E64AFA5C6D9BA5AD3C6FE804F1376F2 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = "<group>"; }; 6E6A17F744A234DBBCFEF2BF3E73F956 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = "<group>"; }; - 6E79F14C3EE107BE312CCCF91A81F721 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = "<group>"; }; - 6E7A9A45C06D2CC6E7DD1085FCC88AA5 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = "<group>"; }; - 6E8E63937BF12BB805261FDECD7115A4 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = "<group>"; }; - 6E9382D2335E9D169ADEFF0B624FECC6 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = "<group>"; }; + 6E82A255197AB2A178DF55469A085C92 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = "<group>"; }; 6E9D40AEF01605DA865536802BF2E39A /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = "<group>"; }; - 6ECB8F518E3152C17333DA9EC01844D0 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = "<group>"; }; + 6EAFFD70428079BCAC361B34C85BE3B6 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = "<group>"; }; + 6EB58EEC2B6F73BEA176EED8631D3D8B /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6ED941F53DF92721599437932A10C44C /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = "<group>"; }; 6ED9667598D8EA6FD3FDEE12FA763DAB /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = "<group>"; }; 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = "<group>"; }; 6EE46CEB784AD359F0AF1363567F189B /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = "<group>"; }; + 6EF267CDF7C5FA740D80DCCE1093F7B7 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = "<group>"; }; 6F0F4B7419A0A8797B365B553C26DDF5 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = "<group>"; }; 6F3129C9A17E6ABFC260135095287CC1 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = "<group>"; }; - 6F32A192E130D4885BD8AAAACE4CF2D1 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = "<group>"; }; - 6F68779B9EFBFA5B435E339716B3EFC5 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = "<group>"; }; + 6F327DF5D1EF9193E97A40C31E991E13 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = "<group>"; }; + 6F35E6510C4EDF9E7C2CC215DC47AD10 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = "<group>"; }; 6F6988F2F1099FE226606BFA0B639416 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = "<group>"; }; + 6F6BDE235AC6D6B65B136696A1278875 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = "<group>"; }; 6F767B24439339E2DBC2EDBD71881066 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = "<group>"; }; - 6F8CDB3CB84B4918F82BCE04073C480B /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = "<group>"; }; 6F9B69BBFFB0947546185F7519469C1F /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = "<group>"; }; - 6FDA4EDE4B25D9708BBC736A4F655E23 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = "<group>"; }; + 6FBEC66F0A4DAC6123D0B270954B7004 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = "<group>"; }; + 6FC0D0166FB2595C25A22DF7B58C4BA4 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = "<group>"; }; 6FDD6EA6431F87023A34C67F0F2AE41B /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = "<group>"; }; + 6FE28F16D50478462D0AEE7BF714D884 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = "<group>"; }; + 6FFB52B3033BBB7AE6287ED693E36B0A /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = "<group>"; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6FFBC11ADF2C10BD3FF998B81FA7DDE3 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = "<group>"; }; + 70061EAFA4A32A9FB6554029E9BBFBE1 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = "<group>"; }; + 7007E718875B8F5572CFEFC35B2EFF4B /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = "<group>"; }; 7024B63B6A0592729A9DBFFA7058446D /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = "<group>"; }; - 7030118430C80140E88194810A2CEA5B /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = "<group>"; }; 70687A480EF3D6C11ABA886F780E9520 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = "<group>"; }; 707B91034B57295DCBBE33F9700D9059 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = "<group>"; }; - 708124D377851987935E0BF6BC3868F9 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = "<group>"; }; + 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = "<group>"; }; + 70953D120538AAD374CEED481B327482 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = "<group>"; }; 70978B3A123157C126BAFE83BDBFF4A3 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = "<group>"; }; - 7098AE63B044F73A96988D1642E4D853 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = "<group>"; }; 70AC7C668181E9A8FEBB9A18B34ABC05 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = "<group>"; }; - 70C9A99E9FF2B23FF14FEF60FF1BFCFB /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = "<group>"; }; - 70CF7B10E411379B8A9B9B282F9F0E69 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = "<group>"; }; + 70C1D1FB6C7ABB76EFBA9EA6555779B9 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = "<group>"; }; 70D5D57246C4A8D93F5E3E5F81118E82 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = "<group>"; }; 70EB5207D74CBEE1C7F7A1F94CB901FD /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = "<group>"; }; + 70FDFC2CE9916A1C39912D2D86454292 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = "<group>"; }; + 710B3241F8E7A3841B4E7BFC4FE094BB /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = "<group>"; }; 7120A386D905D0ABD4459D5329E0B215 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = "<group>"; }; + 7122B0301CE97FCD1569C75445060E4F /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = "<group>"; }; 71261B3A5522A3D92F1BA844EA476BB7 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = "<group>"; }; - 718F0A5747B5FF095A3A0C2CCCA85379 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = "<group>"; }; + 71265F598C7E83D4369BFDDC2E80304E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = "<group>"; }; + 7139D5968A6AC023AF37F861DE93F83D /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = "<group>"; }; + 7165422E905D316EE0E45C1A6C16A45A /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7181B076C72B5D8B4BAB9CA9A56A536E /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = "<group>"; }; + 7190B98479467AC89F1225BBA3158917 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = "<group>"; }; + 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = "<group>"; }; + 71B79A38172EF9EE71FB0A05E099512E /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = "<group>"; }; + 71BA7B037466AF872EABED21FFCA4F3D /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = "<group>"; }; + 71BD46623AC3B0A68515B1DFAF4ECABD /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = "<group>"; }; + 71BDCF30F98EA76B27C11322BBFACB3F /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = "<group>"; }; 71BF86901E1FB0422F9D11070AE00357 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = "<group>"; }; - 71D962B450E7072857F024FBE0810CD0 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = "<group>"; }; + 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = "<group>"; }; + 71E63E99A20695BB9EE32555A25813A6 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = "<group>"; }; 71EE2CEC574397A082D8CD6DFFA6D1E4 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = "<group>"; }; 7204FDCF5AD47F53957D0A7F12871600 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = "<group>"; }; 720D21980C4FD7A27028A93A4AB159A8 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = "<group>"; }; - 7211C45E379C3DF4CB75612D0FCBEB6D /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = "<group>"; }; + 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = "<group>"; }; 722F3624449979188DD78BB8102CAA1E /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = "<group>"; }; - 7232E249FE89B18F30E4C70938C4D1EE /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = "<group>"; }; - 72446B354D5BD5E6C67A34FFA3A5735E /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = "<group>"; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72652FB87216EE64A212090C602F3FD8 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = "<group>"; }; 7275F5DA65E28AFA745D1F5F25FF0B08 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = "<group>"; }; 727CEE911D72F12D992FC84DFE6C7E90 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = "<group>"; }; - 728156DF3EEBC775292D8814D17E8D48 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = "<group>"; }; - 7284DD10BA2F5B0711D6D13E2242EB83 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = "<group>"; }; 72976667D86BECB0A3BC6D852C72BC66 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = "<group>"; }; 72ADF759622DF370A2C32EDEA6407D22 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = "<group>"; }; + 72D348AD963FD80AA19656A4C004FAC7 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = "<group>"; }; + 72D80AB440DC034942A6E7653C1A9787 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = "<group>"; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 72E407D70F10CC8ADED44E16BD591EA9 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = "<group>"; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7309E915DE439E96A9E58CAE1E960EFE /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = "<group>"; }; - 730EDD9E1FC8A1388C7167F75A186D6D /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = "<group>"; }; + 72E71855F5E7A8418726894F59E554B8 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = "<group>"; }; 7311E78AF7B80A4C46C95CE5F0DD9584 /* opensslconf-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-x86_64.h"; path = "ios/include/openssl/opensslconf-x86_64.h"; sourceTree = "<group>"; }; - 732BF9E3C66AA7950161168B32B4FE63 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = "<group>"; }; 732F426137A71CDED017B2E603514755 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = "<group>"; }; - 7337DCFAD82B5FAECF100A4D20AA7CFF /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = "<group>"; }; - 73470A8CA74DF138D1D5F0C11B70C4AF /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = "<group>"; }; - 735297AC68B26100B5A9CDFE7D2204D3 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = "<group>"; }; 7353A26E1FB111644BA6132B3397E015 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = "<group>"; }; 7393C885084D8F55B3DBAFF57F2E73DC /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = "<group>"; }; - 73A1A47BA2AAE5E8122BE06317B1CF8B /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = "<group>"; }; + 739785CACCCA66F5001FDDF9D2E43501 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = "<group>"; }; 73B2E6604FDC38ABECCF787CA13EB2A3 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = "<group>"; }; - 73E5DC544B99BF8722B3F8E29A7BA559 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 73E7D4E693B09406B129387AF3530146 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = "<group>"; }; + 73F37B8C8F67C39C1519D66CD4296655 /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7404418532E9BD80BBB9405C10211C52 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = "<group>"; }; - 741411DDA613FED7DEB981FDFF1768FC /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = "<group>"; }; + 740A733248063787C4E6381A9A9E6388 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = "<group>"; }; 74143D9BEC871DB962F613209A3A8AE5 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = "<group>"; }; 7431ED67A86167741F47DFE663FFC583 /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = "<group>"; }; - 74611F0FF9E1239B61D17756D647087F /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = "<group>"; }; - 74946811C6AA468E11C075F2B94CC07E /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = "<group>"; }; + 745626DAF8E2FDC51B4CEC6A916584FB /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = "<group>"; }; + 74AC6DFBD0003601B52F8DE3AF61BA14 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = "<group>"; }; 74C008A80723631991A60FE5E10F7628 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = "<group>"; }; + 74D51A595C752C87ADD691D3A6411EA0 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = "<group>"; }; + 74E14DD5FD83AE8B00EBE307C8DB6C94 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = "<group>"; }; + 74E466F3D35DA85D8EFF63F4BA71602A /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 74F24B597314054D87C8C1F6195DB87D /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = "<group>"; }; 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = "<group>"; }; + 7502B382F060A689307030BFB63EC280 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = "<group>"; }; + 750F7E062D511B9213745A1ED368C68E /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = "<group>"; }; 750FEC2522192194F49682A49D5C29D6 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = "<group>"; }; 753C142452FC46968E9DD7933F00877E /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = "<group>"; }; - 754F90B45CB7AE3FDE75B51E0EFA0640 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = "<group>"; }; + 753E0905C98819E42A1CF1A46A0170AF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 755098AE1D1B51F73FA9D687E6F48A81 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = "<group>"; }; + 7553BF735B0F59822716711C24372CFF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 75543B5F65557EF58DF3162759B936C6 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = "<group>"; }; - 7577C88EEFDEFCE52F70EC5B346286F0 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = "<group>"; }; - 75840501AC038B9F9DC5B368A0ECA92F /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = "<group>"; }; - 75A2D17258539631BD6BC5307CA68D32 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = "<group>"; }; + 755629860A319CC7A0CAC31018519309 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = "<group>"; }; + 755B72D5DA9A44B53932D49C7E48A722 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = "<group>"; }; + 75834989E18D8E87AC3EE1830D7DCDFB /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = "<group>"; }; 75CE5261F6D214187F4CF7BE26545838 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = "<group>"; }; + 75CF2E8B87594CB234E3D95A5412993F /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = "<group>"; }; 75D41132E49B63006155DE35CD098F17 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = "<group>"; }; + 75DBF29989ADA8C7616AC7F105CE9D8C /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = "<group>"; }; 75E87BBF6015436EFF6B5B3AB1BB25A6 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = "<group>"; }; - 7603C904A0910EE79192F547E1A180B7 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = "<group>"; }; + 75FB45C7226ED96D42AC27B019D7C154 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = "<group>"; }; 76068A15B2460ADC84FF361BB4197837 /* YogaKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.xcconfig; sourceTree = "<group>"; }; + 760A7D61D49FCE79E0D382110003A073 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 760BA912701FF7BACCF4B8550FE363FD /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = "<group>"; }; + 760DD8DEC20023A36378BBBBF751F203 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = "<group>"; }; 761CF731D02089080806F374986C8AF0 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = "<group>"; }; 762377E0E59BA8A87334A694F6F9118B /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = "<group>"; }; 76242510C5F4D8F3EAAB6F7BAE63CB5B /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = "<group>"; }; 762E440D9D75C4C9887AF701527F0CCE /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = "<group>"; }; - 763282B0AA5AD125E8AEBE9BF2A379AC /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = "<group>"; }; 7633BB7F050C1951D0C020BD47DD5CCC /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = "<group>"; }; 76507D6BDFF3A2955E6C896931880428 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = "<group>"; }; - 7658F1511A21C06EE2961BC952BA8334 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = "<group>"; }; 76598B6A6BF3D748F21701E68BE3BDBB /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = "<group>"; }; + 7675103AA92A4E8D188145E91E92730B /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = "<group>"; }; 7686E187EEAA0F481071907602EBA76C /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = "<group>"; }; 76B63BB440C0F231F76746E362914023 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = "<group>"; }; + 76BBD1CCC87BF6DB2FE482B80D841F12 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = "<group>"; }; + 76BD0F72902E48C2CFBCD65755A792B4 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = "<group>"; }; 76DB7DDFA5ABBBF55411E285875E8DA1 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = "<group>"; }; + 76F37DAA3A95559FFCCCFFF85F3DAF6B /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 770471FC3A474BFDD86AE79038B839A3 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = "<group>"; }; 770DF2A3BFCED53A3069E3AA80AC34E4 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = "<group>"; }; - 77193EA92359874A8A909A3F19EB06FF /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = "<group>"; }; 771C7455D3701B1057474FB9F506696D /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = "<group>"; }; - 77274FC94A05E59491311F7E744A7559 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = "<group>"; }; + 7736E765A07A194B46126DE3DA84CACE /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = "<group>"; }; + 775244808FA9C3FF8CB7F2A4E4A7EECB /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = "<group>"; }; 776ABE4331372A5DD96792E473347EAD /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = "<group>"; }; 7776C2F0879E5D6476A807AB35E0BB0D /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = "<group>"; }; - 77BA244B5408D2A80505DCCFF600BE34 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = "<group>"; }; + 777DB95C529E023178F362938B1B2C7E /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = "<group>"; }; + 77A9C0F349533D8942E9CE893B5B7308 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = "<group>"; }; + 77AE3AE043D8C08417145BCCF53E4AF7 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = "<group>"; }; + 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = "<group>"; }; + 77B3A3647D8A9C0E25E04391CF75E9FA /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = "<group>"; }; + 77BD6C3E902223EC8E562A2F277B8BD5 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = "<group>"; }; + 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = "<group>"; }; + 77D0503DAB112E0CD3AEB50ADD890083 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 77E6E583534D982B39C672E98059E6B4 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = "<group>"; }; - 77EB8DCB463F84D34C3F69C528F50742 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = "<group>"; }; 77FD8DB8FB6FD0282DEB41D410F329CF /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = "<group>"; }; - 78039537C57B2A28ECBD0C23618DD2D1 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = "<group>"; }; + 77FE8AA76FBC75C95712E64CBDF7DD05 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = "<group>"; }; + 7800D7967E2F4B8C81BBB95A0BADF9B0 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = "<group>"; }; + 7806EFF9CCD6E7DF393105EA4EFE60C4 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = "<group>"; }; 780B702EB55C3166E65CB713785F0053 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = "<group>"; }; 781C771BC85D0BDEB37C406384502459 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = "<group>"; }; - 7846EA11F2BE8C2BABF022D2B01ABAFA /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = "<group>"; }; 7848DEE31ADA7C35A64A67BAC27B14D6 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = "<group>"; }; 786589B89ED794E83071FD6343477557 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = "<group>"; }; 787AA91E97EBC57A19735F2F1F6F0331 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = "<group>"; }; + 787FE71387CF1F85BA4E9DF6D97CE264 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = "<group>"; }; 788EDF0678F695FC0BC67274CEAD5F0C /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = "<group>"; }; + 7892AF4AD3191D445D336955F63664EB /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = "<group>"; }; + 789BC1B4A708A2D8B704E3B951491BFC /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = "<group>"; }; 789DDC8433638B37CEF864380CBF1BB1 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = "<group>"; }; + 78BB8675C806A5A0065A184F76F86922 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = "<group>"; }; + 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = "<group>"; }; + 78D642BD074ECBCE98D84E1D1F747F5C /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = "<group>"; }; + 78E119A66BD3B26DE1ED3C51B35208E3 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = "<group>"; }; 78E8308DA306318053FC61547E4649A8 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = "<group>"; }; - 78F231D7CA282303549AA44A7AD81A60 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = "<group>"; }; - 792A074CA8DB2DC75B300A6053CE8C1D /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = "<group>"; }; 7973F5964A02BF972030B48325357E4F /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = "<group>"; }; - 799F854F7D880C45D29123A3578A443C /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = "<group>"; }; + 798D6C8908BE1EF520B2123C0303E59E /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = "<group>"; }; 79A7652E2CA6CD7A4BF43A9DE8BBCC52 /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = "<group>"; }; + 79C87FDBC38CAC8DBAC3D2B40FC7405D /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 79E7D2DDD63801B91D88DEA078970414 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = "<group>"; }; - 79EB38BC28AE02613EA704A0CD264EE8 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = "<group>"; }; - 79EFBC166E91C5EBAAA8AB0F0F7E7D4A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 79FFEE5AF9B5AA2CC0E521E993BF0299 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = "<group>"; }; + 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = "<group>"; }; + 79FEFB251B624E2112058C5823DFFBCA /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = "<group>"; }; 7A059ACDA22C414C11E828DEE1F42B14 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = "<group>"; }; - 7A09F5693FCBF0E75179043D265B44BF /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = "<group>"; }; - 7A154AAB79A96C5D3BFAEE70156CBCF0 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = "<group>"; }; + 7A2332A624FF39009F67CC3A477687DB /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = "<group>"; }; + 7A3B44B0EE5021D9B6F9B6FDB5B2FB27 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = "<group>"; }; 7A590BC60B56755728ECA16D8679EB22 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = "<group>"; }; 7A6AC6A7A49B14663FBC246A357EF6A7 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = "<group>"; }; - 7A76FE361D047EF69149592F12D351D2 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = "<group>"; }; 7A87117E5612E6AD894A505E87DA09C5 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = "<group>"; }; - 7ADC6B5DBE17D771D86A3EBC8EA82292 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = "<group>"; }; - 7AE133DAB6AB24FE3E3623D5C81ECEC4 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = "<group>"; }; + 7AD27C318E641AEF3FEF91B013B97BEE /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = "<group>"; }; 7AE17162C64E027C473100BD6B2C05B4 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = "<group>"; }; - 7AE2D6BDEEBA98854197BBBC0B915FAA /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = "<group>"; }; + 7AF4F688033FC594C5312350D5A4196F /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = "<group>"; }; + 7B0639111348B07A51454B418635743A /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = "<group>"; }; 7B0CDEC01D66844E4510B5EF282B519C /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = "<group>"; }; + 7B0F1967BFB375D4506E99B8131B2519 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = "<group>"; }; 7B18B97F7B5BC32789739B993A2AA870 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = "<group>"; }; - 7B19946E7CBE7C12C9863BD084871818 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = "<group>"; }; 7B40AAA6D6A331E10CC9C6C8CEF0DC55 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = "<group>"; }; 7B44E198E1118013F10E109C936D5CE5 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = "<group>"; }; 7B4DAFBC77BCC1C80EB8B9301EC253D6 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = "<group>"; }; + 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = "<group>"; }; + 7B6497C88283A72EF08F18A3EA2D0997 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7B67AFD966DA52D78F3F3FBEBDE7E78B /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = "<group>"; }; + 7B71C4EC02710E0C2AD933374DC2CBA5 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = "<group>"; }; + 7BB5B16C7B70B759347FE367321DD04A /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = "<group>"; }; + 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = "<group>"; }; 7BC06829E7F061E65C930F3116DD80F1 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = "<group>"; }; 7BD75300993BE4ECE8B98C96FD181608 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = "<group>"; }; - 7BFF79D6877CDFF6777A2BF3B88D097B /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7C01BA1E846A7F4D9FDDE492D4B367F4 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = "<group>"; }; 7C041CF5154ADBCA83C73DD553000F3A /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = "<group>"; }; - 7C4B6E29E26DFB6B6CEA52BCCFA977ED /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7C4B351F8FB06F9DB07A3372945F2B68 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = "<group>"; }; + 7C55A44A457F10A97820FAB548C8F44A /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = "<group>"; }; 7C5D42CBB64028D6E318A5C18EE74DED /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = "<group>"; }; - 7C71CAF2DCC6B9F802938E7F57B0A976 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = "<group>"; }; 7C85FC8A04DE7C7381E6363E09976B77 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = "<group>"; }; + 7C8EBCA61DFAD0D306BADBEE83374B50 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = "<group>"; }; 7C9C1795F7FDCC3C5AF33C63B06DB187 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = "<group>"; }; 7CA214D249D239B96079E4E736CCDBD0 /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = "<group>"; }; - 7CB0861E30B6758176AECDD59A49C73E /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = "<group>"; }; - 7CB2F905B2A1849FB7D8078F2C1203A0 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = "<group>"; }; 7CB983279B4EE789CC6DCECC42768786 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = "<group>"; }; 7CBE7F26DEF6EDEE75A2D06F79C5DC21 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = "<group>"; }; - 7CF424B414037AAD5991901E4B9FAB25 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = "<group>"; }; + 7CD2EA199FD310DC921E66C50B51DC73 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = "<group>"; }; + 7CD7A183075FACE684460A00E3C0C0FF /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = "<group>"; }; + 7CD860EB0F92142ED856AA5822697739 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = "<group>"; }; 7CFC5F812F532B846C760DB22721ADF9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = "<group>"; }; - 7D11B6321D9730F81486436992CDA244 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = "<group>"; }; + 7D013E58A4B0CF45BD86DAB1BE88BBAC /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = "<group>"; }; 7D2347F1D47BD749FDA5FA70F9B5EA75 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = "<group>"; }; - 7D2434308FE9078AFFD7425B11C23CCF /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = "<group>"; }; - 7D5BFD71DE73BC883BED9DB8890221AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 7D3525B6C8556840842B28C45468D502 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 7D362AD8B48052F1E3700D074E0C392D /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = "<group>"; }; + 7D48981D86849DBE434AA8B89B6DE997 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = "<group>"; }; + 7D48E0D6D11687E2ADD4E55BBDFE1495 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = "<group>"; }; + 7D5815080B2F35050BC245DC143DE4B1 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = "<group>"; }; + 7D7561A1F3D2AEBED36E92BC3042E4BF /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = "<group>"; }; 7D86963372CDF935FEFEED1F8C0CAD1B /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = "<group>"; }; - 7D9F1CB2823C667DE211588F81B7E924 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = "<group>"; }; - 7DAF48FA7A5A0A40FC1DB6ED9A74602A /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = "<group>"; }; + 7D8CAA90AA7C25E6506E2DD0193F8060 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 7D947ED0FFEF4F648CED33D72400571E /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = "<group>"; }; 7DB290718569F62EF6393B2E7A71FFA2 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = "<group>"; }; - 7DB4AA7C7F31AB538F09CA5E630913AC /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = "<group>"; }; 7DBA39AABE42FF88D5DF1E88BEBD3575 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = "<group>"; }; + 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = "<group>"; }; 7DDEAE4889C0A5104DCA803F35AC36AB /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = "<group>"; }; 7DEB3E43E56226ACBF6894AE3C077389 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = "<group>"; }; 7DFDE8B8F51B84DD08D0D7AF871A04C4 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = "<group>"; }; 7E00E9A2E6EC961FB7015E670B330551 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = "<group>"; }; - 7E0D891B9917DC61A336F36B31390435 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = "<group>"; }; + 7E0474ADF523E01E0CB4B9930DD9D438 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = "<group>"; }; 7E30232E1A649C5A30B9B190310D1DD1 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = "<group>"; }; - 7E46F8999705950D8DE71D9DF55BA3F7 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = "<group>"; }; + 7E3B49CBFF762A1C703210855E543C2E /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = "<group>"; }; 7E5C6074F0DB669A0756E635E550B3B1 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = "<group>"; }; - 7E749C38DDC6B784160FB8707D902A54 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = "<group>"; }; + 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = "<group>"; }; + 7E6E3D47CFDBFB8BA79AA8C7A1BDD36C /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = "<group>"; }; 7E74C3E2B6D38A98EDC7095EBDF0D894 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = "<group>"; }; - 7E7D6AAD39457758057017FE3DD3DCB9 /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = "<group>"; }; 7E87E6CA6F24F95340E8EE9EF3FE0850 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = "<group>"; }; - 7E894D8701031E4689BFAB19375BBE00 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = "<group>"; }; + 7E8AB43A0D19CAB66371A64DD8718435 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7E8F966910B5A7FE6D117384001D8564 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = "<group>"; }; - 7ED028780FC7A07AFD694814365F7FC6 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = "<group>"; }; + 7E93A2F0919CAF3E8CBFEF8A8844BCB8 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = "<group>"; }; + 7E99D2AE48FA6673B685C713DACBAD36 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = "<group>"; }; 7EE25BCA0D02084E2F1F55FDCE671098 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = "<group>"; }; + 7EE8986FCA597D38BB69720F4708A824 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = "<group>"; }; + 7EFAFCF9D2A38BF4A31E5989EE8A6C1C /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = "<group>"; }; 7EFF5BAD4FB9D3B56591A6EB08CB68CD /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = "<group>"; }; 7F0C154ADC65F8BA13EE5E51E1390E4E /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = "<group>"; }; - 7F27ED42340D5A5BC7673FE3E360FA70 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = "<group>"; }; + 7F0E1885FF6218CDFE9982E05F1A5588 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = "<group>"; }; 7F3B34B0FBAA0677CBF1E9F3F0D71D56 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = "<group>"; }; + 7F4B7D09C49BFC8FA482BFC030DC70EA /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = "<group>"; }; + 7F5B93B33A7BFFBA1E32BDBAB88A5605 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = "<group>"; }; 7F7217016DDD92C1D480FFAD050AC3B7 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = "<group>"; }; 7F7B13717527AB425E33EC231CD27A4A /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = "<group>"; }; 7F8D2E0EAABE90445655F7E1C4320FBD /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = "<group>"; }; 7F8F65DBBDC35F4D499274A0E87B121A /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = "<group>"; }; + 7F9683149B139470B2049608CBB1D7B7 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = "<group>"; }; + 7F99470B4CFB1DFF0E1519B85AFA600A /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = "<group>"; }; 7FA21966982863F1E4BE6BA0228D6EBA /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = "<group>"; }; - 7FE569434BA87224A4D37B3FC3A8C666 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = "<group>"; }; + 7FD2CE14B86C01D0182D5232A65D8AB7 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = "<group>"; }; + 7FE3B1419A93B1EB88EA99EE971138C2 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = "<group>"; }; 7FF83013A1711096B536E31351B50797 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = "<group>"; }; + 7FFF036081EEA50E6911CC3C72539F1C /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = "<group>"; }; + 80123E4CE5856A3193DD48852416B8D4 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = "<group>"; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 803326B8F3CE781120385D0CEB449FA4 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = "<group>"; }; 804A45CCD959C9996B35D180C052F917 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = "<group>"; }; - 804D05DBB9E391D3384C1C689263A6C0 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = "<group>"; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 807D0468E3C3AA6AE839A3E3EB4A86AA /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = "<group>"; }; 8080A2E131398B39B00CD2B495B05C92 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = "<group>"; }; + 80888C4D60C85D341F05D74889DFFA4C /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = "<group>"; }; 80944A65FBF34AE80A6FEBF65E9493E2 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = "<group>"; }; + 80989FD1E3A28D668EEF944CEBF3D75D /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = "<group>"; }; + 80A2AE040566CF877A70391D5194AF89 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = "<group>"; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80B7EC3C5207935654289284D7F350C6 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = "<group>"; }; - 80CEA4C9FB7CDC667CB53E2C1DC471CD /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = "<group>"; }; 80D171B86FCFDD5BDEF8591E75E17B76 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = "<group>"; }; 80E15FB8F7DDD721FF85A6AA2F26F77F /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = "<group>"; }; - 80F600F0859F860B673C10E3CA23C2DA /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = "<group>"; }; 80F8068D1256D1B5ED47B12E0763EDB8 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = "<group>"; }; - 81170979608C08D4D1521530F5DFBD1E /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = "<group>"; }; 8118C32574C7B0461CC6B410170522E8 /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = "<group>"; }; + 8126B9B4A24FA3479FB554D1A0C8D1CA /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = "<group>"; }; + 8141097306C15C605D00A0BDEA23135F /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = "<group>"; }; 8141F4C2DBBE6FD9F84261552C9F3769 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = "<group>"; }; 817C4CDF2FF40398C12C7B51816D040E /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = "<group>"; }; + 8184F44209E35FCFB3882EFAB43FF84C /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = "<group>"; }; + 81A3F3B67C53BA4E6624587FB504709E /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = "<group>"; }; 81BB52EF1378C7072DF399F588A97E4E /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = "<group>"; }; - 81CBE87B49688A20B4C0539F68B7A6AD /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = "<group>"; }; - 81D2C92F5996698B3543761A1E4CB038 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = "<group>"; }; - 81DBFB6FC23DD895FC46ACA29C74B980 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = "<group>"; }; + 81BDB57F53D39DBC0E0DE2D840B68111 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = "<group>"; }; 81E59C616C755265CF978E5E118A66CE /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = "<group>"; }; - 8216891CE27BD9229D26AFEBE1DDE84F /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = "<group>"; }; + 81EB6C170B6F2790F1A5CDC47B7D2621 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8227AB0A9A09777A728CC25B4E49D9A0 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = "<group>"; }; 8245AEA1767AE69C8E76AFC7EAB967A0 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = "<group>"; }; - 826B3447206F1745AE60ED9BE8E12E35 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = "<group>"; }; 827475BD228A44532FCF3169F417AB46 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = "<group>"; }; + 8275006D7171489B1B0923F4BB8DBE4F /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = "<group>"; }; + 827552D6A3A46085C0AF955B74724589 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = "<group>"; }; 8285F659DA66A30E841A40EBB7C03DCE /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = "<group>"; }; - 8298BAC346CB5AC0D7AC4552EFF754A8 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = "<group>"; }; 829D6AD9B342CF6AF4A53197E757E4D6 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = "<group>"; }; - 82B36E383DF60ADEBBF2C0B967DB1331 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = "<group>"; }; - 82E230E1B2623136263E9BDB47B3D045 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = "<group>"; }; - 82F0CFF18CE4552B3CF163C7268A9870 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = "<group>"; }; + 82C01850FCE0DC70E3D118328348F262 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = "<group>"; }; 82FDE4F89CDD3CB8322AD5AF2D2AAD04 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = "<group>"; }; + 831999651C70369A14B36B756CDB1DF4 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = "<group>"; }; + 833088975D18E2C0CDDAFC698D9B6EE1 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = "<group>"; }; 833769E4C7B4407A1F00E150E3313586 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = "<group>"; }; 83427F2327EFE23208D29702FC463EC2 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = "<group>"; }; + 83433962F347CF9964944E8ECF30B5FC /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = "<group>"; }; + 8379467A8B0AAD43D48CACAB090CD6B5 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = "<group>"; }; 8382ED435EE4F3B9DB27C264219982F6 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GULKeychainStorage.h; sourceTree = "<group>"; }; - 839A67A9ABC1ECD7C2ABFF8F45C0ED40 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = "<group>"; }; + 83951F110FBE70C27DA463137C925BCF /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = "<group>"; }; + 83B79C8BD3D16E22D3EF6179CA31D62F /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = "<group>"; }; 83BB3FF4F7D0EDA8A9AA4E608685A043 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; - 83C130BC81FE3BEF5302770D93E3423E /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 83CDDE079106BB87DDEE8D61B3FBFD01 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = "<group>"; }; 83E6DFF90FDADE4F32BBB866DD612256 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = "<group>"; }; 83E712003D06246B5467078B593C4363 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = "<group>"; }; - 83EC0F27925BA5C96C5F57B66745AD17 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = "<group>"; }; - 83F1602CBB2BDB6BF4569F71EB6BA2E1 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = "<group>"; }; 84046FDF23D7C27F377792E34B6A6862 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = "<group>"; }; 8407BCAD5AD1DB51CAC5DFD17942506C /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = "<group>"; }; - 840917B509BB30F5BFB4937EACC877C1 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = "<group>"; }; 8426E0809BE8286029A688A5BC03C254 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = "<group>"; }; - 842A8768CEDEF08134EAF00AEF12D4B3 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = "<group>"; }; + 8434817DF7DB6B629F1E9F0F61B96CBF /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = "<group>"; }; 84405E5212A26FB31331C0561D1B6213 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = "<group>"; }; 8446493A26CBD5A047B2F877C460C9F3 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = "<group>"; }; - 845C6A19B3074C49A09BCB6248F16EA5 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = "<group>"; }; - 846069DA7B6068262E2C3025790681B5 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = "<group>"; }; - 847CE846CFCDF02AFA9B747A273C5705 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 847E5743C00A3FE878DE06813290EA0D /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = "<group>"; }; - 84A906EEAD17B92664800378289F8A3E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 844FE1C9E4BD929D0603E29C1E01DC55 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 847F0DE87D9F5EA07C384415DA780F83 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = "<group>"; }; + 849DF067A0553824027C84BC0C1A09FD /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = "<group>"; }; + 84A91812CFCB70941FF3D33C6FA8F1D6 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = "<group>"; }; 84B32B7E450CEE8D7F9F6783F60C6365 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = "<group>"; }; + 84CEA15C9F028188FC76B20548085682 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = "<group>"; }; + 84D77D248D8B76E924E4417A4D9800DC /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = "<group>"; }; + 84E2ED926657E49C1145928B73B70718 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = "<group>"; }; 84E9632FB76AF581218D4D18086B48C4 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = "<group>"; }; - 84FDCF90B211EBB70535DC8B9BE5BBD0 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = "<group>"; }; + 850919EAE9825E1550B656DF21466B86 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = "<group>"; }; + 850ED263FA09AEE617847B2309FD3D09 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = "<group>"; }; 852533BA0F2452CEF71F8419FBC79BD0 /* CocoaLibEvent.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.xcconfig; sourceTree = "<group>"; }; 852B3E03F6B7C8F358073121F4243AA8 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = "<group>"; }; 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = "<group>"; }; - 8554BE05B4CA68DFDF521065515DA78F /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = "<group>"; }; + 852DDB57329071FE7E417C84D72D8048 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = "<group>"; }; + 852FE7BB7610FE35CE2C1A24B3059BC2 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 855DBEE3B15C3FE08EA26326134055C0 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = "<group>"; }; 855FCE02606A98B69A4A7D2A87D05A23 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = "<group>"; }; - 856998D7DE4FA54F46A5A82CDE190BAC /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = "<group>"; }; + 8561E97E1C040160AEEA2F3B8518D2EB /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = "<group>"; }; + 85677DAD4E22AAA5382ED8E3BC3CAFC3 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = "<group>"; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 856CDFAFD71C787B5428DB135424E471 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = "<group>"; }; - 8576E63209765A1063F39CC81ECED255 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = "<group>"; }; - 857D65BCA25BA3A7EAF9B24CCC8BFE94 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = "<group>"; }; - 85808F8B10091CD0E52075D763A399BC /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = "<group>"; }; 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; }; - 8593CB51AFEBC8938D84F426D41BCE93 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = "<group>"; }; + 858D05B7E99279A54826542B1B5D68B2 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = "<group>"; }; + 85A6112AD0D87A2AE6595A4C3628D59D /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = "<group>"; }; 85B137A6A27D2C6F9978F653150B57A0 /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = "<group>"; }; - 85C82E96EC245B8A90B9ABCEAE93890B /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = "<group>"; }; - 85D00F971517CFB2541A5CA28678B1E4 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 85DFBD30F8E1846663D8755924328FF4 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = "<group>"; }; - 85E316CC578DE8070D330283949D4B57 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = "<group>"; }; + 85C972F667E84E4CEA53674B8077942E /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = "<group>"; }; 85E39C4D756AD3813BDE4F2E6F37FEC8 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = "<group>"; }; - 85E93A08DAE3DA2001C2932C4B063212 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = "<group>"; }; 85EB48D9F74F32170CCC452CF6783E97 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = "<group>"; }; 86041AB3988B0BFA2E77B2DB32AF362A /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = "<group>"; }; + 8604E2095003058E3A036F99D16F0F0E /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = "<group>"; }; + 86142F493DDE680A50CF9D3BC242BEA1 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = "<group>"; }; 862A528D8E98EA5E454E18B4CBF493CF /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = "<group>"; }; + 865498C402B4E5F0DD79725D4441BC07 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = "<group>"; }; 865687D8992B9721808E1ED5B153B8D1 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = "<group>"; }; 86722D3FADF92702FC6ED523BCA655A6 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = "<group>"; }; + 86882A8B995EB53F1E9734757EBF13B7 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = "<group>"; }; 86AAFFE9015819EE8C6E0EB64991023F /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = "<group>"; }; - 86AB7F71AA8FE9CDAEF69AA2BAAA4788 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = "<group>"; }; 86ACE019DD91832EF8BFFDBD6F4AA667 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = "<group>"; }; - 86F08F17891CC92363BE2CD68AEB70E7 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = "<group>"; }; - 86FFF36CF1E21295B161A65D2B8EE256 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = "<group>"; }; - 8702444E910F691432A5D807F6E85DB1 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = "<group>"; }; - 872DB5CE3E77A0BD96B1C44C2C85A4D1 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = "<group>"; }; + 86E4F8E331A1E8766EE7DFC72710CFFB /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = "<group>"; }; + 8717F287702A9C6C38AA55E7AB95B0DF /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = "<group>"; }; + 8722295C25B3943AF10E50B691C16D55 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = "<group>"; }; 872E574D6BC79F4782E595DB08B75CE8 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = "<group>"; }; - 8769A6EC4F2CEC678F0BDD10CAC141DA /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = "<group>"; }; 878349428891F192D307BD872F246FAD /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = "<group>"; }; + 8791F28043B93FB45126A4FF1B18FD25 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = "<group>"; }; 87B9E85AD2708CD9F2F57E0B9468C024 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = "<group>"; }; - 87C23AAA3ACA5A3651F5838320939F2A /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = "<group>"; }; - 87C3BACABD1DEE98808417FBA2514893 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = "<group>"; }; - 87CA9C1814EF70798E8818D6752EFD1D /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = "<group>"; }; + 87CF3D5290C63D9BC0C8F06B0B65D238 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = "<group>"; }; + 87EE4D05DA2D8345EE7790161750FF38 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = "<group>"; }; + 87F05A51C7F86B2D2B14B62F6F1248FC /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = "<group>"; }; + 87F5C92D04AA2E6A5BA2C09C2275A5C2 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = "<group>"; }; + 87FD3BC45223DF4888204BDA75328D7B /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = "<group>"; }; 880668C762EDC9AD36BB9C499C39773E /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = "<group>"; }; - 8812DA8998BC9C1EF976D122B2926602 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = "<group>"; }; - 8819F7EA9C0EBC09B4A9BA91D2714B72 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = "<group>"; }; + 880C494587018B97FA8145B269186028 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = "<group>"; }; + 8813047D84809D331325E58DD5EC4EB6 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = "<group>"; }; 881C4D86EEB867E8AB55429524C164A8 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = "<group>"; }; 8821673AA05A9298C0CFC7B3AA7B0FB5 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = "<group>"; }; - 883CE30B7B37BAB794DE3D07B226F4A2 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = "<group>"; }; 88401389D1DF44BFA281C0434169ED38 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = "<group>"; }; 884A3F9DF38B4194FE972C3A0D33287B /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = "<group>"; }; - 8850B2D087A164CD76E6AB7EB464E572 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = "<group>"; }; 886FA80E50E6E53041041372306C7192 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = "<group>"; }; 887473A2C199644FD87B531F9DC5E655 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = "<group>"; }; - 887826002D02BFCC7CA9B7E8653787AD /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = "<group>"; }; - 8878BFA91A7BC7E75874E981339E9AD2 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = "<group>"; }; - 889EB709C390ACBB7ECA585C09A3EFF8 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = "<group>"; }; - 889EF24E336C0DBD6F2AA7C10180B272 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = "<group>"; }; - 88AF37083B5DDB6D7DFE1DA413D5CF30 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = "<group>"; }; 88B0DC4FC7F96FDEE51F498194964D78 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = "<group>"; }; - 88B4E0907E49353C8762DA9148CB0D9F /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = "<group>"; }; - 88C5A91B8D001D2E2BF68258B6D2FC9B /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = "<group>"; }; + 88CC26E86C4581E34F084F45491BF81B /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = "<group>"; }; 88F1CA2640C620519C4B83ABA9AAB387 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = "<group>"; }; + 88FEC41D5E6E03C1B4D0EEC5D1433502 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; + 890605CD3E314EC9B9611BEDAD9196E0 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = "<group>"; }; 8907B394C281E14A19EB642E2601B7EB /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = "<group>"; }; - 8908F075787A5C664E4F06456500EA50 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = "<group>"; }; 8917BA8D0AFD14A5E50ED75288A0C10A /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = "<group>"; }; - 892F5AE1354CFFA17AE1881B08925A3C /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = "<group>"; }; - 893DE73C522ACCA3827A6DD88EEB84C0 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = "<group>"; }; + 892ACACF678844715CB306AFD8C18753 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = "<group>"; }; + 8962A3AB1972A134062050FD168AEDE5 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = "<group>"; }; 897EBB23B4B312E08E041AE91BFF2D31 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = "<group>"; }; - 898858814F868522EA63C94B5815797F /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = "<group>"; }; 8991A73760A2F18360BB91029A5BE83F /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = "<group>"; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89A780541520D322F08FE7FD2C9EE1F0 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = "<group>"; }; - 89C47CCCE3A4B09237C87F96F1BE1D8A /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = "<group>"; }; + 89B547B5B2FB6D8A1B67CEF47329FA12 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = "<group>"; }; + 89C4B3B2CD1FDE56C69D142F03EE0104 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = "<group>"; }; 89C8773F55A4F4A5653989E3D9049C88 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = "<group>"; }; 89DEBC69C72FAB86A6C4D57C7714F19C /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; + 89F39CC71B68E39ED4ADE43058483368 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = "<group>"; }; 89FA77E838754CA3661D42AB224F42E4 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = "<group>"; }; - 8A5242744F2B65F26060D0E9CB8F3DEE /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = "<group>"; }; + 8A2D38415C9BDA898602EC4847A794FC /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = "<group>"; }; 8A5790B049B47159870C8A79F47F8748 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = "<group>"; }; 8A65D1F437F3BF3FD561C475B7FDF42B /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = "<group>"; }; + 8A966DDAE0BE49D85728B6C2FEA74EDD /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = "<group>"; }; 8AA6D2182A38C3561B140B2E997661B5 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = "<group>"; }; - 8AB093100F5A923F5703493C16829771 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = "<group>"; }; + 8AAB56A3E9F02762A877ADADABED82F3 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = "<group>"; }; 8AB2BA319E65D547E2434D2916DC5C53 /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = "<group>"; }; - 8AD39818092F0D18054A817784F8F211 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = "<group>"; }; - 8AEF9A9E12F8312E3CF08CFEC2DF631D /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = "<group>"; }; - 8B05EAB54048DBEE39998615D4615BF5 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8AE6BB988C37FE97D1678C6BC28C1501 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = "<group>"; }; + 8B06148A16E66822E0D7B561CFC1EF7D /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = "<group>"; }; 8B124E865FCBD63DF12A08FEAD8E5204 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = "<group>"; }; - 8B48725A57C02BE892258A5F0E381FFD /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = "<group>"; }; + 8B21BA4FAD083D3D105A46A5E31BD32F /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = "<group>"; }; + 8B3FA3257FB94308CDE8DD831FA9ACF1 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = "<group>"; }; 8B4A4767E25C7E05A7D2CAD7CD5270CE /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = "<group>"; }; 8B522DF9D1FB43DDF30B11219D02B194 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = "<group>"; }; - 8B73DD590AF901189F1BF4C326F64D5D /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = "<group>"; }; 8B7A2809E52A3687C547497BD4140144 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = "<group>"; }; 8B80F4933CEB39971843D1192358D422 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = "<group>"; }; - 8B877B7B613D625FB5683F806DDC283A /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = "<group>"; }; - 8BDB5C0D09E069EA82A33EB44AA4C679 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8BDBA3B64038AF0758E644C9E892DCFF /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = "<group>"; }; 8BEB988AF47DDAFFB88712AC01ADC2D8 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = "<group>"; }; 8BF33E3D337BB985790D01909BD9E7E4 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = "<group>"; }; + 8C108E508B53EF36687AA3DDC919D9B0 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = "<group>"; }; + 8C155F0FF36BE9E97E842352F2207414 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = "<group>"; }; 8C183ADB6DBB0DE5FE8D6DF0B8B3820D /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = "<group>"; }; - 8C1F0961C47575C9DFF7AFCA9636E991 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = "<group>"; }; - 8C2A58DF25870183EFB662264150C3C0 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = "<group>"; }; - 8C2D0931FD73BA4C466DCE30660AC049 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = "<group>"; }; 8C2E7263666D64DD3383131E446D675F /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = "<group>"; }; + 8C3100AF91002DD0641DECA9EE6B6AA2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8C4CBAB83E3C0050DBDDD9AAE2B6D40B /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = "<group>"; }; 8C5A40FE1A90B848643C806855445324 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = "<group>"; }; - 8C681060B85079E15C3C919754D2182A /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = "<group>"; }; - 8C6DB336E61CE73B46E0B14D8395C228 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = "<group>"; }; 8C76AD245DCE1D4DE8C58E276B04D5AC /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = "<group>"; }; - 8C799DB9847D6998287999FB00A86550 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = "<group>"; }; + 8C8A5F2C9FFF91B5BC14FCABE9FBD6CA /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = "<group>"; }; 8C8D90F5510EA5AE35D352D016D356CE /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = "<group>"; }; + 8C910CC24C086E197750941C95262852 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = "<group>"; }; + 8CB45594DD06C32DF7399AF19B9E20E6 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = "<group>"; }; + 8CB519AF1317C224A0079038A6E765DC /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = "<group>"; }; 8CB73B5E9363EB75C4438BD8545B3E6F /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = "<group>"; }; + 8CBB8B36DA44725BA3658B8988038B04 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = "<group>"; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CCC6BE8FE8A9A3CB9EE54F7D16953CC /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = "<group>"; }; - 8CDECEDFC756D3A0B9DF65B05EB14944 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = "<group>"; }; - 8CE010B473B965362B2252B08ACC8988 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = "<group>"; }; - 8CF410BCAF0BD50857D82096E840E364 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = "<group>"; }; + 8CD005D0F8167E89E726EC24D86EF397 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = "<group>"; }; 8CF44E5B7DF3FFF2EF86931E2C09BEEE /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = "<group>"; }; - 8CF500C0C197531A39634EA183DF8298 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = "<group>"; }; - 8D109AC973FD41DC55B73F847B8883D0 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = "<group>"; }; + 8D4945E36B5CAC10D6AAB064790C2915 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = "<group>"; }; 8D7BA6DC44642EC93751E8EECF4885B0 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = "<group>"; }; - 8DB523F3062331CFA4A9769A4D695450 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = "<group>"; }; - 8DCE5361433B4DC46F98F6EA67124F9D /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = "<group>"; }; + 8DCE4D4B6D4BBF737B27AF55749D0EAD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 8DCF2DF6E5E1AD55167C70CCE9203AF7 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = "<group>"; }; 8DE90D9AC64CC789B0287C1A80B3A674 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = "<group>"; }; 8DEA268588E248F3DE58AFAE146BAB80 /* Flipper-PeerTalk.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.xcconfig"; sourceTree = "<group>"; }; 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8DF6BA5C53B6AD87C2C553B17AC43728 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = "<group>"; }; + 8DF9F18D426A2953F9EBA4E425050B81 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = "<group>"; }; 8DFA724D628BD57FDF265E525439C4D8 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = "<group>"; }; - 8DFC07961C9B216F840267835EAA2811 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = "<group>"; }; 8E0DAC4DD8D8FBACC1E5BF9B18820D0F /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = "<group>"; }; - 8E0FB85F1F43F23D67F27A86FC4F4507 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = "<group>"; }; 8E0FBDDD93079F0A14972E00EFB08F32 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = "<group>"; }; - 8E2BCA6DBB44D8CAFA65C808CE19776E /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = "<group>"; }; - 8E58A9C9AEA25FF614C1FF1575CAB666 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = "<group>"; }; + 8E3ACDC7504306FD88446A594EF21ECD /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = "<group>"; }; 8E6EB4D43D4CE0873654D240C4D32BFC /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = "<group>"; }; 8E72DAB4A653E073E50E2A1100F41ACA /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = "<group>"; }; 8EA49DF3B79C11213E3096B0A2B77718 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = "<group>"; }; 8EA79EEAAB7293A0804326F36B9AC889 /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = "<group>"; }; + 8EA7D1FBF69E61F7830FB148A5E50990 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = "<group>"; }; 8EC9872EC0E581F88E2A0E0207C7E270 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = "<group>"; }; 8ECA2F21A68ECC4CF80F79A32789911A /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = "<group>"; }; 8ED78B5FC4AF458214116575D5FD08D2 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = "<group>"; }; - 8EFABF5AA13E99C6DCE7483966E12EFC /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = "<group>"; }; - 8F0C699E6FF3F5C7202D5C2E49166587 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8F24ACE2A977F7AB793D9A93778CD16E /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = "<group>"; }; - 8F3990E460FB5F9E245B9B637945C22C /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = "<group>"; }; 8F4636C331CCE1E7390E1333A53B1F1B /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = "<group>"; }; 8F4F7137BD4EB80F3CA17A5174917F1E /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = "<group>"; }; + 8F5F09B295F2D3446244328E54525852 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = "<group>"; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F68E0CE6A3A45B21DAE0ADB89241CD9 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = "<group>"; }; - 8F68FADC2E5D1F3308B07EF0A1A621E3 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = "<group>"; }; + 8F83BAA8354FE1415F44E732F1032CE1 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = "<group>"; }; + 8F84156C094F7B42F9CC22A4446ACB15 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8F907ED2066512531D35AFF9606DE706 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = "<group>"; }; 8F99BD71342DF86B56CE25635997EA29 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = "<group>"; }; + 8F9F12C986912FA2B49124546F609219 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = "<group>"; }; 8FB2A3F2B7BC082B52E02D5D06D423EF /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = "<group>"; }; 8FB7BB567A6CAE2F752CECF9B7CDB70C /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = "<group>"; }; - 8FC18CABC1AA9DE5692F38CD043A8C45 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = "<group>"; }; + 8FB827D3E661A96BF92BFE5C69281BF0 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = "<group>"; }; + 8FBD94102E34B2FB6F59A4A6E8F50EBE /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = "<group>"; }; 8FD101C730304830BC97FC910A7DB082 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = "<group>"; }; 8FE0F244A1B099EC307B243AB8583E79 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = "<group>"; }; - 8FF483E4673337FB6FF8BEFE6D913EF9 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = "<group>"; }; - 8FFF89AE1633E9A24874A6CE6AE3A376 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = "<group>"; }; + 8FFCAD5827966A8DE8809D1414255B0E /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = "<group>"; }; 900F049E757FE3B0BEFD489FEC8CC87C /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = "<group>"; }; - 9015B60F6E82801E42FC2A6CE9D47277 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = "<group>"; }; 90264320EB1595B97152D9270C22C7E4 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = "<group>"; }; 90391A5AE4407FE1CB8B1C8683025E53 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = "<group>"; }; 904AA330BDBFF96A1272D93B6B61F5B3 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = "<group>"; }; 90537B1020C62F8000E181300CE2388B /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = "<group>"; }; 9053FD1709D958D2E1AE9D3B1D2F23DE /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = "<group>"; }; - 905B11A10A75AC61C4820137CB0946FF /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = "<group>"; }; 90642D89B48A1B3A4ABFD9C1F3CF9950 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = "<group>"; }; 906873AE10D339C97F90587F4E912DBC /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = "<group>"; }; 90789D50ABC427329F415E8A1AB9FD22 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = "<group>"; }; 907ED2C32B312E66F3380CD86D0C2028 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = "<group>"; }; - 9085EEB2F8F0B25479E013BF16B992A9 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = "<group>"; }; 909B45974AE02EE540314C73386554A1 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = "<group>"; }; + 90B55EA33B950C64B25090F072B8B472 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = "<group>"; }; 90C33347B5019D72B0153A47CD71F9C9 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = "<group>"; }; - 90E0025F100C9DDD5BD27BA2E5CBB773 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 90F83122597EE1659B752BD7F2DF170D /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 90FF22EF610EFB669A5BE580345C18D8 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = "<group>"; }; - 910EAD3A58F99D239E1833FF00C63016 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = "<group>"; }; - 911F0963EECD208433B97565D348374B /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 91297C5FA5AA16DE081A805FF346F321 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = "<group>"; }; + 913EC418AF05573D3B6922EDCAAA5BCF /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = "<group>"; }; 914E5C444B63DD254F036CB9D76BB996 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = "<group>"; }; - 9156F13D71E1B85F0D1558E2AD650766 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = "<group>"; }; - 9171918201095679A46924C0DE829FB0 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = "<group>"; }; - 91800C9E32E29B80AD6819F6904741F6 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = "<group>"; }; + 915FFD88627EF3D1AA7B5CCC61FD9B82 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = "<group>"; }; 91812A384E0D24CDD31A1A2C7D42DE82 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = "<group>"; }; - 91A5297C7D8564AD8AB098CDF45B6C32 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = "<group>"; }; 91A7D18C1595AEAD91301315D90BB800 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = "<group>"; }; 91B02DE46170937025FB43F1144861F1 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = "<group>"; }; + 91B36F266B9D8615A7218FF77A6F09CA /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = "<group>"; }; 91C1F9D6EF27CEFC969B213B1F6DA6C1 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = "<group>"; }; - 91E29A53F4EC69F389C3F573D82C0D9A /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = "<group>"; }; - 91E98FB986B1050EDE8F591208A677D9 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = "<group>"; }; + 92007FF67C73E7C4B6A81B82D3A7810E /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = "<group>"; }; 92303CFE59349CD41F2BC8F4FBC5E555 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = "<group>"; }; - 927951445A92363AB98995673F37BD60 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = "<group>"; }; - 927C2E85C671ECDD04F9A4DB9135ED12 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = "<group>"; }; - 92ABE419FEEB48FA487D1284AECC6013 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = "<group>"; }; - 92B1F88420B5770F50963F4972B2105D /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = "<group>"; }; + 9249B01F0C6DC3F1AEC3175EB9D2BB75 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 92621C4B5A088E6D97328052B9A3A2D4 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = "<group>"; }; + 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = "<group>"; }; + 92A866209B909FF7DE356B121586DBA3 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = "<group>"; }; 92B2E2615F1D5C5A3DB51CFC1E41D2A4 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = "<group>"; }; - 92C040129F3C2040537816902D54BA42 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = "<group>"; }; - 930A91478BCD1BC247D48A71AEA9B47E /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = "<group>"; }; - 931E9B4CB73464F58A4C5DCCC1B941B8 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = "<group>"; }; + 92B46344955C5783FCE009877CFDE98E /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = "<group>"; }; + 92F4E9C8C6FD85E1FB12AAF8976197E8 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = "<group>"; }; + 930C07D496B0306731EE1E12EB49EE36 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = "<group>"; }; 93252A0BF5CCD57ABB693879E346D7E1 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = "<group>"; }; 93278509708B753DDDF596BCD5A12AAF /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = "<group>"; }; - 937B86997F1492A493D8D2E3B54F85CB /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = "<group>"; }; 937CD84033EBCEC7530AD7CD9164827E /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = "<group>"; }; - 93C19512123744F6A01FB35063191693 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = "<group>"; }; - 93CBF7A83273715C89C82A3417CE1547 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = "<group>"; }; + 93C833509B4E07D36E97B0CAA0070E83 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = "<group>"; }; 93CC7E8B8374FB50C008B576F253CC58 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = "<group>"; }; + 93E5D3FA51D92B2EE1178BCAABA6F671 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = "<group>"; }; + 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = "<group>"; }; + 93F4EB0ABAEF7024B00B36EB5E3A629B /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = "<group>"; }; 941320936BE5D0EF4CFCB3AD914D1BF1 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = "<group>"; }; - 946433D7EBE2426C041BDE43C6FB3116 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = "<group>"; }; + 94190577BAEEC37307893DA822D0BAD7 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = "<group>"; }; + 94684772FF13857F48CC5125F84A19C7 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = "<group>"; }; + 947DC1D9D5F537AC8ADD1652D178F627 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = "<group>"; }; + 9488757637FFD5FC260B3C294D47ED72 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = "<group>"; }; + 94923A18A7B065BEAF5EA283A6A12C58 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = "<group>"; }; 94A0F0C2B168029BE21DD002A1D3014D /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = "<group>"; }; - 94B5997DDFAB6A5FAD9C4F0995531D49 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = "<group>"; }; + 94AB3EA544ADE14FA2198F7AC7905656 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = "<group>"; }; + 94B74D53963393C4A8D7CF14C52FB7DC /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 94BD5EC2A42468D9F9E45F78B2A3BFAE /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = "<group>"; }; 94CDAAC8014342546C86775C00F6A589 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = "<group>"; }; + 94D018CAF5AFA03EE3483AF9FE1B9AAE /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = "<group>"; }; 94D55F9701D7D69D97942CC76015A5CD /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = "<group>"; }; - 94DA1B5A041788C9BF9974D8C4A8A6B8 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = "<group>"; }; - 94EC70748ADA5F6290455FBBA1C057B7 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = "<group>"; }; - 94EE1969818C1B6429281C14D7987619 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 94DC58CFD685B9D5EB1D708DC0020EE5 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = "<group>"; }; + 94FD43A814135FF3A79FCCD0F3B3AED0 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = "<group>"; }; 9502B3630FA0ACFC8E44DB0231E49D4E /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = "<group>"; }; 950A7A3F1F79B290137A6CD100BEA185 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = "<group>"; }; 950DC6BA39A9B2A0B4CFCBC9C5DDE665 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = "<group>"; }; - 9529B4CCA7B332F8B96C0156930A53C1 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = "<group>"; }; + 950FA3E66045AE57058D56A5E8E11B95 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = "<group>"; }; 953453F81B33399A8EEA663B3ACE3F22 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = "<group>"; }; - 9537591DD16EF4A302440EB846913BB4 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = "<group>"; }; + 95380A36C8E53465430D28FD7B86DE4F /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = "<group>"; }; 953F040C2DA4203914670D7DE272A385 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = "<group>"; }; - 959E934C1B3774B4E6211C3E4C0FBBAC /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = "<group>"; }; - 95A45E2D27E725A95BCE60430D3B2716 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = "<group>"; }; - 95B08E0DE61263470F88105482BD8162 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = "<group>"; }; + 9540A2D9667B50079020C6B62A09F05B /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = "<group>"; }; + 954BA722E978DF07D5EA4D46C7C691A5 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = "<group>"; }; + 958E52FEE245E3C364A04B23B5C26A34 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = "<group>"; }; 95B7FB9B863028BB9152BC5789EF883D /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = "<group>"; }; + 95D3073A483921704D78E97838E101D3 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = "<group>"; }; 95D930E8CF335BCB777CCE4419A7A5B9 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = "<group>"; }; 95ECD0DE5D568B252D0B716DB0CC1872 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = "<group>"; }; 95F8B48CAD90F866E1861976E47A9C1D /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = "<group>"; }; 96049167E2D8523393613FF3443A968C /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = "<group>"; }; 963D71C0E93EFAE8B7D88349754F9DD4 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = "<group>"; }; 96433AB848C8B2A54945D7CE0E979DD4 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = "<group>"; }; - 964E855C86A7524F0F46E0876FCDE512 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = "<group>"; }; - 9651FFDA71232B9C625FA26E0E4BF509 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = "<group>"; }; 965529006449D25900B4312A5DF2523C /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = "<group>"; }; 9657D94D5B94272DCEFAAB4AD0E0F069 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = "<group>"; }; + 966C8893779B8233236017371E619B1F /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = "<group>"; }; + 9675F13CB46425163B7D8B264DAB751A /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = "<group>"; }; + 9678206A159276B63BD2EB7EF1B3C227 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = "<group>"; }; + 969F4338E2546A7304C7CDCDF06963A6 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = "<group>"; }; 96A4B81E2E14D8CDD7B6FA53696D6345 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = "<group>"; }; + 96A8287B0D35FA463B068CC6FC72D2D9 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 96B8361313C96BE095FA055B86C358AA /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = "<group>"; }; - 96B9B8CD197067EDE176D4D55AB7C171 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = "<group>"; }; 96D6A7F603D91A945AC9ECFF83721FD2 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = "<group>"; }; - 971C84618EF8366D2D580C321CF40114 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = "<group>"; }; - 974628B8ACD3D80A1B6D7318CB062053 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = "<group>"; }; + 971EE41F6B621CBCB9749076D4A5A465 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; 975457E6A4D4F140B9825F36E552F991 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = "<group>"; }; - 976108395F5BF08ECF1B472A86D069EF /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = "<group>"; }; 976AAC54063299BD9B1366B0AF3E1F08 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = "<group>"; }; - 97D0607D2C9B9408448E91A74F6B78F6 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = "<group>"; }; + 9781C958ACDEA2F0867D3700ED83C082 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = "<group>"; }; + 97C30C1EC16E4D7BF1E3192F02285C77 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = "<group>"; }; + 97C7F766B25433997B07B1C978B966FC /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = "<group>"; }; 97D593C9AF6F9078D07746B21F87EDCC /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = "<group>"; }; 97D89037B0C626964E3489D4E4FBC103 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = "<group>"; }; - 97DEC7A80837A1FE22297238F6EC9BD9 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = "<group>"; }; - 97E0B392B2123F023B7AC1B70B96C3A0 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 97DDBC044CE7DA5CCCE4A31EF03BAB65 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = "<group>"; }; + 97FC6BD7C0618EAA750D1B4108648ECF /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = "<group>"; }; + 98197B703C5B25832FEF5F172B51223C /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = "<group>"; }; 9858D08090F22A32B7CC8B17D0FD07AE /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = "<group>"; }; - 989E10982D7047A7DAB8A37A30CC1E6D /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = "<group>"; }; + 9872589A0210618DBDA33C90F6F9EAED /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = "<group>"; }; + 98873A3FDAB5470E663EE8F658A77ABC /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = "<group>"; }; + 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = "<group>"; }; + 988BA3376729A3D79C86FB6308A2522D /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = "<group>"; }; 98A2119BEFF602F65E786155973F58DE /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = "<group>"; }; - 98A7924D187BCA7F8C3BBAD80213237A /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = "<group>"; }; - 98BBD6FFFD50E722EC7012E2A9449011 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = "<group>"; }; + 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = "<group>"; }; 98E3827DA60F55DF0ED6789CD7C94599 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = "<group>"; }; 98E77D6A25ADD24D6F07341AF8523362 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = "<group>"; }; - 98EC4E89DD324DCC11248145EC58BDEA /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = "<group>"; }; 9903C4D647B73B077323B2D4F90370B5 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = "<group>"; }; + 990D1CEEE097DFC53048ADB570956DD0 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = "<group>"; }; 99135951B134FDA8550CDFC21F381396 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = "<group>"; }; 992D961E24F23CBFB94C80495AF2AF3D /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = "<group>"; }; 993310A8BA742DA67AC8025E88E94E33 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = "<group>"; }; + 9934CD4A1C48A1C1391DA60625F6E769 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = "<group>"; }; + 99410C58C15B024D3AE97571C8B66664 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = "<group>"; }; + 9945AD5713750C36E0A34FAAA28D97AE /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = "<group>"; }; + 994A71C4449C02301B04DA85D8A982B1 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = "<group>"; }; 99649E983CFDAF5A5FFBCC9F63DE58D4 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = "<group>"; }; - 9986C9FE4567E0B8DC9DB83136204FF3 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = "<group>"; }; - 9989D8C87CFAF525EEB7533F576B3082 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = "<group>"; }; - 9991420F4188227A754E034852D2FC13 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = "<group>"; }; - 99A00B5FEA90B0806A317B2C55F5C99B /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = "<group>"; }; - 99A086D8B73A03B8CEE89E861A4C0CF2 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = "<group>"; }; - 99A984D92D32C73C8D034974A4EA5DCF /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = "<group>"; }; - 99B64C61FBE22440787B42BDCA2FBA23 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = "<group>"; }; - 99CF9BBC8C3D785A1135FA10C0D87201 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = "<group>"; }; + 99B4FA6C21FE7D85DD4A2A26A3536958 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = "<group>"; }; + 99C9CBF9618B653FEE2EAB24B9742D4F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 99D0BB4896A95C56B733C88FD61658B9 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = "<group>"; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 99E92B76B0F8521D83C293ABF6FEC47F /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = "<group>"; }; 99EB79250CAFBE831DD800AC96C545FA /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = "<group>"; }; - 99EDF765B7C71AD493123B7CAE730E76 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = "<group>"; }; 99F2717B1512D7A99F98928DE0F0E81B /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = "<group>"; }; - 9A0A30FBAAA3F331107EA451DD10260C /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = "<group>"; }; - 9A0CBE1AD6DCD05AE84E373E91A0DDA0 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = "<group>"; }; + 99FCA9864B72846B0670BFF06C050B38 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = "<group>"; }; + 9A2B89C600999072980916EFDBA63AEA /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = "<group>"; }; + 9A2E36F623BDC96728EFCD9D1A8DDBCE /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = "<group>"; }; 9A416D059E005D2144C88BA1A85790FA /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = "<group>"; }; 9A5366E641B196D18C36D850B6F32803 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = "<group>"; }; 9A5B9ECF7C0213402392EDEA2A5E6BDF /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = "<group>"; }; 9A5F220B6334886ABEE8D6C75154DC47 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = "<group>"; }; 9A66471CD4E68165E386B80F895A3994 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = "<group>"; }; - 9A7CBD308ED1A92BEB406FFB1F2DAE00 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = "<group>"; }; - 9A944AEE1EF52C6753DF710C70F61969 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = "<group>"; }; + 9A86B606D84FC5918002098DE6846840 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = "<group>"; }; + 9AAB2A68C220F565273DB515053421EA /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = "<group>"; }; 9AC4D1460171F9A658F53ED094D81A76 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = "<group>"; }; 9AC6A269C5C9BDCF2C63D254462FF5E8 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = "<group>"; }; 9AD02296AB653CD27FCFA46922CDFBBE /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = "<group>"; }; - 9B089CC535E5F78ED62E11BE31A32515 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = "<group>"; }; + 9AE9D6D7F0077A5B4EDED9DB57BCFD8A /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = "<group>"; }; + 9AF67609001A45E16F9812CB6552BC57 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = "<group>"; }; + 9AFEC1A12795E05C8A3BB3055E52B65A /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = "<group>"; }; 9B08EC2AE6AE6421C1E5B1910083B1DE /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = "<group>"; }; - 9B3E6D54DE7DAA1E0D6DF8F6D08C5664 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = "<group>"; }; - 9B41FAD9295CEE62A146EBDAD4034123 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = "<group>"; }; + 9B38541B457DEF769B21EBCD7B0AEA4B /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = "<group>"; }; + 9B4B3036D4BA8F33E941D941CF48E3DB /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = "<group>"; }; 9B6E93E99600E2A2E78D6C3DEA82A418 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = "<group>"; }; 9B72894A5002A1DEC2A532BEE053A8FC /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = "<group>"; }; - 9B9321586DD38E7DFD84AD213C8C80BD /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = "<group>"; }; - 9B93A2BC1D708EADE841B2E2F2EC5E0E /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = "<group>"; }; + 9B8384303A2532E24C921A0F688CA617 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = "<group>"; }; 9B9D91ACB858F7E91ED94369CA7E6C53 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = "<group>"; }; + 9BA16C8E1EE792F051C468252733D6A9 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = "<group>"; }; 9BC3411E2C598037179D556382232F0A /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = "<group>"; }; + 9BDD9AD6CBDA0656FB33DD8C1354B565 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = "<group>"; }; 9BF15DF569A38692EECB32ADF50BE67B /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = "<group>"; }; - 9BFF31F3DEBEC406590EE540A6F73C57 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9C0E89EE27CFF8B0F933302B9FC14CB0 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = "<group>"; }; + 9C1107DC0C92960D72614B9190759FC3 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = "<group>"; }; 9C1385A1BC08D636A83049E80BA675A8 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = "<group>"; }; - 9C1830D09C7AD962D9E9C6B21D60E848 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = "<group>"; }; + 9C1F97993C8D8F56705CB4CAEDDEAC3C /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = "<group>"; }; + 9C22F7E35FDC62277F9BC5267264D97D /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = "<group>"; }; 9C251BDD668A0833CABC259C54C08DB3 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = "<group>"; }; - 9C31BEE6F2476A4FDC2F64BA45DB58C0 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = "<group>"; }; 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = "<group>"; }; - 9C4FA7E317CDFA18F144029811303C64 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = "<group>"; }; + 9C48F897B5BA1914E197F527232FA527 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = "<group>"; }; 9C508B25590A036A896571F6E1BECC91 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = "<group>"; }; 9C51EAC64D5DC8E7AD2158B3EF4BE014 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = "<group>"; }; - 9C8FDD6D8D311D1B10CDA770A98B0D16 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = "<group>"; }; + 9C7D1B455671EA056C902123DDB90E26 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = "<group>"; }; + 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = "<group>"; }; + 9C98121B84B233D079C9A3CE83E8708C /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9CAADB612BE02D149D127DC9EDBD247F /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = "<group>"; }; 9CACE3A2DAF8E32A621D0CD75A3783BE /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = "<group>"; }; - 9CD31ABEBCAC97BB5D04D93786BDF51E /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9CD8000385E0B18CACE3190FC574A7C3 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = "<group>"; }; 9CDAA627AE174F13FE1B9E69D7208E8C /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = "<group>"; }; 9CDF1F3AEEC7567280369856FF0EFE34 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = "<group>"; }; @@ -7990,1372 +8118,1345 @@ 9D8E50F8C628C76761489E50813FF2D3 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = "<group>"; }; 9D9104ED8685F165F835159990D4F58E /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = "<group>"; }; 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; }; - 9DD484A6B77C62B164B3F6F44F9F60AF /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D9953979307451128D4E556D376430A /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = "<group>"; }; + 9DBF4D24AFC5285B24DF28C06AA633AB /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = "<group>"; }; 9DD9693B486CD4C8709FF42213D434F1 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = "<group>"; }; - 9E0E64F4AAA4A94A1DE99FECB9C06F10 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = "<group>"; }; - 9E211A0B094C454F064C853CA7D597DE /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = "<group>"; }; - 9E2D0B7E4657A9F742F3CE97337865EE /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = "<group>"; }; - 9E4AFAF04692E7EB628AA40DA7F839AF /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = "<group>"; }; - 9EBD406BEE74B29CAAD099B5F5623B78 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = "<group>"; }; + 9DE6FE2B0EAF64393EAAF37AE268A59D /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = "<group>"; }; + 9E0E9F3CEF59482A043F2E3150CAEA0E /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = "<group>"; }; + 9E1FB6B4A44DC3F5D2618CED7EA91FED /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = "<group>"; }; + 9E4ACD2D1BB805CB1FE0BC1C0930A8E6 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = "<group>"; }; 9EF1D6AF8629BAB66F153FAF672DB8D6 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = "<group>"; }; 9EF3A2D266889D108A68CD6120506782 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = "<group>"; }; + 9EFDB3D608A8D5F202D496AC45456444 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = "<group>"; }; + 9F2B174BD2BDAEB745C526A9F0ABB786 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = "<group>"; }; + 9F4297F5B8A71095E993382EA72EB207 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = "<group>"; }; 9F5E5E7947A5559B8B8DDDD4748189BF /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = "<group>"; }; - 9F5F8BBBEEB8C43EFA9B35B78BE9DEF4 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = "<group>"; }; 9F872802024BEDB3B2C7D59B0057891E /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = "<group>"; }; 9F8C516CB2AEEA8AEA997D08A130F7BB /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = "<group>"; }; - 9F8CD460A73D71C2D3A8E0E8F814D554 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = "<group>"; }; + 9F8CEA997F00BBDBFCDC9BD09A8328D9 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = "<group>"; }; + 9F91FBD8C02402B3464620BBA5223D9D /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = "<group>"; }; 9F932A9BB7CDCDC99B0DD8738E4601E0 /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = "<group>"; }; 9F99774561F4F74FC925E3F5E9EBDD5C /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = "<group>"; }; 9FA394ACA7C44B4C9B2B5516E8F68792 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = "<group>"; }; - 9FB7118678737F1D828984D9FBCFEB0F /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = "<group>"; }; 9FD00D90B96515E7533FA8D18F3EDA47 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = "<group>"; }; - 9FD7052A351747D664E17F8FBE159F1D /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = "<group>"; }; - 9FDD2D97541D42C063C182563CE8790D /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = "<group>"; }; - 9FE14EC7C43D3C7E2B050C14FB1B7BB0 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = "<group>"; }; 9FF35AEBAC7F7D5E574BAE659430B77F /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = "<group>"; }; + 9FF3DD9B9C1335E737870C0ECA10AD76 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = "<group>"; }; 9FFDEF6694588702A45512615587873C /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = "<group>"; }; - A00768B9736810750DF8C347AFFDD01D /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = "<group>"; }; + A0127FEFFEA4DAB715DA8E9814B88B22 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = "<group>"; }; A017F7F754B9A7F93BB1415B725A3A4C /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = "<group>"; }; - A033285CF9E0FDB37D8B7BFED5384618 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = "<group>"; }; - A03ED0B23682C26061FC7A1BC1C4C227 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = "<group>"; }; + A03BE085C2E0CAA3999ED8B435C119A8 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = "<group>"; }; A0403F0F9C1AC41CDC6A65C8AA14B4A0 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = "<group>"; }; - A0563E8654E21295A870ABD2E382B469 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = "<group>"; }; - A076E128ACA2FF44ED8BE10CE4C8F2D9 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = "<group>"; }; - A0851E6B93E2FB7E1A736E6634DDC0B6 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = "<group>"; }; + A040E75C09052596DFD08A69E7D684A3 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = "<group>"; }; + A055F23165266D3F07A6EDFF9AB5D5C8 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = "<group>"; }; + A07458186537F860067BEEAE8BBAE3F4 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A086110668900BFCCD33139690B5B7F3 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = "<group>"; }; A08D7DDCA509340F213D190D49CD7EAD /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = "<group>"; }; - A0A414E75B439F2C6E3886ED93515E9A /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = "<group>"; }; + A0AE1F909E2334BA4F0E4BDCC7D9C45C /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = "<group>"; }; A0BBA4F76E2DC81178258BFB7841B712 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = "<group>"; }; A0DB89335435413CEDC7E2202D0CE2AC /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = "<group>"; }; - A0EC04FE8D805241D2EA83268859371D /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = "<group>"; }; A10567661A3C607D86AB9C073080A322 /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = "<group>"; }; - A11962794E02348B61C4A3A1EACB896A /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = "<group>"; }; A11D53345D3B620DEA2CDECBB877F258 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = "<group>"; }; A11FDACF933BFC48C7F25902DCD57908 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = "<group>"; }; + A1213869BBAAEDD07DD56606232430C5 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = "<group>"; }; + A1302FD8C4F8F08CA345E43026D50654 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = "<group>"; }; A1530C9267EBA1AD0A80EE430F809CC9 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = "<group>"; }; + A1534F22DB54903C6CC1A9A16D27592C /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = "<group>"; }; + A176CFF797D0340E3AF784BA6E4A8770 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A193AC76514F0C4951A51C6AB1E59996 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = "<group>"; }; - A1973F6B4BFFA90839CC5187AC944C3B /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = "<group>"; }; - A19FAFD73781DB7C583CF0D09793324C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - A1B34F793BB4A4BD310F4E37C2D05C53 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = "<group>"; }; + A1CE6E3724E76CA87B21FCF16692A6CC /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = "<group>"; }; A1D3BE504280FA7FCA187A950D48BCB7 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = "<group>"; }; - A1FC6DD984AC4B54F288FAA832419AB8 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = "<group>"; }; - A2157B8FCBCB981A4B4B8E321B1257B5 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = "<group>"; }; + A1D6AF6DB4FEDD98B983F99933FB44AF /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = "<group>"; }; + A1FCA69C255F8634784234D96A3DCC72 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = "<group>"; }; A2191BF801355D0DA84F034E7EB2E83C /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = "<group>"; }; A21F660C6F4A88B7477EE0F663966EA6 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = "<group>"; }; - A22D8E1F764C39C22E2B1892BF3E1083 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = "<group>"; }; + A22165C603CF86BBA62AFC8C08B2D7EB /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = "<group>"; }; + A229D9F50A2C098F0B13EEFFCFD153DB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + A23D607E7B3F516107A22AC845C14446 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = "<group>"; }; A250758E44F4A5F1DCD80E124D73D269 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = "<group>"; }; - A280CA55FF78171F1ED13779FB551932 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = "<group>"; }; + A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = "<group>"; }; + A27F1F03F7BC60CAAAFB4C8FF1386CAA /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = "<group>"; }; A284C22076F6E210152F6954E6818433 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = "<group>"; }; A2954EDA5F99AA994A574222E19F60A3 /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = "<group>"; }; A2D8DC65E6AEE62F2E8C0681847C6771 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = "<group>"; }; A2E40DD2E9D2404F4D1228100017FB63 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = "<group>"; }; A2F36FC3A058C8D9905595D65EF6FC03 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = "<group>"; }; - A30AD162DCF22E87A691AFF5A79B779F /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = "<group>"; }; A313721673F604A436A4747E7320DAAD /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = "<group>"; }; - A33F4A150E190B128E29945342EFCBDE /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A349AC60BFB82575AD48E2570B67616A /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = "<group>"; }; - A35240F890D8826F82EBCAE8F7031E73 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = "<group>"; }; - A35FCE638532BE2CF49A83FA6F049190 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = "<group>"; }; + A348072444435A6F99F3323DB6778CA3 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A36CE3017C1F5A32EBEE065CC8855CD9 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = "<group>"; }; + A36D18CC47B5E1224A000592EDBD934A /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = "<group>"; }; + A3832A17FF69F44CF1382D0F01546B2D /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = "<group>"; }; + A38575B3B8EA9243005150A893EA2112 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = "<group>"; }; A38F9408FEA21E580CAEB9C2D22CB895 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = "<group>"; }; A39ED56B7975173BFDB659D2B177FE9B /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = "<group>"; }; - A3A2A948A775EBA953523572A01A49AA /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = "<group>"; }; + A3AB6894CE98026540443F3ECFFD15A2 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = "<group>"; }; A3B579D0718FD897A3F357CDFDAAC02B /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = "<group>"; }; - A3BB754709BFFA7AE6D79432A1FA5AD5 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = "<group>"; }; A3CC1960619FE028FB7D20D56AC1819D /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = "<group>"; }; A3D19E82F6253E5548882A5A39A7E6B9 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = "<group>"; }; - A3D1B2134973AC4C4962B93C3F89BDF6 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A3EBD396E277E6D7DD574B77821C8CCB /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = "<group>"; }; - A3F2F5ACEF86F1A3B8D0D03F13932E96 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = "<group>"; }; - A3F412A544C3D5566023402CD9659172 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = "<group>"; }; - A421CD7BD3D018153A06448950F75D82 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = "<group>"; }; - A42C79C007C2037DAFDB59C951EA7244 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = "<group>"; }; - A46952CD02BADAC04BEEB04506A8A8BA /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = "<group>"; }; + A41064C9FA8F1A7C29EFF9F8B583AF54 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = "<group>"; }; + A4392652ED21B6B19AF66D94D815A783 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = "<group>"; }; + A4434D42050CE6D5CA8C346DB7F50E9B /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = "<group>"; }; + A462A2E1387C3E05B13E454FD9C7C5C3 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = "<group>"; }; A4853219A1811FEC6666B9C528C04D9B /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = "<group>"; }; + A48F2BC58B4B65559CFF40E6AF5D31D8 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = "<group>"; }; A49371BEDC993D9EDE2700582E038300 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = "<group>"; }; - A49BB0AE574642D5B3478A12B2C9A7E2 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A49BFFF090944480DC816615C37D8111 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = "<group>"; }; + A4A57AAD4F3D69657E8D24CBC1659818 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = "<group>"; }; A4B9E8D6A2DDF29D5C5F6F40BA57D60F /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = "<group>"; }; A4BCECFB05C7458380B93A21BF9E05BA /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = "<group>"; }; A4C9F319863A3E9AA126317EB324BB45 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = "<group>"; }; + A4D47E197DC0F3E2DBF3C4445BF0A1AC /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = "<group>"; }; A4DBE32307681C219297FF5F98951B89 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = "<group>"; }; - A4DE3E728AB6A5C13258AC48C82BAB34 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = "<group>"; }; A4E5C1A08ABAADFAF8C3B9A3F8F5E8C5 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = "<group>"; }; + A4E651B07840425D4D95B5723F1449AE /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = "<group>"; }; A4F1BB4AD11B8B0876DE2E21A6833B04 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = "<group>"; }; + A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = "<group>"; }; A51ABC586C299853B08123F512C1DA70 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = "<group>"; }; - A534064DAF2097B7FAD56ACB983891BC /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; }; - A539E5278B1B28BA9435DC897F3492EA /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = "<group>"; }; - A55D36F697A657E87352BDF4ABB357B6 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = "<group>"; }; - A56AFF80E1ED8C00875162E82D2EBBCC /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = "<group>"; }; A5711F1C2346B03337D5B19F4C3979E2 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = "<group>"; }; - A57397291785F67E789FFAF67EE42D81 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = "<group>"; }; - A57512E45F1B0781C9F77576467456CB /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = "<group>"; }; A57941512BEF6D020A629A9322962054 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = "<group>"; }; + A57EAC7845873FDBDBDF56091C146267 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = "<group>"; }; + A581FCB78821DDAE95B2AE064BE4DC45 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = "<group>"; }; + A58D33408D0EB2921512E467A46DDDF7 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = "<group>"; }; + A595BE706668D105B4C902B56126AC98 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = "<group>"; }; + A59A3367288ADAB08AA4A94015AEAA17 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = "<group>"; }; A59AED1459218BFDCBC71446311AA614 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = "<group>"; }; A5A10F34324B6C322E444D3BEC47318B /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = "<group>"; }; A5A55FFCE4292E4E32CA21DEBA8CFD79 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = "<group>"; }; + A5A7654B4C703570917FC019CD6FB717 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = "<group>"; }; + A5B407CB7FB98FE235ED25666DD2A4A7 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = "<group>"; }; A5BB2FFFE6D3DB392ECC57F154030858 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = "<group>"; }; - A5C2C297EE96B3D047E7C74B236045AB /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = "<group>"; }; - A5D6458122916DC0D27375741819D5A9 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = "<group>"; }; A5EA031AE10CB8C054D8F8AD27C8D814 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = "<group>"; }; - A5EC5AC6C9B3D5D80D2091F757CE3A1B /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = "<group>"; }; - A611367A07420ADAB8576C1B142EEDF6 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = "<group>"; }; - A614829A6886D1836F2A11CD7CAB932B /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = "<group>"; }; + A61C638B1EA38EE4558EF4004C289962 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = "<group>"; }; + A621B444001C82637FAD3190B2A8A5F1 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = "<group>"; }; A62B7F9D8BA15A75694B82E48D5AD161 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = "<group>"; }; + A638D0FA7AB3205099F7E8D5BCCD88E9 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = "<group>"; }; + A6492D18FCBF482B6DBECD94BCFE3721 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = "<group>"; }; A66D1EF142F4FBE3A1B7B2FE7DB0D4C3 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = "<group>"; }; - A6718C4C72542DF368C21A46B50D9DA5 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = "<group>"; }; A673645F2A933818C12FFBA617D84A8C /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = "<group>"; }; - A68B0255D67666C49A01856913A738CA /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = "<group>"; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A69882B252866215CF34152328864C90 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = "<group>"; }; + A6AE3A16051DF5AC6EA9519C91C6D99A /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = "<group>"; }; A6B1AF818C0C12B3452CDE12F36C1B8C /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = "<group>"; }; + A6D0908A5C598184049B728C746E1834 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = "<group>"; }; A706122612151D161E2D2E611C819ACE /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = "<group>"; }; A718E68D26BDCFE9B9CDA4F834EF9883 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = "<group>"; }; - A718F215712FCDE08A545C92FAB53377 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = "<group>"; }; - A72D366C70148074E01800574416A0A3 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = "<group>"; }; - A739C184D93C5F304556D604643C8A5A /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = "<group>"; }; - A73DBDF91A696083D84B6D4667A82162 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = "<group>"; }; + A73FCFE546A7888540B3404F38F752AC /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = "<group>"; }; + A77464EF37DA5927C152BFF014210D1F /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = "<group>"; }; A778DDD581ED2D015FDBC2547EC4FA0D /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = "<group>"; }; A781FCABDE816936461B692A120A64E1 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = "<group>"; }; A79382FD3D2B0EBF6A69C693409B1953 /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = "<group>"; }; - A7A3F3F6748EF1A7AF335A3A5A8D5A59 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = "<group>"; }; - A7A7933007CDF22855F7CE2EED3BDFDC /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = "<group>"; }; + A79CE02B4FF34545D6C0A5F45038CD6E /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A7BAB4ED12A4A8C6D1E464A369EAE565 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = "<group>"; }; - A7C2C3D21B18AE4B88EDD6EB6D07D636 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = "<group>"; }; - A7CD7555A2F7D9DE80BFC7AED8C03C55 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = "<group>"; }; + A7C051B36684AD35D3B9E0855DC0B533 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = "<group>"; }; A7F14F402D392BE57FBCF2876E86D236 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = "<group>"; }; - A8008C2A3648EB9169EDF02882F4F9DB /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = "<group>"; }; - A8041E4B8179B499EAB9058EFA1E135C /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = "<group>"; }; + A7FF20675CB7892F4FB555C651D6B8E5 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = "<group>"; }; + A803CD8A3F7CDDDA5937C6C863FFB920 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = "<group>"; }; A812F7CBC28C9A871E97E273CBD9202C /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = "<group>"; }; - A816BAA178104A152A615160293198EE /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = "<group>"; }; - A81FDEFD987E030C65A07B6094A19EBA /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = "<group>"; }; - A82505936A2D23D9769DF34C052ED237 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = "<group>"; }; + A8134D4E8FEF2248A87CFF788DE69B83 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = "<group>"; }; + A815042718BB3946437B56DA39AB42D0 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = "<group>"; }; + A8221DB088F1F97FA01608BCBB7F6805 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = "<group>"; }; A84B2126B26B6F8F513DC38027D01476 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = "<group>"; }; A86A3C6E957BCDF5D9F50C3BA611EFEA /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = "<group>"; }; A87B512D4AC3E8861D8E208D7977CFDD /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = "<group>"; }; + A88369EA1BA308AADC69E71FC52944A5 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = "<group>"; }; A88BA7B3FD0C44D083A54567E699CE9F /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = "<group>"; }; + A8900F07EF4F2C1C02C4706CA08672AE /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = "<group>"; }; + A89985B8D6B7454457C079CABB112119 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = "<group>"; }; A89A5E13A345AB0BD7A3A25759280635 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = "<group>"; }; A8A52A66D6ECB595B10AB378B99C8CFD /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = "<group>"; }; A8A6F0742B14C8D349D9BCB716825AEC /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = "<group>"; }; - A8BA79110A3BE9DF63F0E30BBB91DB16 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = "<group>"; }; + A8C28AB7DDB0812AAA3FD5A41BAFCD6D /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = "<group>"; }; + A8D67A0C91A2C8F802E131D64416F0A3 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = "<group>"; }; A8DF85B78C24F26356B7E17B438D4F25 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = "<group>"; }; - A8E2EB32A486C6F16DA6A1DE47AD4C26 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = "<group>"; }; A8E65D4CAF118B5E5E0C783A74FE67AF /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = "<group>"; }; A8FC42D4FC5B5C609C187742BBAEBA82 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = "<group>"; }; - A9062C999CB15334EE8AA7068C54EBA2 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = "<group>"; }; + A904A75FC50154E2FBAF567CB3737BE2 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = "<group>"; }; + A90863DAF14AA25BBCFBE951F1520854 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = "<group>"; }; A90E37B9D68B7238C8515BEA1EBE91FE /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = "<group>"; }; - A91D4BB1CF8EFD075D25BCF7E2FCBB8A /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = "<group>"; }; A9428250FEDA8D2937756E27BDCB64A1 /* CocoaAsyncSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.xcconfig; sourceTree = "<group>"; }; - A94D9D6D0B5CFC35978D148F1055B476 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = "<group>"; }; - A95FC094089C7A7E401E37E1963CC34C /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A9632268AF154A6CABA4DAE26034D98B /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = "<group>"; }; + A98F0C5C2BBC051FE79A61AB612C24E1 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = "<group>"; }; A99491D7D2C016F06275D579B43CF450 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = "<group>"; }; - A99701059C883EFBE32DCFD2FF0BE5D0 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = "<group>"; }; A9EFFD37252C00A7675848AE074A106D /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = "<group>"; }; AA05F8B4E8AC7C72A5E0CDFAB837D591 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = "<group>"; }; AA2469C485F9FE943B5569FFE2527565 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = "<group>"; }; - AA284D90BD859683E243E61776E65020 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = "<group>"; }; AA29C7A7535F434B867178E6338D26B5 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = "<group>"; }; - AA2E4C12A402ED62394D590463CEF58D /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = "<group>"; }; - AA468CE72F78D8E290F78AED79B788D5 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = "<group>"; }; AA5459247FBFB4744801D694000EE1A2 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = "<group>"; }; - AA63B2B338AC0F862E40D79C7F85CC77 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = "<group>"; }; - AA6EF3023347BE8EA256A3376B273208 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = "<group>"; }; - AA75DD05E373E27902ABAD051F5437D1 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = "<group>"; }; + AA661057EDE002BB9254D1370C4875B2 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = "<group>"; }; AA766FEB8AFF1DEADB72485E6526D9DE /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = "<group>"; }; + AA7D691E6F6853403B602F10AE7EA828 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = "<group>"; }; AA91F6C11EC7314478FDE2E0B898D74D /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = "<group>"; }; - AAB8F77D50A37DD55F97E7E8D029A44B /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = "<group>"; }; - AAC1FF6A3E958EEB34084535FBCC6A2F /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = "<group>"; }; AACE10BCD9204EF7D1721622F2974945 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = "<group>"; }; - AADF067596BCA8EE8C2F51825859E1CC /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = "<group>"; }; - AB0BE974166196D05E4D701E3EF40D0C /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = "<group>"; }; AB0F4F98997582A5EC1D8A33181BE067 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = "<group>"; }; + AB15DBA4D06B0F95D1DC5B7E7E59C822 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = "<group>"; }; + AB19C2DA349B77375CF0B72E4B2AB3EB /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = "<group>"; }; AB3A000770E89F8E15885543D6BA2CBD /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = "<group>"; }; + AB406EA6A821F2164139861136834116 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = "<group>"; }; + AB473145F59E8DC9380B2AB5CC8F00E8 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = "<group>"; }; AB5FF49744979D40ECA028E79C2184AC /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = "<group>"; }; - AB678E151B6CA72E61487EC8F7721D0B /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = "<group>"; }; + AB627D2AB477CA3CD3CD2976B9D5382F /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = "<group>"; }; + AB67BCAB258D7E051278D3BD076EB93D /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = "<group>"; }; AB6BBDC47E1FA240EF6BEBE531278F14 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = "<group>"; }; AB8C7B604F47671DB78576D860213C75 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = "<group>"; }; ABA8FBB1DDA1BB0BDF1DD400099651DE /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = "<group>"; }; ABABCF020F0069E7D380C9AE62914445 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = "<group>"; }; - ABB1C48E91B0A73397FE4BB9D665CC5C /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = "<group>"; }; + ABB47D5BD2CA888AF3BD370CF1BD2E2B /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = "<group>"; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ABCF67441147F7505A4D4AE3861302A8 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = "<group>"; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AC167B708F3EDC9C2F0762A04B13A3D9 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = "<group>"; }; + AC1667AFA251D0B12C4A273F4A6DB8F2 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = "<group>"; }; AC1F45606A44AE7B7A4C42703FF656DD /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = "<group>"; }; AC288156FCAC5528EE9A32A0D0BD1666 /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = "<group>"; }; AC3008B2D7E12E475B9A4DC48370E2DA /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; - AC3319A4659732033D2DE2FF9C3DA9C4 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = "<group>"; }; - AC4CE7744E6CF0D96084F2DAE299EF2A /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = "<group>"; }; - AC4F966BA5BAE51CD8161E3BFB19A697 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = "<group>"; }; - AC5A45EEC900C2AEDD220E99C42F75E2 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = "<group>"; }; + AC334934F62742F915EBBBECD557BA52 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = "<group>"; }; + AC58807FCD479A6F2650B746BB4FBFFD /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = "<group>"; }; + AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = "<group>"; }; AC86F16A869C08B98514E4FAD3877FA2 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = "<group>"; }; + AC9444E09C628EA7CDDE4ABC5831FBAF /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AC9EB56BF7B71436C19576C6ECAB7DBA /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = "<group>"; }; ACAC7108EA37ACF52A7DC94BAED1242B /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = "<group>"; }; ACAF043733D30B36FFA455731AAD69A6 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = "<group>"; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ACD580006324A9490802733D59817A1D /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = "<group>"; }; ACDBF46C9C94D75065ED86ABAEE2A5A1 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = "<group>"; }; - AD0A359FFEA665944E4B5F90E42E6223 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = "<group>"; }; - AD30C5FCAE78AB3C213EE790DC5B16F1 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = "<group>"; }; + ACF0721D04DEE6D5C1E56141C5C8E4DC /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = "<group>"; }; + AD1C24B6F59776BBD97B229E9442BEC2 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = "<group>"; }; + AD2CA54231C14F8186AD91A1F2145F55 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = "<group>"; }; + AD313F7671D7B76D259DAD10C0545981 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = "<group>"; }; + AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = "<group>"; }; AD3DAF7158F5DEC8FF77922EB11427C0 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = "<group>"; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; AD4E1057656461228D8BC02EC88E2FB4 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = "<group>"; }; AD584385DF132AD660066524FD6C7DBE /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = "<group>"; }; - AD5D636C30FE99E5DAB7889D8B45D927 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = "<group>"; }; AD8424E56E214DA123484849471B9F60 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = "<group>"; }; - AD855D255D89FB3524D71E5CEED339DC /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = "<group>"; }; - AD8A209E7837A1043F88C63C4B960221 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = "<group>"; }; - ADA216A86E675AF295541A6639172074 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = "<group>"; }; + AD8D144DD7C6C78299E910EA3D35394D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = "<group>"; }; + AD9C7858F5095094776156A4627310E3 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = "<group>"; }; ADAC875F4B48A2C4ADC94005F6B4478E /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = "<group>"; }; - ADB31A9382EFF429B7FA98835F28AB2D /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = "<group>"; }; - ADBD2E2A0CCC65EE9926134BEE529124 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = "<group>"; }; + ADAE76A88219B5296DA02CDD4ECB2FBA /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = "<group>"; }; ADCC1A32A733912BC4AECBC8316FCC6A /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = "<group>"; }; + ADDE125601B8457E39EAE7E6A7D98303 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = "<group>"; }; ADF64367666308B42395B49531BE2FBB /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = "<group>"; }; - ADFC3B2C5AF11808B58CE85568ACC0CE /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AE15D1EDBC3474CB8B2033077058368D /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = "<group>"; }; - AE3B096A68F34EC3F272AB427CE2F32E /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = "<group>"; }; + AE1F33BCFDCCC075AA536A7B3EA7B04F /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = "<group>"; }; + AE2BA269FC8F7B708D9C56011444A49D /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = "<group>"; }; + AE43C7E09828679BC5E0A82EE1A9AAF3 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = "<group>"; }; AE56093E9078A473770ECE86FFE0A77D /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = "<group>"; }; + AE5A2D2336BDACC59D1DDE28C598F1FB /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = "<group>"; }; AE5BFE137AFBF9CFA0EFBEAD1BED7D50 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = "<group>"; }; - AE5F2F939A7D13C891AA61A45FFB7B56 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = "<group>"; }; AE72A5CF938D526606C348B5A2B8B6AC /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = "<group>"; }; AE763C2D1EF03E214CE34CABCDB31EFC /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = "<group>"; }; - AE77AA0A1B82E98FE0AD8EA7D4B30B70 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = "<group>"; }; - AE7CAB505A0F3E3FC405F3CD5874C7CE /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = "<group>"; }; - AE7FA7CA98837A65F14935927BC28B7F /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = "<group>"; }; - AE83F13041CB58575BDAA697C2391857 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = "<group>"; }; AE88B84C1DA2D74F566C9C1F7F72CFE4 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = "<group>"; }; - AE9A53CF78DEB8A99ADF8962D9F6FA4F /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = "<group>"; }; - AEA9389FB996FEF7B5314F042E0E1CF5 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = "<group>"; }; + AE94C387DBEC7942C7E5AAA1ACC5C13D /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = "<group>"; }; + AE9645B6A346D32DFC512DE5ACE3F419 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = "<group>"; }; AEC82876CF0DF742EAF9B1FBB466153A /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = "<group>"; }; - AEDB66F00D83E76FA6937DC26DD24FB4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - AEDCB4110F45A76F11457C2BB7165A91 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = "<group>"; }; AEE5A96ABF96049FAD05031B5C5209B3 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = "<group>"; }; AEE97EABF69D45AEDD71B127285F5E10 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = "<group>"; }; - AF0E780D6DE9CF99F8307B297E6DC820 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = "<group>"; }; + AF023C883F422DA6A47D2C7FABB249A0 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = "<group>"; }; AF245F65561B9AEF79DAAA1575BBEABC /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = "<group>"; }; AF2EAA45F70C4D1A366106F071FD2362 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = "<group>"; }; + AF316CBE0CA5A9ADFD961E4ED274B55D /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = "<group>"; }; AF3E5BD2D554C6B5A5D4612D81996D2D /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = "<group>"; }; - AF4B41CDA8779639320AC3BC88A739BA /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = "<group>"; }; + AF4B0DD7FBEC49BA7A3A041162A97120 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = "<group>"; }; + AF5DA9FACDF827C7904FE02231E8A02B /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = "<group>"; }; + AF64CC66CF7F5FF11173BDC12E514A54 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = "<group>"; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AFC622BFC4F3BDE0B5F0FF8E48845FF3 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = "<group>"; }; AFEA38054B66449445FC6B2F2A286675 /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = "<group>"; }; - AFECC51B07E34A8F3B2628E70F3F713F /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = "<group>"; }; - B00825C918D08CBEA52644914E1F831F /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = "<group>"; }; - B046608AA8A7D8A59531002F3211BE4C /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = "<group>"; }; + B04A3000D987FFA9375C5040F1D14A33 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = "<group>"; }; + B058920ABF87FB0263219FD9D0228A1C /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = "<group>"; }; B066A05A05739142F9F5D70FA459BC44 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = "<group>"; }; - B0684322EF78D44F37B45B65AED3DF99 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = "<group>"; }; - B07ABDDCC7DFB994AD121CB156D2AF2A /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = "<group>"; }; - B0804DDA19990B55B19859CB56F43267 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = "<group>"; }; - B0821E0D1250AB35A564499E2E20FE1D /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = "<group>"; }; B08A96271A96C96F79C23505E40F7239 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = "<group>"; }; + B0A371D5A21AC68639256F45BDCA24D4 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = "<group>"; }; B0A3E4E88F1771BE23E4E08DD7A2FFF8 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = "<group>"; }; B0B19B592656BD9CC8100E880516AB3A /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = "<group>"; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; B0BB61794B6CCF1BC51DC9D0D706CAD9 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = "<group>"; }; - B0BB66009B2D59F0F11BFD2528394010 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B0C504425206F886868AA7DB1977B097 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = "<group>"; }; - B0EFF16C475E5AF42D1172704B35E797 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = "<group>"; }; - B12493A03802D21108150EA1D338747A /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = "<group>"; }; + B0C916D794C3FE779C110E14F1BA1A61 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = "<group>"; }; B160D2C5FBA458FEA51D4041D0BCFB11 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = "<group>"; }; - B1E29109E6A7C3311A875A32A0F2C452 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = "<group>"; }; + B19328D30EFAEE6C7FD94F39C5D6FE50 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = "<group>"; }; + B1C3FBEC0791669A99849D0E5D8DF61D /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = "<group>"; }; B1EE9536804A5BAB743C11B8E69AF4A6 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = "<group>"; }; B204995C87BCE66C2F9E44926EC1E42B /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = "<group>"; }; B219962AC4DDD3DB4BF1314B52062DFB /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = "<group>"; }; B21E31C8653B3F3ACA24962099B2B330 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = "<group>"; }; - B23BFDF777ECA6B492FBFCCC327F4F1C /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = "<group>"; }; B23D6FDF93DD1B322EDC854983FAE2D9 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = "<group>"; }; B2464C159201BF6E15435C7D2386F60D /* Flipper-Glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.xcconfig"; sourceTree = "<group>"; }; - B246F05830DA278B41314EB5D4633A40 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = "<group>"; }; - B2B23E78F9CD6F4E202C67819674071F /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = "<group>"; }; - B2B470489174C16CAFB511EF1E74C085 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = "<group>"; }; + B25E6C1397474967CB632772D4F63866 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = "<group>"; }; + B27AAEEE0353A88DBF876477948D4291 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B2DD1E826DBBF52DF6080A7F85F3D688 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = "<group>"; }; B2FF725B7868244D2B9354B579024EFD /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = "<group>"; }; + B3143AC7D783B32CE3A0370B189EAE04 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = "<group>"; }; B314E38EF1834612C35C527E15D00B3B /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = "<group>"; }; - B33755D1B4082600047A0F3D50E50CFA /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = "<group>"; }; + B3262FD84C1E3BB00C4CF6EE49E677B5 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = "<group>"; }; + B33E2DA487D6E6682DCF63E4E5299C0A /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = "<group>"; }; + B33F8494FFD6A13CFAEAD5298CB749D7 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = "<group>"; }; B3485A505BF6FDFEDE8C828BF52B50E8 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = "<group>"; }; - B35331924E53F756D2A262665CAFF1D7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + B35CFDE05E5FE5FAFAC03053278BEC26 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = "<group>"; }; B376A4DB64A47998145400EB1CA0826C /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = "<group>"; }; + B3878F1E993194C0070DF632755735F6 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = "<group>"; }; + B38DFD28341D689393C7AEC5C063A64F /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = "<group>"; }; B391B9CA0B494C6195981505D1E076FA /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = "<group>"; }; - B39312FD3B2201859257A070D87CFB58 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = "<group>"; }; B3B471911019534847220C02ED65F8EB /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = "<group>"; }; - B3C0F98E9A89EC231E826EE7B671374E /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = "<group>"; }; B3C43F2BECBC7AEC25B056DD35507702 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = "<group>"; }; - B3DBF88C1827A1A20AC6289CB392725B /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = "<group>"; }; - B3EDC40D5E5B0FFF9A9321F511E871A4 /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = "<group>"; }; - B3FE4B0A71FFF0E6C533997C0590F4B4 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = "<group>"; }; + B3C7C8627F248FF71686F8F15C3F7609 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = "<group>"; }; + B3C7E4123287CD6897A3CA379BE17A43 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = "<group>"; }; + B40930E9744DF8E998CB3411B59C0FF3 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = "<group>"; }; B416B5CA7CCB6B57D7B8BAD721E0C1DF /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = "<group>"; }; - B41E6E28265D1B7901EFA090AFA0977A /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B431121E46F939344C25942872284812 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = "<group>"; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B4579C87C56B608ED152641E59923EC6 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = "<group>"; }; - B4650F6C3DC189303955FCB4A4CDA802 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = "<group>"; }; - B468703EF6A868656913D9128FA6C816 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = "<group>"; }; + B4393FAEC00309AEE6A2E659D8C2D635 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + B44FCB6AA07EFF8149CAA00C18C413A0 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = "<group>"; }; B46E5E9F119798C5DE2B74EF13607D1E /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = "<group>"; }; + B48188F0A471F30821CE698FBF7E9133 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = "<group>"; }; B491842CD162C3BC7BCFFD88A22AB94F /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = "<group>"; }; B49A5CA9B65652F90ECE77BE649EB704 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = "<group>"; }; B4A21FD613E3CD8508D15E894998478A /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = "<group>"; }; + B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = "<group>"; }; B4D7F1C026B1CD62D1E7C020DEC220E3 /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = "<group>"; }; + B4E23666F6328BE78029301BD16FA1E3 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = "<group>"; }; B4E3C86733FC37102F88F15AE9941EDB /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = "<group>"; }; B4F147C150A48C9E88C17FC5E015667A /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = "<group>"; }; - B4F614730B0512EEAB96CD2F88595C42 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B4FFFB601246CD01C2D3DD65FB80D685 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = "<group>"; }; + B50440F83C769FB72C446E4454AFE6D2 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = "<group>"; }; + B524BF132646DAB58666BAEE74F53B86 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = "<group>"; }; B52681B3182A2D46267C820E3699F32B /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = "<group>"; }; + B526D300BB2FC69340103E1D370645E0 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = "<group>"; }; B529A78B9CC2514C1BCAB8E8E35D749E /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = "<group>"; }; B5471CC595123375FF0DA18C40826E73 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = "<group>"; }; - B568BC4B29D62AFA87FD044049876E36 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = "<group>"; }; B56CD397A4A2CEAC002000DCD9D39FCA /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = "<group>"; }; - B5DE66979ACFC098CDFA80B17DFB56FD /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = "<group>"; }; + B5CCD8A80C54F72D40316EBB155801CF /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = "<group>"; }; B5F9AD0C7C17113CB205CC5FF7BE7339 /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = "<group>"; }; - B5FC6C17D33789636AF3270BA5FAF23E /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = "<group>"; }; + B60927F207660FF1F534FEC57BF761D7 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = "<group>"; }; + B6173EB95FDD9752DE5D5A3FE50BDD39 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = "<group>"; }; B618CBAF356FE1C8D760FF63D6DD6812 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = "<group>"; }; - B631E5FB8A084E0D4D78C8C64AB5B9B0 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = "<group>"; }; - B634BB848BD7B049E27A33F03AA3E0CE /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = "<group>"; }; B6404047D3496F7DB92FABA6C69FD367 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = "<group>"; }; B64C39B4332656AD3F2E4E6BCE0650E5 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = "<group>"; }; - B64D2CFD82134D018D8D9BABA5A2A8EA /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = "<group>"; }; - B653A8080739DF00E3287CA172C34CEF /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = "<group>"; }; - B65BFB447E1E82D26B8A2668394062D0 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = "<group>"; }; - B65C0FA6FE5F4F65EA69175719D35C80 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = "<group>"; }; - B65C102AD065AC51BB431EEFFF98E5BA /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = "<group>"; }; - B65F642894D6E1F45C6EF8909641D1A4 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = "<group>"; }; B670D78AEA5F1926FD7248B63B0717BF /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = "<group>"; }; B6753785BC3312CA19994B9A755DE71A /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = "<group>"; }; - B675CEF42B5A19EFB9293FF65CBE32C0 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = "<group>"; }; + B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = "<group>"; }; + B6B18E19B3AB3EAFDD77A00D6D9B310E /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B6B19B07331D7E71D957AABF6A9D3257 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = "<group>"; }; B6C50FC767115CAE492253E1F49D9B55 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = "<group>"; }; - B6E0B583D7630D9E06B8B31A2AC8E9AF /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = "<group>"; }; - B6F9F585F3BB8BFD7D6F872E00E288CD /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = "<group>"; }; - B7000D24A1046006FD2A71AEDB7026B2 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = "<group>"; }; + B6D86900F642AF3628250062901E3B6C /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = "<group>"; }; B717BAB93B56433B8D02225FB7155342 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = "<group>"; }; - B718EC319B4FA8F689C44AB0BE65BF4D /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = "<group>"; }; B71E8C8EB282CC6A581AD96F05FC4C12 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = "<group>"; }; B72E9EBEF6A12B5430864B87015FD3D4 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = "<group>"; }; - B73FA07579954B5620E7D9938C14A8BE /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = "<group>"; }; B75933D9F226520F1F63AFDAB49BCACD /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = "<group>"; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B762A6594DFA43F71BC11583945B2AC4 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = "<group>"; }; - B7642B6414675E0BA93185302889C2C0 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = "<group>"; }; + B776AC9D8D0E04A5414B78438D7776EC /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = "<group>"; }; + B77E80DAEB31320DB5131AA2DF21943B /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = "<group>"; }; + B7932D0F1549FAE90D2EA9D758631E48 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = "<group>"; }; B794065BBDF365D9EBD7C6655644DEFD /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = "<group>"; }; + B798C6C06396008B406AB7FCBAD216BB /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = "<group>"; }; + B7A5C8CB88C1D2EDD86B5D8FA276A452 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = "<group>"; }; B7BCA931BFCBC5D7CAE2878B4D6FF022 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = "<group>"; }; - B7BDEC209D0DCDFB42D3449AA932720C /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = "<group>"; }; B7D113CE1DC9A37F7B085B0ECA42F75B /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = "<group>"; }; + B7E7467BEE8E6F86B0DCABC64CF81B8E /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = "<group>"; }; B7E893291B40C123F6EC0C9A4AB35FB6 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = "<group>"; }; - B818ED8284E70A4FF6D5BABE203876F5 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = "<group>"; }; + B7EDE79C53D1A0BFB62120926DA11087 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = "<group>"; }; + B7EFEB5088F345DB3CAA9406AFE2B53B /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = "<group>"; }; + B810357A23274F0F984C0685A76D3696 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = "<group>"; }; B82AE2359819957CA87A9C9347903301 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = "<group>"; }; - B82F05E51C44511599746AB13DA52439 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = "<group>"; }; - B83F3872238CABE6CFEC5E1AD61195DD /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = "<group>"; }; + B840ED032943756ABB8E10A0DB084CBE /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = "<group>"; }; B8431C8CFCAAB610AF5886CA7FB28F3D /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = "<group>"; }; - B86FCFEB75C23E52A8A8B511AEDD037E /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = "<group>"; }; + B85DCA7215DCC24721034BA8491D07D1 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = "<group>"; }; + B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = "<group>"; }; B88423B41F85BDF119CA2DFADB166825 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = "<group>"; }; - B89D0D89E4F9F61E9AB59B9E808A89B2 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = "<group>"; }; - B8A9C400B7CEF9A75CAEFDF2CC0C4429 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = "<group>"; }; + B88C46013ACB4DFEA5D4244B205A3C41 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = "<group>"; }; + B8A8F62CD1B59B1B4A915981F0934129 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = "<group>"; }; B8B672560B173A79679DEFFBA84C70A5 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = "<group>"; }; + B8CB036643D44984F995A2F1DF3C18AA /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = "<group>"; }; + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B90463474E1454D60D3BDA3C4699CB69 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = "<group>"; }; B904F014D6238EC720700454F027CBFD /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = "<group>"; }; - B90C3A1CB6DC08458A426E77842E86BE /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = "<group>"; }; B957890B4CC126477F060EE903D4729D /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = "<group>"; }; - B95C75C36315816DE5B27F64F845087A /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = "<group>"; }; B962EE99644085C11182BFF43968B8DD /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = "<group>"; }; - B96BD06053A63EA7F4336F4176BF7B49 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B979A4CB03603E0FA6E963005C51FB3B /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = "<group>"; }; + B97E97DB7AFAC13D5E6F157E5593C7D8 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = "<group>"; }; B981F5CCF893CD06CFD03437E80DCA3C /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = "<group>"; }; - B98C43EBEB9ED9E996C65F076BCB5B5E /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = "<group>"; }; - B999E5DFA1D22363CFB1CFE9C6015D24 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = "<group>"; }; - B99ECB0D83E3C038F1B6C9C2A8BD2489 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = "<group>"; }; + B99C92243C54BCFBD07F15E26C67CFBE /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = "<group>"; }; B9A3071E0D8E8007E3BAB588CEA589EF /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = "<group>"; }; - B9C0091405189CF95A94B6A397A391D3 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = "<group>"; }; - B9D4D9FFBF24EE1515E141AAD65BE1DA /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = "<group>"; }; - B9E9DC97670C22C22ABE2B2891527DB6 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = "<group>"; }; - BA1B06059B19F22260FF27BCD9B70558 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = "<group>"; }; - BA25394971C4CB64AA8DD418868BF293 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = "<group>"; }; + B9B0ED604DEFCA10B70AAE7638FD72F9 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = "<group>"; }; + B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = "<group>"; }; + B9E91D21A3AF86FBE679D402F9D847CA /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = "<group>"; }; + BA0B40E78FBC5BEADCE390C45C701B1A /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = "<group>"; }; BA3CF7A144EF12EBE95954FC10ED1798 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = "<group>"; }; - BA4F5FC5459405787CDF2E133B7545BB /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = "<group>"; }; BA53CD80191E2DA2D6F6430CE1DC3FE5 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = "<group>"; }; - BA70C156B019DCBDB000341D0DC8E967 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = "<group>"; }; + BA63F857FA550BBB06710A27D5F76B84 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = "<group>"; }; BA7907E3054238613ED46592ACB57C28 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = "<group>"; }; - BA7ECA99F9CED69EABA22710A2079D18 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = "<group>"; }; - BA920F7A204F39086184DEF6A3EEC4F1 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = "<group>"; }; BA9A549EA28C581B319D3B66ADBA9A9E /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = "<group>"; }; + BA9D2FECCB6B5D2CFEF057A94D4FCE94 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = "<group>"; }; BA9DFE4C128C09D9E5EB1FC370C41194 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = "<group>"; }; + BAA23C1CF418176CF23145E87404A612 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = "<group>"; }; BAA3391F6EA4588106555028E4C0ED5D /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = "<group>"; }; - BAB7FC1BC2272020CF84D49FB79CB465 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = "<group>"; }; BAC48720B210406AD0EC07D11DC2CEA8 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = "<group>"; }; BAC583BC017048E348F4C7A651E76E47 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; }; + BB11F78682F5F4581E3FDA9EDCA66206 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = "<group>"; }; + BB1BF29072A4F7C70FC2C39711F7FDF4 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = "<group>"; }; BB2FDF9773480E2F063815824369732B /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = "<group>"; }; + BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = "<group>"; }; BB4A8A6BA372FDC79C395901A139CD7E /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = "<group>"; }; + BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = "<group>"; }; BB5155F3E43B110DAF3E79535861EC66 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = "<group>"; }; - BB51F09C00EC67FF83319D325DDF2EDE /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = "<group>"; }; + BB595745BB33ED2B6577CE4E3F7ED950 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = "<group>"; }; BB67F4FA9C283AF5469880D9B3CB4A1A /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = "<group>"; }; BB68B1029621082D6F3449180E194484 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = "<group>"; }; - BB6D11F38B1CF32AAF0AE12CC99427D8 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = "<group>"; }; - BB806F28280751390314A51739EAB720 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = "<group>"; }; + BB7507710AD9CEE099C15445BF9E94A2 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = "<group>"; }; BB84B24930416F99C62578B1F3EA34BA /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = "<group>"; }; BB84B82EDB64DF3AB770311125FA3C6F /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = "<group>"; }; - BB8A4204A992218DDAF54E9668F13942 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = "<group>"; }; BB9A451D14DEAAA3AD94DBE2736F4F4A /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = "<group>"; }; - BBADD20B3A1094D10FA5C2389A0F76D0 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = "<group>"; }; + BB9E5B3EFEA74F851055B14191C29B87 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = "<group>"; }; BBDC1098F40796FF93B00BF55C41C5D4 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = "<group>"; }; - BC28A84E005A3F640663857A5174AFB9 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = "<group>"; }; - BC31893C8BDF4D8D27AB86CA142274AD /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = "<group>"; }; + BBE416D50F6F76A7D7A8C9AF48F18D14 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = "<group>"; }; + BC2F7696C4C7E09B59D4C3ADB56340D2 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = "<group>"; }; BC346128EEB711DB79B71F5384BC8F65 /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = "<group>"; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; BC451CA059F0B0B1CB569B66829A1E0B /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = "<group>"; }; BC54B43CCBA34AE2D53C896C74590EF3 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = "<group>"; }; + BC7275CE001F4FCC4605B05417942BB7 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = "<group>"; }; + BC90A42F976DFA2E0DA3EBCBBB308286 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = "<group>"; }; BCA41DC73155E4E6BCFB2D091C2B7773 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = "<group>"; }; - BCA505432C2032C9BA4BAD4F08387688 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = "<group>"; }; BCAB4E18232CFF7D83C09A37E1AADCAF /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = "<group>"; }; - BCAB5717996C9E5A189E591F1C07B809 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = "<group>"; }; - BCCAFE8BF1286B919DDE61EC543B8C70 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = "<group>"; }; - BCCC5B45DC4C92260E3A1D64EDF619D3 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = "<group>"; }; - BCD5C89A00C882B5641B92D6C5C232A4 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = "<group>"; }; + BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = "<group>"; }; + BCC846BEA11D8CD633342B9E54C48FAF /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = "<group>"; }; + BCC9A9272B488D83A4EA09F1403BA079 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; BCE08215FEB482996BDC533DD5732EC9 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = "<group>"; }; - BCE7FC47E01E1113555236AD959B8367 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; BD037DC493AB6997B35B7E803E850865 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = "<group>"; }; - BD204FFBEA859FC24936E884BE2B3822 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = "<group>"; }; BD224B7991A06769084E373BD2C36812 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = "<group>"; }; - BD32ED358CE32069FAF5DF013F7EDB36 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = "<group>"; }; - BD539FB8E9853340BBBC966D4714DBFE /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = "<group>"; }; + BD6E489D62F906EF168083EA18447111 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = "<group>"; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD76F1F3F5837C4EE2BF0B840A9F71BC /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = "<group>"; }; + BD8751552E35893BDF83F6025B06D03C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = "<group>"; }; BD94B545CF0CE2E3B9229D6515A7F0D6 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; }; BDBC260F9E107A8330F46C81000F6DFC /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = "<group>"; }; BDC4A3859DB8D4A1D9F82E72C8AE97E2 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = "<group>"; }; - BDC64D47D877090B7E34D5B13B9570F9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; BDC6EADEFAFEEA3CC421D1D8706BE1F2 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; BDEFF41527DB8DB7AB27F051FD302834 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = "<group>"; }; - BDF24138049CFE68DD50C74C1145242A /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = "<group>"; }; BDF673AF32381A3BA2BFE10AD51BDAC6 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = "<group>"; }; + BDFCA872F8F308FFFFC0DDA2B70D7B88 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = "<group>"; }; BE0352323548C847DD880E0DBC955E77 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = "<group>"; }; + BE1ADD1FF39C1129F4E5A8E2C8C8ECA5 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = "<group>"; }; + BE27740D59217F5C5C5DBE3AC02D64A0 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = "<group>"; }; BE370EB5ACBFEDAC95A623C204E89B60 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = "<group>"; }; BE445D0B15F8DF1243B7A0F53F6CC68E /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = "<group>"; }; + BE507034EC91D662EA23C3A4B8002D1D /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = "<group>"; }; + BE6C7B879BFD452E4DCD69E7D8407DB1 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = "<group>"; }; BE815080F7E80173CA594AFF25777BA4 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = "<group>"; }; BE86EF1665A73265C0AE5A2B03F40783 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = "<group>"; }; - BEA79E45CD6C4B455D971CD4CEB2489B /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = "<group>"; }; - BEAE5B8B071B90BC75B81752AC66B8E0 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = "<group>"; }; + BE8B80ACCF53BCA41AC1082A7BFA65EF /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = "<group>"; }; BEAF58E01C33A2C8648ABAB5B76051A7 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = "<group>"; }; - BEB33D2C4ADF660964E3F5A82B96D7C1 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = "<group>"; }; BEE19D01E393D6AED4889E0FE6D0AC9D /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = "<group>"; }; - BEEE1539257DAA24137CF84BA756B2F3 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = "<group>"; }; - BEF008EB8566C864335F8BD6BC468ABB /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = "<group>"; }; - BEFC65B0B65CB89C996D4527B32D9DC4 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = "<group>"; }; - BEFD36CA4DA8A5B84DD7172A8E9535F5 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = "<group>"; }; - BF09942E83C73627B0FAAE136AE8CB69 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = "<group>"; }; - BF0D10503D6F9B00F6DFF4C039262C95 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = "<group>"; }; + BF0A58843EA221CB4FB1CA0B8A1BD1D9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + BF23D26AA25EEC70A3E23E9191AEF7C8 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = "<group>"; }; BF519A127C0E7F964AC9FF650FD7AAAE /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = "<group>"; }; BF60A7D435C7C7CF382B46B1A2CDE9DD /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = "<group>"; }; - BF703B0A46DDEB1768AF3DC1C38E6C97 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = "<group>"; }; - BF704942F733256935E2D6EE6B93DFA6 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = "<group>"; }; BF7B9D2F15D064D840EC4BF5CE4EBAF2 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = "<group>"; }; - BF8128D5B323B8A9C9ABA1B70795E667 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = "<group>"; }; - BF9839EEBCBDE13A9BEEB079C11748CC /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = "<group>"; }; - BF9D966F20ACEBE1C1C47C88988E193E /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = "<group>"; }; - BFAF61CE6AC7708F55B2EA740B8B7C66 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BFC97B991341A398907D208BF58A1650 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = "<group>"; }; + BF99D3FA1B59D96BFE371B6BAC43F123 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = "<group>"; }; + BFA1EF4D9A7595A080E824D231F1C702 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = "<group>"; }; + BFB1789515B4B57A57BBA01180625822 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = "<group>"; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BFD4AB29C51CF8BDA8D6DC0DFFFC923D /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = "<group>"; }; BFE33B318F22862F845097FDCE5C1058 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = "<group>"; }; - BFE66F7C9D1EFDB9D680C84B0EAD5B43 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = "<group>"; }; - BFF29797236B9BD03A6BA3CBA108FEE3 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = "<group>"; }; BFFC1A12553DF895079B0EE2123855F0 /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = "<group>"; }; - C02D9691892B3A1B07283E72A0A7802E /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = "<group>"; }; - C03A547C45B30FD111FEBF982461EB77 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = "<group>"; }; - C04F4DB4A4F8808EC3E0FF9F578B211F /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = "<group>"; }; - C072A7A62F97F6BFD1285D8A812A3275 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = "<group>"; }; + BFFC411F07683C9450E4200CA2760991 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = "<group>"; }; + C01FD55251E04D79D54389D9E2505CB1 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = "<group>"; }; + C02BFBD577016E09BB0A9A67D08B7290 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = "<group>"; }; + C048DC61E2D9E4D99D1D739E53B64635 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = "<group>"; }; + C0597431E55F8169E3324DC6051A3CD1 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = "<group>"; }; + C07C9EBD2EBB6DC37055104767E8F838 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = "<group>"; }; C07EFDAF32E458508413BF17981E2CBE /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = "<group>"; }; C087057E1CB78F04BB1E4D342FC4B961 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = "<group>"; }; - C0B61481727BBDD6EEA089C17FB9D98A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + C095144BC747280B07CA695F86A7471B /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = "<group>"; }; + C0A7ED31841E9A3740388ABBCE3A723C /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = "<group>"; }; C0BE079B8D2C7A9BCC6894400A116A35 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = "<group>"; }; - C0BF4E7D7ABA5FB0277499ABD699F4C0 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = "<group>"; }; - C0E7412E474F5417A987D514653AB0FE /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = "<group>"; }; + C0F20F742C54B26F631F05038C9BA9BA /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = "<group>"; }; + C0F2679A5E0931013FA662954ED431F9 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = "<group>"; }; C108D7A13CAD13104F3AFC3364E34AF3 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = "<group>"; }; C10B86FB420804CA03EF2E7C13B7A0D4 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = "<group>"; }; - C10C001C3210D88AE5A93FAE386DC1D1 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = "<group>"; }; C11F232104618A6DF337628AD70745C9 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = "<group>"; }; C12036796447184091DA046F4AA6FDDF /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = "<group>"; }; + C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = "<group>"; }; + C163185A8C47364FE801EA2D186E4314 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = "<group>"; }; C1692BEEAD627DEF8994CE572CFB1A59 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = "<group>"; }; - C18966B17EABF5EE73C6D4828A293FC5 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = "<group>"; }; - C196C6EE62B056C27D54B09A22E6580E /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = "<group>"; }; + C18F5EBFB911662933AB752A409FCB5B /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = "<group>"; }; C19A2135BBEED47FB1749374D067BA31 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = "<group>"; }; C1A22A0CCAA83F4432C1D88100CB077A /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = "<group>"; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C1B8302E6144ACBFD42B7B1CC9BE1127 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = "<group>"; }; C1BBDB076B66B8FACB04FB4FE96C71DC /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = "<group>"; }; C1C21254D9F7C2191C713FBCCC1E8103 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = "<group>"; }; + C1E4A437404DFDC3AF95DECB10C31E21 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = "<group>"; }; C1E5E494A829407FF8BD55A891B14826 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = "<group>"; }; C1EC005937337A3AF4021FD78FFF4A61 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = "<group>"; }; - C1EECD30BE7CAFC6DB0F5AF8F0505687 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = "<group>"; }; C20319ABD038571475EAE18DDAD747FD /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = "<group>"; }; + C204583E3149ED5B14004D44F70870B6 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = "<group>"; }; + C218912DC56D3A549EA9EFA6336D3CC7 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = "<group>"; }; C22D08B07DEC2D822A9AD9429629A308 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = "<group>"; }; - C256B4AB5F0A646BC74D4EA362C2B2AE /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = "<group>"; }; + C23A2F489E66C0BBE98BDB2082178AC6 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = "<group>"; }; + C24EE1A964E34FECB1A87A875FAEE2BF /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = "<group>"; }; + C2683D2F2E237858A50FC07DAACFCB7F /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C27AF23759BF7A8DD86385A007D97791 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = "<group>"; }; C27C187C03F06420FA43B0A4C0750F7C /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = "<group>"; }; C28D3AF9A04D627813C280AD720F2AE5 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = "<group>"; }; - C2BF47BE08DBF3F322C726C702003058 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = "<group>"; }; C2CEC68A27993B3355FC318D6B1EA3E6 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = "<group>"; }; - C2FDE110C1E900AD0F8481B3CD83ACCD /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = "<group>"; }; + C2D5BD8C0270331BC9B6E938A4466600 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = "<group>"; }; C2FF9BA9CCE6CACD1C2EE9F1144420AA /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = "<group>"; }; - C31657D92E0420C57AEB970FFEDCDE31 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = "<group>"; }; - C33183C92E539AF4523A9F436DED40AC /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = "<group>"; }; - C34E79FB63B5C9B536E757A351874A8A /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = "<group>"; }; - C36F97D7D93D5B97F862D205C4603D0D /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = "<group>"; }; - C389B46192F2637A564C7270B8ABAC6A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - C3B53679E1F1A2D3957C5AA499F38D05 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = "<group>"; }; + C30F4DA8650B821D69927FC3C47B368C /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = "<group>"; }; + C325978CFDAB8C04548FF1E460600969 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = "<group>"; }; + C332354CE32553AE1D10339068F3F17B /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = "<group>"; }; + C39A5EB4E3CE8AA00EAAAE47434F871E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = "<group>"; }; + C3B12190FAA3292458A918B4AFC24225 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = "<group>"; }; C3C6707F29DE74544B084E88253702C8 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = "<group>"; }; - C3C6B50306C26E0721495E2819F67AB1 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = "<group>"; }; C3DEC4D104F3C26CFD8A08AC5D3426B4 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = "<group>"; }; C3E8026D2B56521C2BBAAC34B4B75E48 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = "<group>"; }; C3F0242170128F0BF15004074ECE18DF /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = "<group>"; }; + C3F72457D7FEF7EA647F6E8C29B3C62B /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = "<group>"; }; C3F7DFD6177F24AA0AEF0B329765F934 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = "<group>"; }; C407E0C7DB34386D12B44F21A0804AC6 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = "<group>"; }; + C40CA3B5B9D97DCF31953A8A61A49CF5 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = "<group>"; }; + C41320A799460C4301E8ADD1A4D045A3 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = "<group>"; }; + C416507DDE2D7C53BF5DDF7DB76AD238 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = "<group>"; }; C4281F09B0FF90C20173A2A5F7208B6C /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = "<group>"; }; C458CD06CE7469FC32F205CDA8F81E86 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = "<group>"; }; C469C17BF253AE6463BA6EB1DD6FF259 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = "<group>"; }; - C48600FD869A9CFB7A36B3EAB7F7D152 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = "<group>"; }; - C48FA75930C200E93FBAE049791C1CAA /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = "<group>"; }; + C484E6A346C7B52FB7A5C7F75ECCA52D /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = "<group>"; }; C4A26B7FE8F3E31AE5EBCBEE81AC1F36 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = "<group>"; }; - C4C59082BABF59E77460D9147952C110 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = "<group>"; }; + C4A41718993E223E88F65EF3AF1ED7FD /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = "<group>"; }; + C4DB01C621BE511DA047046598329D5B /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C4E01BA3026E41228999D2A42ABB1876 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = "<group>"; }; C4FF0359587A94748FB7CE8936B901FB /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = "<group>"; }; + C50B1B626E2C3ACAB2EB1703D353DD47 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = "<group>"; }; C50C28D47E880EE339D1AD7E061DBE06 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = "<group>"; }; C5159A4213843DB8A8585B6B10AD39D2 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = "<group>"; }; + C51D3687AEB894232CDC9593833ECEE9 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = "<group>"; }; C520D41113FE32C6C9167648A90D442A /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = "<group>"; }; C52827FE3E33A2486E9F3E9A5DB53FA6 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h; sourceTree = "<group>"; }; C52A0895B240C1BAE40AE6AACF1ADC63 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = "<group>"; }; C52DE7E72F7FC1E4F8A5714111A66A7B /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = "<group>"; }; C538E3BAFE7FB9B1F45E990DDC0E9D87 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = "<group>"; }; - C5393A9EBBA821A9367B0C5547C3AE4F /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = "<group>"; }; - C553B6048128E6C5C2010F54DCFFFF32 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = "<group>"; }; + C561B80406BEB168381F3AF9E2A3004C /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = "<group>"; }; + C56C512382ED788D26B3A5277C050567 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C57CE1955BB7CFE1A4709E580CA99940 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = "<group>"; }; C584564A24FC9F29346D46E78173808E /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = "<group>"; }; C5B547F98753F73957FF249602ADA981 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = "<group>"; }; - C5C7325CEC66051B34A860251DA25FC5 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = "<group>"; }; C5E0DA99068CF1070E64E05D5F0589A6 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = "<group>"; }; + C5E8C3D3C610C6144595BD88455E3153 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = "<group>"; }; C5ECF20665EC1D3F469FF3AF289E90EB /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = "<group>"; }; + C5EF509288FDF5231D590D463F153A7E /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = "<group>"; }; C611B9834EEFF95ABA916CAEB1CC478E /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = "<group>"; }; C64F1ABE0A71785564EFEB70DA843B6A /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = "<group>"; }; - C65BEB8974E8861875369929B9C83FCD /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = "<group>"; }; + C68C178CF4D65216F2D9DACEAA476D1B /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = "<group>"; }; + C68D2008F965DB8E53784194B227ACE7 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = "<group>"; }; C6910297F97EEA607B6EFFFAB321DB97 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = "<group>"; }; - C693E043A2DE20127B01328D80181DF5 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = "<group>"; }; C6A2086E1649020F78866E0A42A03870 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = "<group>"; }; - C6C6F6060D92552F751A5A438DD7F1E9 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = "<group>"; }; - C6CD0AF3C1276B5ADD939B36CA3509F4 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = "<group>"; }; - C705896BAD401FBB44B192FC89FEA9B9 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = "<group>"; }; + C7289159049E31701895AEDF256DE9BB /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = "<group>"; }; + C72E95A79577DA868BD39B4664B30CA5 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = "<group>"; }; + C733CD9C74A357A76284D361EE462CBF /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = "<group>"; }; C73D217F3AF5A47F79A4D961287F1212 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = "<group>"; }; - C74681DA52AC839FBA23E361D4BD58F0 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = "<group>"; }; C74A6B9B15C395BFB9BB73E4FEFCC17F /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = "<group>"; }; C75A41FBF7A255F6196E1C4FB75692E8 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = "<group>"; }; + C75BFFAF2381944841560A7E0DDC913F /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = "<group>"; }; + C7735874BBB2AF5626E4052A4BD2B566 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = "<group>"; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C785C474B739364BA1A7201403E94C18 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = "<group>"; }; - C78891B5DCBCF391CDCA0B88900CFB2C /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = "<group>"; }; - C78D65F0765AE4F6CB773F2AF7C07C5A /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = "<group>"; }; - C7B0CBF67643CF4AFC843A4A0E8AB977 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = "<group>"; }; + C78AED4A45BF8EBFEB1300A407736A56 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = "<group>"; }; C7B5E92950A22AAC32BA05BA9C3AC80C /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = "<group>"; }; C7C284DB208CAE466AA7BFD5AE0DE3E4 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = "<group>"; }; - C7E8FC26BCB6C61166A1BE6D4E2F7F2A /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = "<group>"; }; - C7F5FB874B08672C02FB2BFC14D2D529 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = "<group>"; }; + C7D5215B0BDA835A65F4F5C7BB27358B /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = "<group>"; }; + C7FC31A9FFCC4A9ABDDD38B97CF17C38 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = "<group>"; }; + C81302D8251A05E0C350052F06CE73CD /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = "<group>"; }; C82B5680A163C64780EE09E382D7EEDC /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = "<group>"; }; C82C3C911EF776B47AE70152D5C2B2C9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = "<group>"; }; + C82F14F48778D57E2106F1FC0F8D0326 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = "<group>"; }; + C838B404B5EE29521B38A7BF640B0404 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = "<group>"; }; C83D992973F17A2D65D6A56AE2411FD8 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = "<group>"; }; C856EA4C772FC5D8FDF1B227D52075BC /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = "<group>"; }; - C86D9C85FFFD3CADFC1CA464B0086CAA /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = "<group>"; }; C88933EF5580895A52694BD12032F2A6 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; - C88F5C427133EA7D692D9CDAD62D6E29 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = "<group>"; }; - C8AAEEC2B289AA3E6FC0606341B9D731 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = "<group>"; }; - C8ABC113DB36F18AF7D1935E65C2EE0C /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = "<group>"; }; + C894BDC9326638A226C65B45A7437B07 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = "<group>"; }; + C8B49794982FBDADB0177CBE38BCD190 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = "<group>"; }; + C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = "<group>"; }; + C8B9C11862042751C14615E6498444B8 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = "<group>"; }; C8E497FD43BA1211D4BD7FD47B9A336E /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = "<group>"; }; - C90AD6F3E02455B90B994E4FFAC8DCF6 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = "<group>"; }; C90C73FCAC18187A8A58E68D7D0F1752 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = "<group>"; }; + C90FC567524FA661866C611EA3773C32 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = "<group>"; }; + C9155BBDA5E01B68FF923EEB79990AF4 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = "<group>"; }; C91D0C35443EDCA61DC536A7777222CE /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = "<group>"; }; - C92A4D9EF00891FC7DA6BA1F8703778C /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = "<group>"; }; + C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = "<group>"; }; + C93543FE01A6C97729A0C5783545D254 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = "<group>"; }; C93A77331F2DCB76AC9069C20CBB68FF /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = "<group>"; }; C952F4B3BEB498CF6B44D8F8D53D258E /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = "<group>"; }; - C9718144F08B79B6AE2338040123C354 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = "<group>"; }; + C967A21D4DB245B24B51E5278EB1D7AB /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = "<group>"; }; C97C339316168DB04985D4F5AAB468BB /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = "<group>"; }; C99D44016E628B64067CB76CD65802F1 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = "<group>"; }; - C9A2DEE319766A8749B0B5CFA95F0B5E /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = "<group>"; }; + C9C390E75F283ABC888301FFBE52BAC4 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = "<group>"; }; C9C5D8DA10F83B08DD9DD499558F760F /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = "<group>"; }; C9CA04D250814BDEC21277B2753E7B70 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = "<group>"; }; - C9CB808C88B742A4B8D226327B0A956C /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = "<group>"; }; C9F4E6559ACBC02C36028E184C9B0CFC /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = "<group>"; }; C9F560D70310532BD6D8DF4D57B77F99 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = "<group>"; }; - CA077E51C7E5706C2C646C597E8971EF /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = "<group>"; }; - CA157BB63251460C2FB19C6500DC42BA /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = "<group>"; }; + CA0E451936088034A8C77715E4FCCF7B /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = "<group>"; }; CA4FBE8F8986D0FC6EEDD2B850A3F16B /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = "<group>"; }; - CA6350A627E0F4163DF3D66F3463BE32 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = "<group>"; }; CA6943F8AA0B58A4B5A6432B18F5BC2F /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = "<group>"; }; CA8F0AEC5B73D4DEDACF2423A7775BCB /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = "<group>"; }; + CA90EA4E58E7529F8578C7076B74E136 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = "<group>"; }; + CA934B616778A58F79F91943D21AD163 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = "<group>"; }; + CAB0C63FC8922ECF883FC7F217E727F5 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = "<group>"; }; + CAB3A635E372DA342C80E4E1538A8189 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = "<group>"; }; CAD5C87CC0AADC43135DE25CD663C1F4 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = "<group>"; }; - CAD83A46B1824A3A4D4ECF4B36E3777B /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = "<group>"; }; - CAD8A69F2BC6B6A3844A53FD6E6302AA /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = "<group>"; }; + CADFC8278F2A60666A8ECF9734046582 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CAEF7BF5B0D67EB2CA6B19A209ED53BF /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = "<group>"; }; + CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = "<group>"; }; + CAFB63F1B8EA2E9B7472E844151C95A2 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = "<group>"; }; + CB0EB5237252D01EE79321BB308DC801 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; CB1D4B7E31F361A7CF4AA4BEE1246517 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = "<group>"; }; CB239D55874C02D4160E9D47CB6FCB94 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = "<group>"; }; - CB34DCE889FBFA2EE97AA7A18364A213 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = "<group>"; }; - CB80C19A0EF31918F5D4A1464B8086AB /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = "<group>"; }; + CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = "<group>"; }; + CB71456404F9CED77678659966DC7E12 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = "<group>"; }; + CB89C0E53E4B81628E581462D440B938 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CB92A840388D3EF7251E8F98F6D2AAB3 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = "<group>"; }; CB9684689C0C8B9E1517F55131E107D2 /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = "<group>"; }; - CB9883DE9B885D17CF6D276905C31139 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = "<group>"; }; - CB9DCB7EDF396F3D80A062F7E2B5AC31 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = "<group>"; }; - CBA4D64E832107DF8DEDDD7AD46ABA1D /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = "<group>"; }; - CBC436729E799D26DDB52165F35F291E /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = "<group>"; }; - CBD4FDA4DBA18F2D320EB53621713B75 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = "<group>"; }; - CBDAFDFB8FC7CFA1158C4603378EB6A8 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = "<group>"; }; - CBE330116BEC39FE12C95547DF2AC8EE /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = "<group>"; }; + CBAAE47D598AD40CA21FEA1FD17438C2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + CBE9F092E3CA7E0A323FBF3F4350A49A /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = "<group>"; }; + CBF19FC14AA6BAF3B58FBF8FF15C1F3C /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = "<group>"; }; + CBF1B2A24DF85F35EA84548F4AB66F11 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = "<group>"; }; CC0BEC0B3F3C44148680AA1B3E1299F5 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = "<group>"; }; - CC1EC5203FAD2AC4962B29F5E1D58C7D /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = "<group>"; }; CC26518B462C7C18AD0566A2D78F6468 /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = "<group>"; }; - CC2E34550AF64E3D44B047C4BA76E9DA /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = "<group>"; }; - CC3FCF0452A7189A99D7CF20718C3FD3 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = "<group>"; }; + CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = "<group>"; }; + CC4B27BF8CC6D6FBCA5B4FB3FF957EA7 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = "<group>"; }; CC50E959A5495A654034EF93E1B8E0E0 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = "<group>"; }; CC52FF6D9D0F3038561FFCA474348B82 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = "<group>"; }; + CC56E34364676629C753DC57D2AA659A /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = "<group>"; }; + CC60C4C23BBB6DFBB67F6C49C13440A5 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = "<group>"; }; CC765941F36F7C806C70C3CACD299C78 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = "<group>"; }; - CC836E3CA4CAEFEA4101E7149859A6B8 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = "<group>"; }; + CC8CE58616903C09E8A1A7FE375264C4 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = "<group>"; }; CCA97D54CF9ACDAC4793DBE3A9798D4F /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = "<group>"; }; - CCB13EE6221F7F04DB19CDC1B6BF557C /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = "<group>"; }; - CCB27E63FCF76C13097FBA46FA2AFC58 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = "<group>"; }; CCC12E666629CBA68F8FA63EDA522C82 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = "<group>"; }; - CCC43AA05820F3E6524E3635F8868E41 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = "<group>"; }; - CCE927DC1A757903BC5329A45A38E866 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = "<group>"; }; - CD4BC5627ADCB3CCE4A573EE0F1D5FB2 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = "<group>"; }; - CD52E8807306F1A909DC3E63E9B01D3E /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = "<group>"; }; - CD574B096FDBAF7FC4C522AC149B3FB7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + CCDF36D5CBA4D1EAFBFFEB6356372FF6 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = "<group>"; }; + CCEF9059AAE3C22B0EBD5BAAB618D1A4 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = "<group>"; }; + CD1FD42F2DDF1DE25C6108AC6123ABD8 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = "<group>"; }; + CD22B7DF933DE95063DBFA9AB621CA2E /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = "<group>"; }; + CD4E032F91D695EB8DD21783BFA10A01 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = "<group>"; }; CD6578E9DB7CDF81979D963425A34C54 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = "<group>"; }; CD6AC95E7AD35654EAD053C4678D5D0A /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = "<group>"; }; + CD6E14841088CB752B6312D567BFFFE9 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = "<group>"; }; + CD6FB009D4E50D67DF92F21F8DAFE5BE /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = "<group>"; }; CD94EA6C56C571A5119413782C817379 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = "<group>"; }; CD995CF17EC1F9D318275BEBD2E62248 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = "<group>"; }; CD9C204067CD033285E691091009DCB2 /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = "<group>"; }; - CDA30AB7E6366236B2B4F6E429273B49 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = "<group>"; }; - CDB49E839110038FF4DC5076B280566C /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = "<group>"; }; + CD9F04093EDD60E5467A82D034D381C9 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = "<group>"; }; + CDA31622F4E079135E89048AD4D3BFD3 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = "<group>"; }; + CDA9DB3C10EE2461F7D5386A7349FF11 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = "<group>"; }; CDBEE17B3614A49EF2C714CDD27EC933 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = "<group>"; }; CDC541260A450E879BF1EAC2256B1206 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = "<group>"; }; - CDD07198F82534ACCC69AB9FDAE1BEB8 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = "<group>"; }; + CDCEE67BE04AD6AD8026326D187151A9 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = "<group>"; }; + CDD786035D3470DAC419646B3A0A7E2F /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = "<group>"; }; CDE9A7BDC20190CBE6630DC4DBB08F1E /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = "<group>"; }; - CDFDA2AABF60471FA0DE4B952CECB3F4 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = "<group>"; }; - CE0812A44198A4CC8E2C964CF5D095B2 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = "<group>"; }; + CE04235EC62DB7D7F29A3F37AECFE8D2 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = "<group>"; }; CE0A89CE53B60C565AEBF54AE0DAB4AB /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = "<group>"; }; - CE11CF764C991280625C47C38B5C8F31 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = "<group>"; }; + CE12368EE0E36359BB5A4EB2F69DC467 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = "<group>"; }; + CE1F0F6B0DAC9A7AF9B7AA5F60C3FCCA /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = "<group>"; }; CE23695884956B445D045A5A4F2BEBD2 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = "<group>"; }; - CE2D93B945FDF19FA985C560D0CB193E /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = "<group>"; }; - CE304DE590FA295283860C223B5CA63E /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = "<group>"; }; CE31A0F5E3EA614BF4602F172DABE60E /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = "<group>"; }; CE3512AFB48576B856FF3293A080CC8C /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.h; sourceTree = "<group>"; }; CE58D1517CD6A69CC8B968AB4F2722B0 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = "<group>"; }; + CE890AED702E2B7D65D9C57CA1C84A4C /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = "<group>"; }; CE9110AA4A8337DA6C2C3EEDDC1063CE /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = "<group>"; }; CE91E5FEE989C5005FC302112EA3FE9B /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = "<group>"; }; CE94652F977B229169B1D0B569945C92 /* Flipper-Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.xcconfig"; sourceTree = "<group>"; }; - CE9D7BBE564225CC90DFB00E14D56AF3 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = "<group>"; }; - CEAF8647E8C72ABA05FDA860A421E4D0 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = "<group>"; }; CEAFDCEEFCA09B8A7CCAD985AE3B2DC1 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = "<group>"; }; CEB3C3DE564317AFAD5D00F480B050DC /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = "<group>"; }; + CEB6982058473F3EB5B8DA8791154910 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = "<group>"; }; CEB7C439EE2527E9C516911B814DE34B /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = "<group>"; }; CEB8150ADB2616065D796E11D415F2F8 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = "<group>"; }; + CED37D403F851EC64D48C2E6D7D32431 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = "<group>"; }; CEFA8D39408945A8A01CD6A4CB446A71 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = "<group>"; }; - CF24CC5147D5F678BEAA84FED20E8FB9 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CEFFEEDDDB5FB56DD03F227ED67A8F76 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = "<group>"; }; + CF1BE94E9EB48F52834BF5C9CD2CC1AD /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = "<group>"; }; + CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = "<group>"; }; CF32217F64402E516166B0907FBF62A3 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = "<group>"; }; - CF43181C64C05A4B88B9E5CCC1E64EA4 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = "<group>"; }; - CF550F99EB08E3AA6E5C3F82120A71FF /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = "<group>"; }; + CF3B9420B237F152E6FF53C5062E1F44 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CF62339FBA85228EAE5E41137BD5F3B7 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = "<group>"; }; - CF76A83910FDABA60B616D8EEC9794E6 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = "<group>"; }; + CF6589B4CFEA7DB445518B81CCEA6184 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = "<group>"; }; CF852D38B1E23A6121F49AA814196624 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = "<group>"; }; CF8A87482535B796BF26E80DC743B5D2 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = "<group>"; }; - CFA239C0E10FC59D52C8F0953ABD1353 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = "<group>"; }; - CFB14C09F6C834BAF8A5DDD154F9B375 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = "<group>"; }; + CF9E4ED8267D8374BA9BFC9B190F5982 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = "<group>"; }; CFC63A93A6E7140E3290A8F899E63F0F /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = "<group>"; }; - CFCCD7451FD53867F8A88FED3E953B7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + CFC8E451D38E2E7D63F049CAB6CB0967 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = "<group>"; }; + CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = "<group>"; }; CFEB0A20D4BC133A0888BF8E2F7516EE /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = "<group>"; }; CFEE2BBDF9379116DDC81BC3AEDE175F /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = "<group>"; }; CFF0D0EB4C41A1552334AD771EBF534C /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = "<group>"; }; - CFF7BEDE2D56C8BC667725D4ADAB7536 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = "<group>"; }; + CFF6B84DE629461467249913044B6E0C /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = "<group>"; }; + D00155A74656D652638CCCA43B402754 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = "<group>"; }; D017CF786AC96A572897D8DBCEE96977 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = "<group>"; }; D02E6B9DB917675E5CCAECEFBC7819F4 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = "<group>"; }; D02ED6C4ECB2318D9F7A5B1B79581974 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = "<group>"; }; - D035D0010E8DE2D35059CEE7EDBEBE4C /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = "<group>"; }; - D035F17BAE0EC5F3DF65863518DAE9DE /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = "<group>"; }; - D05016C508DC37AF7CB22D455B5E7617 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = "<group>"; }; D0546800109BE6E261341AA3BFFD39AD /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = "<group>"; }; D07C68A89645AB0B40080D5FB18AF91A /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = "<group>"; }; - D08163F3CD7DF83158B25C4F2B537BCD /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D084E021ABBBB9628CD914A2E7AC035E /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = "<group>"; }; + D07EC03A0A4F60605B5636E6D82BDA69 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = "<group>"; }; D08AD37297DE50EEACBE345D2CB202D6 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = "<group>"; }; + D09C4D3471AD4C2FCF718AA4409903D7 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = "<group>"; }; D0AEB04BA9D42A4A9FAABFCA836F8524 /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = "<group>"; }; - D0C971578E953F8059B4413C67425989 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = "<group>"; }; - D0E64A7E8E1DB737397DA64C74B468BF /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = "<group>"; }; - D13696AB91A111CF4B17AF8A82344F04 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = "<group>"; }; + D0B19BB1EEF8E5AA0124189F290A8861 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = "<group>"; }; + D0B72DC40E4D609C9D01B5A10F3D02E5 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = "<group>"; }; + D0CD50DECA479B51EAB670564F7B7B7F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = "<group>"; }; + D0D2807855DB1F9BEE53DE18F1E705AD /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = "<group>"; }; D142D9DB4D58940C58B19712A5E24AF6 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = "<group>"; }; D1518213D9F7823AF378BF59C0A4A8DF /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = "<group>"; }; D161D1CD4354D0B6D9B314DFCA658CD7 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = "<group>"; }; D1629C047EB6E5DE3EC6B5443873557A /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = "<group>"; }; D16622E365F819469AFB29E1F0A2BBE5 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = "<group>"; }; + D1669CBA419AEEEB6CAC6C9F52448BD9 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = "<group>"; }; D17211126B230DF5446557FE9998B37C /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + D1730B766977805C9CC5855CFB6EF666 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + D17C3735E61F4FB2ACCB176EC13A4190 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = "<group>"; }; + D19AEAB77CA49609892379D559CF1C5A /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = "<group>"; }; D1A45B3636081D58B3A2C76BD76B56B8 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = "<group>"; }; + D1B3F6A2C254EF6FDD66D17C7F17F393 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = "<group>"; }; + D1C4E2EE1DD85B0A8D9625A1B772A0E7 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D1C58B0EEBA51866F8799FED5F16F4DE /* GDTCOREvent+NetworkConnectionInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+NetworkConnectionInfo.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+NetworkConnectionInfo.m"; sourceTree = "<group>"; }; - D1CF038018D7847B9749049E0B48F3F3 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = "<group>"; }; D1D93DB2CDD8B18C06B607F0BAE717AE /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = "<group>"; }; - D1E2D7F0FB127ABF03333EFD5456D65A /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = "<group>"; }; - D1FB5ABA9CB31D7349FBDA463AFCD481 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = "<group>"; }; - D21F9B54F5152321C81F1E4B947973E3 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = "<group>"; }; - D22FD21AD985123581E35E174568B3C3 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = "<group>"; }; + D2147363D7F325A2A17D40441CF6D364 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = "<group>"; }; + D21E91F70CF4592C5283820588A499C6 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = "<group>"; }; + D225587E371647E1EF158B7E94B98E54 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = "<group>"; }; D23FD2D49D40D0667B0E8E55571DC3E5 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = "<group>"; }; - D2402DEF5C89B3561B39DD69D485EAC1 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = "<group>"; }; + D2424BAC76F59F7526912D76CB7E6E11 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + D24747C3BEA18E87BA7491E443BE13F9 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = "<group>"; }; + D2496821890C3957B6369CCC233D5079 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = "<group>"; }; + D273679235B8B62AFE2DA61DF071BE70 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = "<group>"; }; D2752E0FF90A0029F16DD9E81EBCCE88 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = "<group>"; }; - D2927EC23C03AE6A0C72B93D099E320F /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = "<group>"; }; D2A44021F16E141D89AE08FC81E7BC54 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = "<group>"; }; + D2A860FA24F85C1048D62057EB4A8297 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = "<group>"; }; D2B0944DB26F68CCB5D7A81F49A1A841 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = "<group>"; }; D2C27F372D793E139B6108DFE137291D /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = "<group>"; }; - D2C325A320B7B94BD286CBB4D14D1FC6 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = "<group>"; }; - D2CC1817740E6DFC947F082AC2AFACA4 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = "<group>"; }; + D2EAAB1D38023ABD96763E62FA496CC3 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = "<group>"; }; D303BCC0DF61B7DDE96777EF8365574C /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = "<group>"; }; D30A5F6D4E615733B864938B01F86BA1 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = "<group>"; }; - D313A35B48E6F08CC4890B066E0381E2 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = "<group>"; }; D3151F5AA5498492CA230FCF27400CD0 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = "<group>"; }; - D31EA8233E3639B263378A34EE099B6C /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = "<group>"; }; - D327EEF1E98626D5B854257E7F9D744E /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = "<group>"; }; - D32A8531C5A84B660FDFD3B34FD6BFBD /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = "<group>"; }; - D338192FF407A7108E82F733883A8A59 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = "<group>"; }; - D34547DD5B20CFB6345AE8E4378E5EA8 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = "<group>"; }; - D34706E1A33764E44B0ABB963E29ADC2 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D33C61C8004717F147894A4F457C4CB5 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = "<group>"; }; D3625BCCC0F421D853BC5DA8F0AF5BAF /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = "<group>"; }; D363ABCB37DA623B13B7291B95128006 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = "<group>"; }; - D3688DC296671900406487C21CB46F51 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = "<group>"; }; D36C1F0EC78A2845C14FB2963EA0A08D /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = "<group>"; }; D38B789AFA3E08A0D80B75C3C58CF03C /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = "<group>"; }; - D39C1ADDBE7C4E3812E0AE674209FBB8 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = "<group>"; }; + D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = "<group>"; }; + D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = "<group>"; }; D3CB0803F076C784C3212867D467D430 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = "<group>"; }; + D3CBD900A4CB49206B4C05BE7628238F /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = "<group>"; }; D3D16C2613A98591C7433A92989CB9FB /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = "<group>"; }; D3DF2E2C76682D78850B1C27CC588C12 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = "<group>"; }; - D3EB3043B14271CB50A41A02E51FFCB5 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = "<group>"; }; + D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = "<group>"; }; + D406B162AD1A9BB2D5ED8E49D2583638 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = "<group>"; }; D40E104D3809AC98D25DA6DFEC523567 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = "<group>"; }; - D41085A05AE372FA28F64384A2C99951 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = "<group>"; }; - D4120D59CC721ACCDF291C39035972A3 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = "<group>"; }; + D40FE7367A96160310E0FA038F585E92 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = "<group>"; }; D42CAE2EF157C716C678EEAE4EBE252A /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = "<group>"; }; D42CB44BA9C69CBAF899C96FE903676E /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = "<group>"; }; D42E726424ECEB4787BA7B6C50BCB3BA /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = "<group>"; }; D438DA78F21E96F690BB9917585CACFB /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = "<group>"; }; - D4407B2A67DCD1FD532B7B5828CD0191 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = "<group>"; }; D44BAFFBC0BFBE6966C8552BC70F1388 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; - D44BDADBDF0681FFA576594C2A54A0FB /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = "<group>"; }; - D46BEAF80F28B45FCA1B569AA07B1A28 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = "<group>"; }; - D474600A5BBBA68256658AEBABE66F84 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = "<group>"; }; D48ECBF71CA2BD5108891B772F82D722 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = "<group>"; }; D49679914FE70C3E027D9C1C08D5A89F /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = "<group>"; }; - D4A9E51410AB7F4702A0ADFB8E6F9F78 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = "<group>"; }; - D4B2EE0A45091956F00825D59910F8EC /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = "<group>"; }; - D4C5632CF328F44B28A8A9F80D503D4A /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = "<group>"; }; - D4D094651F5AF7165D718C66D5A859F1 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = "<group>"; }; - D4E2491E6072C585024D9959A1732177 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = "<group>"; }; + D4CB377774658A47456D1529B052C7EC /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = "<group>"; }; + D4CEC3C8952503C4CA46E9C7A1C49047 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = "<group>"; }; + D4D17CE1128CAD0C7376A221281249B1 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D4E9A9FB4E7AAEAC8F74E51C8764B81C /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = "<group>"; }; D4EBF582A50CDBB1D77A0DD2EAD9213E /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = "<group>"; }; - D5052E64C6BD6F5D2C5451252F1AA7CE /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = "<group>"; }; - D5244571FEFBA4E0EA7B65183356D074 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = "<group>"; }; - D53718BC29C85D0BE395CD5F24D48709 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = "<group>"; }; - D562CB27EF0CD57C3A99A65A07CB4121 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = "<group>"; }; + D5038AAD663414FC2313263B1DE2E738 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = "<group>"; }; + D5043F42CB101BE1E6DF266ACFD6DDFF /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = "<group>"; }; + D506AA27CADE62ECB13FCC7E2EC76BA4 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = "<group>"; }; + D5079C9E0AA2034E6A2CB45E93F262F1 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = "<group>"; }; + D5272E752DF667DB7AD74D945976AD07 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = "<group>"; }; + D53E39F99E7E0402FABF134698E1B16F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = "<group>"; }; + D5427FE4E48FF6C6F79AD17B6DE1C649 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = "<group>"; }; + D54DA433BF592F5AB15189D1F3CB1DD5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; D564F5D27CBCF3B8EE77307584E0FC11 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = "<group>"; }; D569C8EBC11F560FC5CA66BF071F7634 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = "<group>"; }; - D5909B93C9C610D2749ECF8B8182B240 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = "<group>"; }; - D5A27B95C931C16CF6D5D759DECA2513 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + D5A5D66A3F340FAF357C3C23740B2CCA /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = "<group>"; }; D5A918CEABBA94E7ADF5E0E0F4590B7C /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = "<group>"; }; - D5BAA503587ADA3BC8BCC6BDE01E3022 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = "<group>"; }; - D5BEF6CF10E7FAA51645E5757D8061FA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + D5C0679C8FA015D5C911901384EE4D6A /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = "<group>"; }; D5C64C4B734B2F6E62C632650F55CB49 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = "<group>"; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5CB6C46BBD1F37F88EABC0C4C46944A /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = "<group>"; }; D5DE71527A5BC327D7F1879C6ADBB6E3 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = "<group>"; }; - D5F086CE89F80D69BE926731B878D257 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = "<group>"; }; + D5E964FC44F2AA7D4C3EF7A41690D224 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = "<group>"; }; D5FE7046165690E211F7FFD5DF80CC92 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = "<group>"; }; - D60E5E8BED0B269304BB74C21A161540 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = "<group>"; }; - D627FC3A36A65F2A9BF801553C386C8A /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = "<group>"; }; + D6318E5B6B7DC173B03E2ADAA68800A5 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = "<group>"; }; D6378D7C4460E3706422526FC7B02790 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = "<group>"; }; D63FBF4C49B281E4555BBCC76309B2EE /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = "<group>"; }; D64899346B43035B56313D189AA3D2C4 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = "<group>"; }; - D66DFEAA4B35B13F8EB0D273776197F9 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = "<group>"; }; + D64AC27FE92DADF4D4A9DB08BDCF0F8B /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = "<group>"; }; D670DDBD2F6E5F61745FB208D43BBD5F /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = "<group>"; }; - D687C0DF26369F6FF99CEE7DE4C610FC /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = "<group>"; }; - D69C5615DD39EA7082D2F3F41D2A184A /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = "<group>"; }; + D69C09EADAE5AB9F3A5B910990EAC6AB /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = "<group>"; }; + D6AF50488FE8EC76893A6868564AB615 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D6BC4EB89FB043565DB890070B5916CA /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = "<group>"; }; D6BFDF996B01A912B94084E492836A2C /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = "<group>"; }; D6C60021AE285818245003443143D156 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = "<group>"; }; - D6E34BFF80AFDFD5B80C99A9671AEBD1 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = "<group>"; }; - D6E8689A50EE60D9F440D25B713341A5 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = "<group>"; }; - D6F6D022E77CE7050760A949C1C15641 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = "<group>"; }; - D70454DF8F9142E88B85515B1C4DF172 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = "<group>"; }; + D6F1FB7F281468D9F70331029D55677B /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = "<group>"; }; + D709AB9666286F00ED5D6D6A2F4A8D0B /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = "<group>"; }; D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = "<group>"; }; - D725E31D5F0F9D6B097C523E2C876AC3 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = "<group>"; }; - D73E1C4D58ECC32A0A82F8BA5C9F9912 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = "<group>"; }; - D74218EDAF62BD370256384DE91D9286 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = "<group>"; }; - D77C8FDBD8C98A9B0CD979D89DE2145B /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = "<group>"; }; + D77B16B96F40A6536D7E047E5CD22C68 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D78966FD8B3B4035E81DC0546AA2E366 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = "<group>"; }; D78A0123098D28C5D3E135C01E38E39B /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = "<group>"; }; D7B190E3ACB04EBB4801EDBFA54609F5 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = "<group>"; }; - D7B199325D8B69080DF84749D4E46FF7 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = "<group>"; }; D7B38CF963E4B5EBF6F336D06B440921 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = "<group>"; }; + D7BAE26AC52601842834BDCE65545B5E /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D7D01B2F130EF49706E4DDC323B47010 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = "<group>"; }; D7D43B9A81C5CFB7CC964B198C8BF176 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = "<group>"; }; - D7D5C7650E36E999439142142D6D5714 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = "<group>"; }; + D7D5330BA7F406E82D2A64AD902CE53B /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = "<group>"; }; D7ECAAE8A2CCA4ADE5B901E16909C5E4 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = "<group>"; }; + D7F2E42BCDF6367B224D7E349E95B1AD /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = "<group>"; }; + D7F56A33A983244B08AECC4C4EEBDAAC /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = "<group>"; }; D81BCB488A688F932AE45EF8B3C5E5B3 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = "<group>"; }; - D81CC450FB75CBB2B5ABAD072AE4E43B /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = "<group>"; }; - D83206DC060F28F18F0E6AA7B1780E78 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = "<group>"; }; - D8371DA97D7FEEE4C56A59F6B3BFC57C /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = "<group>"; }; + D826E60BC234B9FF7AD9EE10C96EE99B /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = "<group>"; }; D84A2AC75061051C62EF7AAB2CE0ED5B /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = "<group>"; }; D850BB62E6C022FEAA267C2CE99A4AEC /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = "<group>"; }; D86404E62D00A42BC3480DCEFAD40A6B /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = "<group>"; }; D87BC4659B21C43E2DE2DC8B806E7DF3 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = "<group>"; }; - D8869F0C09D4CC90304D8AB9736D335C /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = "<group>"; }; - D89090E3BE5C097954BB3B5A4C0B75F7 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = "<group>"; }; + D882CD265BAAC8C8EB8DBD2BE886AF69 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = "<group>"; }; + D8835DFC24DE1B46F747338F9C259C6B /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = "<group>"; }; + D8B10E7B4093EA180B50CC5E3CED277E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = "<group>"; }; D8B5ACE0E6FA599B800ED969620E15F6 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = "<group>"; }; + D8BC6D684FC93C5BBD851B095B4BCA6C /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = "<group>"; }; D8E439BA476130C23BF7C6A07CF4DB84 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = "<group>"; }; - D8E59B66F081BE096170439BC02D93F4 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = "<group>"; }; D8E68F8DDA9D284449FE4EA765590F3D /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = "<group>"; }; - D8E7C42D7A2310AE8516C10E6533BC74 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = "<group>"; }; - D8ED61E63B5660FCA1DE5968F2CE1E77 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = "<group>"; }; - D8F0C427C57B51CCE82E5E05482B2E9E /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = "<group>"; }; - D8F21705535D4799AAAAB6D16F91214F /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = "<group>"; }; D8F27D693A9D70A1E15610ED01D638D6 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = "<group>"; }; D8F5319932C25E358AB24E8ED53D4F06 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = "<group>"; }; D8FD6B2BE2BFC5E7D9B2B10CD7DB9210 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = "<group>"; }; D902F332899320E93E02D84D939FFA28 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = "<group>"; }; - D92001A2B343507491B58FAFF72599FC /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = "<group>"; }; + D9107F10343A9D0842D5085B25F198F0 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = "<group>"; }; D9306EE62AD39ADA40650280B3F6BB8A /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = "<group>"; }; - D935B87E7D5BC9E3AC3E2CF9C81D1084 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = "<group>"; }; D937487C3061F03755D71E545664D573 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = "<group>"; }; D9464598046241785B5443A7676E3609 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = "<group>"; }; - D95779B2CED449A629C8A758700E46AF /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = "<group>"; }; + D94A4FC53AED68F8848D4EA0F216B06F /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = "<group>"; }; + D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = "<group>"; }; D96B57221ABDA9A8EAEDE4AC20AB620C /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = "<group>"; }; D96E80E0B8C87F6390DA8CB6B41F85C0 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = "<group>"; }; - D9801BDDA6F102C8A86A09E1DF885E4F /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = "<group>"; }; - D99FDD1CABFFAEEF09F3A7A643098F20 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = "<group>"; }; - D9A080E61BF4AB0978EFD2A0A95A91B1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - D9CABB331FF8AD1477F019687C4F9B7A /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = "<group>"; }; + D9915994EECACD7D790907711164FF55 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = "<group>"; }; + D9B37A15E0FA6CD3DB37864804AD63AD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + D9CC335C8C592AEFC9057636EA09D300 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = "<group>"; }; D9CF2394D44341B54D3A25FF1027D896 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = "<group>"; }; - D9D195E7498C59FDE0F25A2477484484 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = "<group>"; }; D9D67A48064ACEFA668CF1E62AC1632A /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = "<group>"; }; D9D9D03BFCBCAD2A7339B4C6A86B467B /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = "<group>"; }; D9EC99C72D868B3A7BC823FE6FD40B3F /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; D9EDB0192FA9FC531B82B0AC8C991FF9 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = "<group>"; }; + D9F1014F239236BC5F2F41AB81D21B01 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = "<group>"; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; D9FBD50E9063031FACDB5234DD759A0E /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = "<group>"; }; D9FF6760F7D70B64394EA79D41B64CBF /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = "<group>"; }; D9FFC6C7BE0A6E54794B106414DB1B9F /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = "<group>"; }; - DA1DAD175A268826B15CB5D378F14B34 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = "<group>"; }; DA1E0B387C0503DAE734788BE8C16855 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = "<group>"; }; + DA2317BAB68F0AA88BEBBD1092C9C171 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = "<group>"; }; + DA23FA802004150814858F296B06E271 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = "<group>"; }; DA3F2CFCB12B1B29744C28647FD6CF3D /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = "<group>"; }; - DA53E99E39A52A1D12AEF184AC924485 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = "<group>"; }; - DA79BDCEE32104049B77CE508C31CE7E /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = "<group>"; }; - DA838978E3266512EFD9B40E12CE5CBB /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = "<group>"; }; DA898CEFED39AA72F200D8C1DD7AE9B9 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = "<group>"; }; - DA8EFA83F779729D5D90185C414F4695 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = "<group>"; }; DAC317C7EB06A759F8B238A9746390C6 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = "<group>"; }; DAC73F3CECA41478519413F49926203D /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = "<group>"; }; + DAC74069D9D5F477EAEF1DD93F60EAD1 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = "<group>"; }; + DAE471F02C23B363E017C53DA3A781CF /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DAFAFDA223DEE59D35E812DD10ABB64C /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = "<group>"; }; DB016C82CC168E317D90FA49A48E576E /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = "<group>"; }; - DB3AE7668469F5B9715A650DC690B653 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = "<group>"; }; + DB30904BAAE60FADA3C166321E867CFA /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = "<group>"; }; DB6031C2D1663B56C2BFC3DC302D3269 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = "<group>"; }; - DB7F8C9696E0DC4FEDE9AF7CDDAFAA37 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = "<group>"; }; + DB67FF762D01F761C5B6571BCF2BD58F /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = "<group>"; }; + DB8EEFC2865862922C0F3D62D40909BE /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = "<group>"; }; + DBA47DDEAD4D6754F88945C0073C0BBB /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = "<group>"; }; DBAA5A67FE1FC63A1065005C74D13EC8 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = "<group>"; }; DBC2B283A2DE4C0ACBBC43E233D77211 /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = "<group>"; }; DBE52C59AA142A99D50F0AA974CC635D /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = "<group>"; }; - DC0CB3F9986633C22527E056791EE997 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = "<group>"; }; - DC38D47D2183CE72DB38D9B69FFD5ED0 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = "<group>"; }; - DC3D64CD17610CC29F2A670FF893994C /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC27A0095FF48D6786C3E980C983CEE5 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = "<group>"; }; DC4921858537797DF6DE8FEF93F73B84 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = "<group>"; }; + DC4E149D47C8711B5127CE4B75308EF1 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = "<group>"; }; DC53DF962492C30428EE3CA2285C86A7 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = "<group>"; }; - DC59614A1FE868DE613ED3FD4498E837 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = "<group>"; }; - DC5B486DF388EB364559F3BEABBEB965 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - DC6F7AE35E288C0E936D7C0970AD6FF2 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = "<group>"; }; - DC8CA61BBAC0EAB2F519BF5A90A5CEB7 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = "<group>"; }; + DC7C17EDE1D3ADAF9E4AAAA4F0805E93 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = "<group>"; }; + DC7EC9BBE139A8CAD5680DA48B1B9B0F /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = "<group>"; }; + DC92F37702AA404B9EEFC33B82445BC7 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = "<group>"; }; DC955D2B20DCA90BB1C7C11AAC5F6940 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = "<group>"; }; DC95B708D8BF834D9658FBE9EDD9B44A /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = "<group>"; }; DCA1E0D1BC1C44D03756BBF4B8CABC5F /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = "<group>"; }; - DCAB7BBA6B2EAFE4A03E8253AD541AAC /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = "<group>"; }; DCABDEB1ECA6AB1D95D2A6CB9ADD5C59 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = "<group>"; }; DCAED6D266049A21DBEA116A3D22AC25 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = "<group>"; }; - DCB9FCCAB7C7A7ADFBD3B5840345B115 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - DCC763AB25BB02EE3DE6A7C2352B487E /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = "<group>"; }; + DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = "<group>"; }; DCC8C93413C4A20B2CEDDF097CA3F6B4 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = "<group>"; }; - DCD301F98FAB37D5BBC99A45991CEDFD /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = "<group>"; }; - DCE1C215E0BC140B0D9D6051E01B350C /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = "<group>"; }; + DCCD4B155D3FF26274DC1610F26D297A /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = "<group>"; }; + DCEC1BBDA66CBCA038CFCAF6348C0923 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = "<group>"; }; DD00CB56D91621F69493ADDD3139090A /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = "<group>"; }; - DD0543E8EA480C7B64BC49729E69E11C /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = "<group>"; }; DD1DFEBA5CCBEEB299A75CE87A9B5550 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = "<group>"; }; - DD2D00F0F5AF73FC7818CEA8FC5F8E82 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = "<group>"; }; DD2F2A78ADD1936F72196CD6A8D00E5B /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = "<group>"; }; + DD38F2F2FA7D1CA194A4316CC114CE7C /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = "<group>"; }; DD68D1B933AEA3BDA8518B72E32AB135 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = "<group>"; }; - DD94E9556EC100BE7CCF99B396C37DC5 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = "<group>"; }; DDB4574B3B770599A9B8E3F74E2411F3 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = "<group>"; }; DDBAEEF4A7B911A600314EF9A676CC5D /* Flipper-DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.xcconfig"; sourceTree = "<group>"; }; - DDC37DDB0719CCA56D903B6D979E7AE3 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = "<group>"; }; - DDC39ADDB28B75441E7C09019106CEAF /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = "<group>"; }; DDCB993469467EC1426890E2EC115BD5 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = "<group>"; }; DDD3823CD61B5AEB828827F65D3489AA /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = "<group>"; }; + DDD9A8FF0995E1241DCED980BF3FAA61 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = "<group>"; }; DDE2BF68CAB2616E23655DB39C7D4A3E /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = "<group>"; }; DDE59FCFD27414109C6670A3A72CDD0E /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = "<group>"; }; DDEDE414179CA9F5476CDA0BC142D864 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = "<group>"; }; - DDF2D81F19F254450F97DC57AD30D344 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = "<group>"; }; DDF66D0EAA9FE4DFE3CF45380C10DF21 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = "<group>"; }; DDF8A6BC140C502062CFC253CD1CB371 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = "<group>"; }; - DE0AB872B0C932BC93633FC4FF3731FC /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = "<group>"; }; + DDF9A745239F49B68E9F0B8533915281 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DE1413051450C50DB0DFBD6429DA5C89 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = "<group>"; }; - DE231B2B7E7BE62A3F3D3F23D3C6ED63 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = "<group>"; }; DE249746A99AC56A7CA87BF98C330888 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = "<group>"; }; - DE4914C39A474FEA542A599FA1359394 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = "<group>"; }; + DE419D5973B7551B6077FD66A45A82D3 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = "<group>"; }; + DE5CDE7B990E4422CA317D651285C02B /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = "<group>"; }; + DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = "<group>"; }; + DE728416151A6E0409CC9B54D5A3AEF9 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DE7F6277315A36A1D833DE0C44B3E033 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = "<group>"; }; DE86D9C3EA27126489E3A87E9686CAA9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = "<group>"; }; - DE9796627BDD27EEB4F1131083745509 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = "<group>"; }; - DE9FBFA4C50B0AA6DD3EEC0DE507117A /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = "<group>"; }; + DE8F625CA9B70EFC0ACF66753B2B8C75 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = "<group>"; }; DEA2CE6EAF463BF959C6C469CA77AB13 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = "<group>"; }; DEA3D9B5C8E4A8DE486F429B4D13D521 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = "<group>"; }; DEA6B6E5794DE17A73763EDA7F2640C0 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = "<group>"; }; - DF0EFB979CA6FE4153621B3AA05D26A2 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DEB14E8B79D4E1EDC3C7F619DB0F76D1 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = "<group>"; }; + DEB422D3B76E77B2B06F217E5FD64CCF /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = "<group>"; }; + DEF4697C35F84407BB74729FC41F9B7B /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = "<group>"; }; + DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = "<group>"; }; + DF0598EC4E96419F8C605A212DF295D8 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = "<group>"; }; DF178130FB35B0F86164837E4125CEFB /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = "<group>"; }; - DF2C138D2CA934EE90C3FE86A1282AB3 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = "<group>"; }; + DF36CC4EC6787DC51E7084B92E5E9001 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; DF43449DB5768DD12D5FBFAB6172F716 /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = "<group>"; }; DF4E5CD7212197F9EB85998AB69C6321 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = "<group>"; }; - DF68F8C05ED0D441CA88D7C0FB9706E8 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = "<group>"; }; - DF765FEC13D8DF40A9AD2059A97D26A6 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = "<group>"; }; + DF7DFF3A414B0E7D5C751B535DB89338 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = "<group>"; }; + DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = "<group>"; }; + DF8BCC9C723065E000C2A4D4A913777F /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = "<group>"; }; + DF8CCF2AA86951C0C89788443FC66288 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = "<group>"; }; + DF8D77ED36497353F79CA30D64E32966 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = "<group>"; }; + DF92CE034A458C57CFC9FDD2166F2176 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = "<group>"; }; DFA07EEEB8570BD73E25EC6F93C4AF90 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = "<group>"; }; - DFAB47D08AF9D57D6BA0BFD239AD5ED8 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = "<group>"; }; DFAD59C64C4A25E07742F178A059CEA4 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = "<group>"; }; + DFBED849C843D4DF967E45C83D99233F /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = "<group>"; }; + DFBFB9EE3E0BC111F644FFD270312695 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = "<group>"; }; DFC527850FAFC5440685B7384E42C9EE /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = "<group>"; }; - DFF7E0542F67966D0ACA72175B3A1631 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = "<group>"; }; DFFA2485C026362746BC6DEA4B5C750A /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = "<group>"; }; - E00807D07985A020D4994F136EB84FA0 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = "<group>"; }; E008D088ECFBC0055C52C9B8FFF48BE2 /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = "<group>"; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E0104A87B917A68C88E2F9186F513030 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = "<group>"; }; + E00F29323FDC2221DEC6688F99664369 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = "<group>"; }; E01627C9FADCDFAD3407038312E4CF57 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = "<group>"; }; - E01E81293DE6806D93E9CFEE734285A7 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = "<group>"; }; - E05397F190C4A904C94F91A5F3A37436 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = "<group>"; }; - E061973D73ADE6AD2D3FC6242AF841B5 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = "<group>"; }; + E0416A48BB81A3B7DCD63873C246F10D /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = "<group>"; }; + E04944B846FE8EC84AA406381ADE1C0A /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = "<group>"; }; E061E500898E80FE2F24E34CCB6EBFE6 /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = "<group>"; }; - E0815E3E6EE9F8F5DFF7B97B277864CD /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = "<group>"; }; - E094BE5891DED36A3C2F50899361FBFB /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E0A5E5379B080007D7EB8A706911E252 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = "<group>"; }; - E0EFC858D0ED3A74CB8DE034EEDD6482 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = "<group>"; }; + E0DFA6854FAB0AE1641D77286FC5DDE3 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = "<group>"; }; E0F6C58E2DF711485E4D992D5D375A5F /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = "<group>"; }; + E0FB7A2BCB26E6FA7FAF1995311D73E2 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = "<group>"; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; E11720C8437E0D5F25B9999FA856078E /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = "<group>"; }; E1251A48F04B7E490647FD77E07F6635 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = "<group>"; }; - E135CA8515BDADC2DBF4D894D71C070C /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = "<group>"; }; - E149D55AB227DED9274F7106EA694571 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + E12ABAFF3171D02F51399E7A8490FC79 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = "<group>"; }; + E138989E28E0CBEE52F963CE389779E8 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = "<group>"; }; + E1551C8062D1ED0104DBC41541A65C2F /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = "<group>"; }; E16109B9EB664F918C2B6A019364F2D1 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = "<group>"; }; E170B7D134F5E84EAF48809EE0563194 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = "<group>"; }; E1744DA8B3810869EDBEFD26A77EFD9D /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = "<group>"; }; E1940DEEAC17A92734A7038D221AE41D /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = "<group>"; }; - E1BBF166CBC50CC7544F76B3018AED1D /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = "<group>"; }; + E1C0FD671C82989A3D3C58576B986687 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = "<group>"; }; + E1CB6BECF058E3A4985899EE7B0B23A2 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = "<group>"; }; + E1DE80D90C565FAD31CC5F26AECDF252 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = "<group>"; }; E1E2E8FE98F9ED5FBA8DA6B061E3CF4C /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = "<group>"; }; + E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = "<group>"; }; E2060A315A5DB499B27EACB59616E6FB /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = "<group>"; }; + E214B9CEE51A727C5AE4AC727593DE85 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; E215EFB6073591F6E2FF5E01B38E345D /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = "<group>"; }; E21C75C0A81895300FD2DCEB5DD2ECF6 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = "<group>"; }; E227691798690C6BE6692621F1ACC5EC /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = "<group>"; }; - E23AF7F1E2AE04470812D886B887C73A /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = "<group>"; }; + E242EDC375AF5831097F51B852EB51A6 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = "<group>"; }; + E246AF0BBED7036FBE5BB7342F0E2387 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = "<group>"; }; E24FCB4952C86FCF76EDC7C1D0E561E8 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = "<group>"; }; E2516D63BEA2B740D3E80F31D007E2E6 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = "<group>"; }; E25DA40E0026AE4DD2820972900080B6 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = "<group>"; }; - E27223DBE11DB2DCA038BFA3CAFEF7E3 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = "<group>"; }; + E264446847198B24564078FFE2989119 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = "<group>"; }; + E265D20CED969AF5718CC2576B0D2FCC /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = "<group>"; }; E278E225162A389E82A6B92D8C973798 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = "<group>"; }; E28015CFB7B823A373528A421C6F2923 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = "<group>"; }; - E28E4C9104F8F1D243CC86D957F67C8F /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = "<group>"; }; + E2967776DBB8C2491E39D6BE35D0275B /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = "<group>"; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2C00BF93B82F33D85C86DAD8DBD168D /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = "<group>"; }; - E2C2A873E82DD1D65819A907A9B45A50 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E2C653BA98A073B45B33E340C973D86D /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = "<group>"; }; E2D1B133318B83CC336785C91785D681 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = "<group>"; }; + E2D64ECC5835599A6514F50D193FEC7A /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = "<group>"; }; E2D909FC84C596D4FA13501456774A88 /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = "<group>"; }; - E2DB758AF57D8D5A188AFE035A35C473 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = "<group>"; }; + E316BF26AE4B9F5479B1EC5A92FAC816 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + E32701A5312FF5486D49E353569C4571 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = "<group>"; }; E33F6F25B1A319CD98E7EED0364DC1E1 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = "<group>"; }; - E341FC9946689900657B6982A61A5D02 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = "<group>"; }; E3575F3A9BC08A5FAD6227C9E2CE3926 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = "<group>"; }; - E382B59B493959CD33D743A3005D0F11 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = "<group>"; }; E3850E79F71D621ADC40A39FE30A4F1A /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = "<group>"; }; - E392F401361980335B1D0994034FDA60 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = "<group>"; }; + E38FE81BDDD5BD672BD3F564F64D524C /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = "<group>"; }; + E3B80F371ADCB8A43C619930E4C88649 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = "<group>"; }; E3B9F2E2045D0788B9F558559D9E3279 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = "<group>"; }; - E4013C4B1AA5C2BFE507D71BD3A686DF /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = "<group>"; }; + E3BAB038B14C3C7D99E760D3B99ABE29 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E3ED780732B909991C8A1D797B113375 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = "<group>"; }; + E3F7D9AF8CA85FA31381F3C1E5A53EEB /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = "<group>"; }; E41635B0C90A557F36FBA2C3F7213926 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = "<group>"; }; - E41D4705B2AF08A92E7AA63A1FE5E258 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = "<group>"; }; E421CDD78CFBC69897AB99248C9DE3CC /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = "<group>"; }; - E427F8C2B44D8CF78CEC01889E3BF9F1 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = "<group>"; }; + E427264B56A7CEB31CA0BF7DDE13B5BB /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = "<group>"; }; E42EB11146478ED93A18225F403E840E /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = "<group>"; }; + E434EC2FB629FBB95FFA4D9637BFFBC6 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = "<group>"; }; E43EB0F46632FA8C2CC6E97D21978FBA /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = "<group>"; }; - E43F1755E27EF960D032C6DDCA1F1818 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = "<group>"; }; E44BC299022EA501E799E13117E8DBCE /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = "<group>"; }; + E45A58CC7E74042249B75831FE86A803 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = "<group>"; }; E45E1848AE365E998CC9EDABD1D1782E /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = "<group>"; }; E4769B5ED370A40DF23C904BC98B4E80 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = "<group>"; }; - E485EEB555F5E34BF26302A7780D5FCC /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = "<group>"; }; E48D44415F84BF7AED6E1B9F0504D132 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = "<group>"; }; E48FF60598432561EA3B912A67001EF5 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = "<group>"; }; + E496A1597D2C8132C654D45BB3F241D6 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = "<group>"; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E499E992ADE815C14367F331C98405B2 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = "<group>"; }; + E4BE33020F71E8470F7194767E33E0C7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + E4BF95C9C73202A4F49C1C4F3F0AFD9C /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = "<group>"; }; E4C3FC9ADAB83B11E93EFE083DBD9D33 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = "<group>"; }; E4C4E89A25DD07D4ED5207FDA6340727 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = "<group>"; }; E4E2648211201464652B1487C44C900F /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = "<group>"; }; + E4E34D60E16609B4903F2C82BFAC7361 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = "<group>"; }; E4F600571076E94B7971D91DFFF8118F /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = "<group>"; }; E4FA37A4BB3A256BB3748C57BCFB7444 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = "<group>"; }; - E528A69FFD4D83FDD408E9434733DC4C /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = "<group>"; }; + E533079A5A60ED45D2840B8F31B01B66 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = "<group>"; }; E53E535B0D7E94210A940AAFB705BCEC /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = "<group>"; }; E54644174B74406C94D5183063CF47C1 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = "<group>"; }; - E549D723E9E63DB2CFBF963489EB1B49 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = "<group>"; }; - E55BFAD3423459CE004497E04F0DA7D8 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = "<group>"; }; + E55871F9C2198B66272FDFED3493DDC5 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = "<group>"; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E57CB5393938F05134054752FF3A5ACC /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = "<group>"; }; E58400A644A9B682CCC01FB4F5FC5918 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = "<group>"; }; E58EC4A32463C065C5565A34EDD61677 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = "<group>"; }; E5F9233B485E051515A84031898F4B5D /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = "<group>"; }; E60EA72F9FA5321E22349580C0FCF0CE /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = "<group>"; }; + E63199558C4A6FD2AC4B36A19B0751C6 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = "<group>"; }; + E6358156D78B68B00D4BE4D149283F3A /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = "<group>"; }; E63FD166211C9DD8992C8AF24D706F9A /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = "<group>"; }; - E640E63AE6E09C9C8167553D7BA5808F /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = "<group>"; }; E6445DD2681B0D31839C79B83EFB5FBC /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = "<group>"; }; - E689F576977D491326DE28FC2D88ED4B /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = "<group>"; }; + E664162CC3D20649879EE5C9EE42FF99 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = "<group>"; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6B102EAAB4D0FBD79C2C8B6A1F75831 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = "<group>"; }; - E6BE4694A82F14E7E3DE46D5F6A06089 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = "<group>"; }; + E6ACBAD632439F409068F8598984ACE9 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = "<group>"; }; + E6B5011534201E3763AB22784CE8E753 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = "<group>"; }; + E6C0E11D8A8B1FD548645D7202DE152B /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = "<group>"; }; E6C545282794390EC5B3F993544E896B /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = "<group>"; }; E6CDB819EAD7C970698E1BA550A0B871 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = "<group>"; }; - E6E10DE6CEFD17373B18375ADF3FDCA6 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = "<group>"; }; - E6EFFB3070B08DFC8252B07482F4119A /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = "<group>"; }; - E6F0941D08E0154A154AD3BE25420FBC /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = "<group>"; }; E6FC69ACB00CC2FE217B6FEE56A61C87 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = "<group>"; }; + E700032730765E8D6A7310102C555CB4 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = "<group>"; }; E702511CB604799D32133909BD9C08EA /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = "<group>"; }; - E7051E62EA10F5A1688EE25CBA946028 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = "<group>"; }; E7107D2046052CD7A4AF313913FC9584 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = "<group>"; }; E710C1D3477D55D637DC898F5F428EBC /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = "<group>"; }; + E7201C8B292DF82622394CC050A937B9 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E72085AB6706EBC6398EC9DE1C48257A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; E7212E56B264E284F19A7D721819825C /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = "<group>"; }; - E72FBF0AEE83F73F90CE44640BC5EB14 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = "<group>"; }; E730127AFF93894208BF52F0F6F84552 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = "<group>"; }; - E755722461C854C58CF07583BB456258 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = "<group>"; }; - E768CA53FC3FA5B928616085BEF59017 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = "<group>"; }; - E782834353877A71A4602A05FE560CF6 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = "<group>"; }; + E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = "<group>"; }; + E749EFFD4D169830F385E39E74FEEAE2 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = "<group>"; }; + E76D46F06A84B4B9286B578A69AD010D /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = "<group>"; }; + E7846734562A86F0F18D518A1A103385 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = "<group>"; }; E79885D71DD91FDC77D1CB86B4BD3CBC /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = "<group>"; }; - E7B025D77E52CA63911A1BB4392E9E97 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = "<group>"; }; E7B9E241EABF8A5A40C7EDD67432603C /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = "<group>"; }; E7C17EAD202035E688B4B171F70E4195 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = "<group>"; }; - E7C9FE89F9AB0D18A6131735809E51F6 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = "<group>"; }; - E80230EBE707360184751990DFF558C7 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = "<group>"; }; + E7C2406EB26E7373D603678D269F1956 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = "<group>"; }; + E7FEFC8BF31652AE75D2A6B5CCF97FE3 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = "<group>"; }; E80F9E4B9F1E0CD1D7E847EECA4E1E40 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = "<group>"; }; - E814BADB002A0D7B581D032CD40134CF /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = "<group>"; }; E81C052BDC30A35F1D0F94A8BCB93F3F /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = "<group>"; }; - E827B7CB614E1DB064A1F38E83EB9BD7 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = "<group>"; }; - E842783249EE7636A023B7A27A74D79D /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = "<group>"; }; - E84311BDB656CA57C4621E115D82D812 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = "<group>"; }; - E86843324139D967A7400DE7C87FBD35 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = "<group>"; }; - E869A8A07CB6426933833FFF38AF4642 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = "<group>"; }; + E843670879CA7CD7B3EDC89F66951D99 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = "<group>"; }; + E851E6CD968E6A6AE221C1053E27E8F7 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = "<group>"; }; + E86A1500A927E39874D8337AFE45667D /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = "<group>"; }; E877B24BBCFEEB3B33063DAB3FC98BC2 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = "<group>"; }; + E8849E3901042473FCB415D574D15750 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = "<group>"; }; + E88F78294801819BD69BE99ED540E704 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = "<group>"; }; E898D5CC2804FC6CAFFB81DCF6D138A7 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = "<group>"; }; E8AB14C7C536EF5778108D1396DC9F96 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = "<group>"; }; + E8B2D04B65CB01A5C753E613DE9CBAC3 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = "<group>"; }; E8B59FF69585BDEA20ACADA68A597D1D /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = "<group>"; }; E8BE1BA1EAFFFB8328E7F20969E2E6FC /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = "<group>"; }; - E8C673959A553496A1DBDCBF78296E49 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = "<group>"; }; E8C9A2A36721E59FF629EF87DAB54EEB /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = "<group>"; }; - E9091C7BFB49BB42EBA16E56F1E5EE79 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = "<group>"; }; + E8D3B8F52EEE1AAD7AF95F4D98371347 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = "<group>"; }; + E8DB84CAA9FFF35B26830F2F6B2E1093 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = "<group>"; }; E9128F86352D76A79FF505730FB26393 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = "<group>"; }; - E92A46AC09F3A4C210BF6DC717FE1128 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = "<group>"; }; + E9365E0F3C70A00DFFB73C55CE208FA1 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = "<group>"; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E94630B1A6B17143160769E249113B3B /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = "<group>"; }; E9468203F858002BB65BC64AC815D7E1 /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = "<group>"; }; + E947376F560B801ED9ED40D457FF7E09 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = "<group>"; }; E94A0C52E511CD9E2FF483F8B9E4C7A7 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = "<group>"; }; - E962C469B0B039BDA314D872E67D278F /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = "<group>"; }; + E94FC1C094B87AA5B9F330ED67E9B2D0 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = "<group>"; }; + E950EA795D2359323C7DD283B2307452 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E954433A769ECCCFBE05DCF2B3D7EA5B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; E9A08106247C981C9CB70A47A55548FC /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = "<group>"; }; - E9A286C1EBE6539A92CA88C9A339C026 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = "<group>"; }; - E9BD7F187F6E115CABDD9ACA7CD9E61E /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = "<group>"; }; - E9CAA18AA8123A3DB5C5CEC024D4F408 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = "<group>"; }; - E9ED2999E1472E0B02C8044390F00419 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; E9F70C81914D7BC850E6ED63B0B23709 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = "<group>"; }; - E9F77B6F48D4BF691C865AA8707E3905 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = "<group>"; }; E9FC9295BF6894CA675511B28B16BB62 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = "<group>"; }; - E9FE2E29E1A3BD0974B26831661999B4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - EA16DFCDD57B57EB6C4913B6B0AEEB9F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - EA295EE5938B4F0CC4EB765C948426F1 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = "<group>"; }; + EA02EC2BFDF7958CBC02B8993CBB85D4 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = "<group>"; }; + EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = "<group>"; }; + EA44ACEDEE1F1FF7B1994EF60272F3CA /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = "<group>"; }; EA487FB8FB99E1AACE8BD924399C4214 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = "<group>"; }; - EAAF14D40D6F62A759FF979E7E42189A /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = "<group>"; }; + EA9D90BC42F1BB4D0B77A103B9C3E35B /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = "<group>"; }; + EAA20CCB46DCC333665BD15C89A69BB2 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = "<group>"; }; EAB75F734DB509881BF344E366E90952 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = "<group>"; }; - EAC2DE31617C3ED5E7C1BD3D966AC038 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EACEDE1384944AD4FE47AD6D5F548BC2 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = "<group>"; }; - EAD6E7A22E4E9C658828EBAEFFAEC007 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = "<group>"; }; EAD7AD982554DA58DCD160C2D2D9D1E5 /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = "<group>"; }; + EAE2BFF0F123F1A27CF0D9AC2F84DA1A /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = "<group>"; }; + EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = "<group>"; }; EAF1CB55BA567376FA0B97F48D19DEBE /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = "<group>"; }; - EB09839249259D0536286005A085F8E0 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = "<group>"; }; - EB132F1D2D0162CDB745F6AFFE24B0E6 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = "<group>"; }; - EB218499B4C9284587F25025E486F1F3 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = "<group>"; }; - EB25D3C9C1DD96EA022033C5FFB7D095 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EB2DB36EBE8829873D295C7DD09FBF7C /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = "<group>"; }; - EB39C88DF538DA881FDC025AECCB9EDE /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = "<group>"; }; - EB4E415EDE96B418F63D591EE0CF673C /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = "<group>"; }; + EB0F2E6BE8BDE409BE62FE776AAE5C15 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = "<group>"; }; EB564E3DAC37E01D80AAAA34088B6182 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = "<group>"; }; EB65F5A086F84B5E1FEA590AA5BC08B1 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = "<group>"; }; - EB6712795D546673CE9EC6DA7B19F925 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = "<group>"; }; EB6B8E9E54916AC4287652A8764EDCFE /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = "<group>"; }; EB75D0BE9B54EC660470AC8F46C55481 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = "<group>"; }; EB79F4597D795053C773D200E7806FBC /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = "<group>"; }; + EB8E7291BDC9D10EED12CC97D6CD1827 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = "<group>"; }; EB96F6FA78DD5982BC5C32FD2B7DBB65 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = "<group>"; }; EB9AA65A09BAC02C00A55ADCD67D1B98 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = "<group>"; }; - EBA635743ABF4A9D760E7D051BA642F2 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = "<group>"; }; + EBCD948AC4674100418902BD3A89E2E3 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = "<group>"; }; EBDD2425E88112600ADA145269B8A6AA /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = "<group>"; }; - EBE9E3426A9471A947A2DE6F39932D8F /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = "<group>"; }; - EBF16F3A983A68C18D330F4FC8A9C3CB /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = "<group>"; }; EBF37905FE0BADE6A1B4A72A16BAD45D /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = "<group>"; }; EC00A2FB16072B5624DA498C2104B846 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = "<group>"; }; EC05A6B47FC3B6DA0EF08F20EB8B30DA /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = "<group>"; }; + EC1F50667604BD0C2E526395F6B6D9C5 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = "<group>"; }; EC24D056B8F16DFD9CEE5881270EAABB /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = "<group>"; }; - EC3AAE80D1E5C3BADB28EC9A3B29DE80 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = "<group>"; }; + EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = "<group>"; }; EC58DB4A0FDE2AEE215C48D99BD4E6CC /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = "<group>"; }; - EC9F16394621C77323384554622F8D38 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ECECC3FFA1D51B683BD14C17B319EE0F /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = "<group>"; }; + ECB82060F47068594888AF3BDE08E50C /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = "<group>"; }; + ECD7DBDB498A909518124AA224354D4D /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = "<group>"; }; + ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = "<group>"; }; + ECF522805480D2064AB9453B7FE101B3 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = "<group>"; }; + ED01C7BBEE2469668C100E6C64B6B39F /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = "<group>"; }; ED18491DC3AB97238509DFB603377910 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = "<group>"; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED2C183AE153088411F27862D87C05C9 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = "<group>"; }; - ED314843F95989212830490987759EAE /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = "<group>"; }; - ED415844F10453D84B3113D69D334064 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ED50360998A713927A9D76A7C9AD1258 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = "<group>"; }; + ED7807348F460F24A6796E2FCAFF067C /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = "<group>"; }; ED85ED2327D4E496F23675F165E5EEFF /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = "<group>"; }; - EDA2A6EC73EE326023BEECFD3CA14B23 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = "<group>"; }; + ED94D1793B8A55328B5B64B884D106DD /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = "<group>"; }; + EDA6323AE8935DC7449DD61F1AFA19DC /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = "<group>"; }; EDB771581C668A716F2929172EA45F25 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = "<group>"; }; EDCCF263BE056FAF6A969BC36CF5DC1D /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = "<group>"; }; + EDD08559E2215CE06A3DEF7092092158 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = "<group>"; }; + EDD126C6D0351882C6B39C1B0A2B3210 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = "<group>"; }; EDD16EA40620A7D3F4320345E38B0524 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = "<group>"; }; - EDE7F39FC17BABB060AF72899759C177 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = "<group>"; }; - EDE955A99A27ABE9C59CA46E37804FE9 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = "<group>"; }; + EDD44CAE1181AC6836BA7E115466AF2C /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = "<group>"; }; EE1094E1D52DB502F9DFF547244DF3E0 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = "<group>"; }; EE2470F180040A30D504B633183981B9 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = "<group>"; }; EE260BD6913FE04982DD42B73126D681 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = "<group>"; }; EE4E5E73B879B9EC13468395FE769AE5 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = "<group>"; }; - EE6B3318C986BA9AB441D98F74651712 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = "<group>"; }; EE6FFA316C5E886501F769E10E6F04C2 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = "<group>"; }; - EE82107C29630F32A5E1A14E8EB1803D /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = "<group>"; }; - EE932DAB707565892DA4779DFA205726 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = "<group>"; }; + EE76B874A21F14B25CFF737B7F22D7FD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; EE9E30CA68CB867C1C2E594FB4678686 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = "<group>"; }; - EEAF9A2F35338B674A9F23BE5537DF2F /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = "<group>"; }; EEC64A0DCD2E0046255CBC400D036418 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = "<group>"; }; - EEC73990BEDD7E4402CF0D0F88A66BEF /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = "<group>"; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE0808E6D7B2D5F36AB820D667123B0 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = "<group>"; }; + EEEF1FEF57923E087FF4D9233211B421 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = "<group>"; }; EF0F68A91E168C44451761944275BEF0 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = "<group>"; }; EF1554E3531643AC1338DA8F2FA7A6FD /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = "<group>"; }; EF18340EB9B162B1F064BA8EAFAB25B3 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = "<group>"; }; EF1AEC39CE3A96AE1A9C6DB8A78EE20C /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = "<group>"; }; - EF27BE664E20A803C35D11B41215F482 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = "<group>"; }; - EF3CFD6D2537A28C48B4E8261ABB906E /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = "<group>"; }; + EF230F501A71192A035DD44408668E12 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = "<group>"; }; EF3F7FEA5474D69FE2649113E76B0399 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = "<group>"; }; - EF58CA4F534402600CCF706A99CCCBA2 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = "<group>"; }; + EF474563AFA5D4DE1AE9D6DEAFC3ED60 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = "<group>"; }; + EF588114EB45D0C58E840F95E882905C /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = "<group>"; }; EF5D4FE795206498890300707EF6CE4B /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = "<group>"; }; - EF6442100B2F3E03EE075615215B4E11 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = "<group>"; }; - EF651BF797D77457B649715E63526E00 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = "<group>"; }; - EF69FB30EF68D78CA22E99122BB98100 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = "<group>"; }; EF9EA4FE7261AD88C6508FF0BA7DC190 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = "<group>"; }; EFA19E9C97FE4A0DED634EE1FC44548F /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = "<group>"; }; EFA7606795FDB5888AFEE892A79A018F /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = "<group>"; }; EFA9E989106978D4E80BC8EE286D6304 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = "<group>"; }; - EFBA49CCC766F713936BAB544C40337B /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = "<group>"; }; - EFC964092A03DD1B8F70526CE98F50B4 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = "<group>"; }; - EFCED0B9AF8DD3D9A8D069396F972885 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EFC0079859E42358B491F854702DB88B /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = "<group>"; }; + EFE0653D22BE12EBA90C1FC022D00913 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = "<group>"; }; EFE70113AB1891B8700EF3061EA21E74 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = "<group>"; }; - EFF998B96BCB4359B5AA3F01412F8A10 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = "<group>"; }; - F00293AA71A402F46B2D3EFA14147688 /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = "<group>"; }; - F00B015E33E5B745D0467D73D56E61BC /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = "<group>"; }; - F01C917A36AC6C408C0A8820274D6289 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = "<group>"; }; - F0244C08DDB773008F0D68649F09FAF2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + EFE9C7F9E630710AE14DC0088B128EB6 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = "<group>"; }; F02F6E994B9537FC420EA54EDEC36571 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = "<group>"; }; F03305D95B13901C45D0E5D488973FD6 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = "<group>"; }; - F053B45DC8B3349DD2FAEC0223CAD6C0 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = "<group>"; }; + F04DF803FCB058655E2F5A9DF0317A24 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = "<group>"; }; + F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = "<group>"; }; F0574453A93A0711AB29EE7CDFFB0BEE /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = "<group>"; }; F072BFD907A6FCC7834CFE7FCFC1883F /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = "<group>"; }; - F073E2C45F23CEC46CFA3C6C56AC232D /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = "<group>"; }; F08851DA08DD037434F74B51751E3EA1 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = "<group>"; }; + F08AB5F4C1F34510E8E82AA7FD7A56AA /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = "<group>"; }; F0A037A46EF17388BD951F5073AAA0CF /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = "<group>"; }; F0A85D7A09133E03844A2CF18195CB8D /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = "<group>"; }; - F0B2839671826EAFED28781707F8DE9A /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = "<group>"; }; - F0BB5380227B513F9E36B44D10BA54FA /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = "<group>"; }; - F0BC9C471576F5426A63932C63D6ECAE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - F0BEA946E0C90DBBEEBF2F1973FCE675 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = "<group>"; }; F0CAD417C95E21148CD78EF8D0DD96BC /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = "<group>"; }; - F0D0C520E720F849C7F93F61AA0D4AC7 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = "<group>"; }; - F0D73E173764C933D18F25FDB16526AB /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = "<group>"; }; - F0DA22F428291426C74C1FB9D997E8AC /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = "<group>"; }; + F0D5EB0C0AF1B46416A6E4E7E3D33DA5 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = "<group>"; }; F0DCAC264BA4ED2D4100C356EA1ACB22 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = "<group>"; }; - F0E5FC0EB2299670FBD2C634949EB2EC /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = "<group>"; }; - F0FE35C0063768002405159CF55BB427 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = "<group>"; }; - F0FE5864F9B46E49560A65B71ACD345E /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = "<group>"; }; + F0E0C101451EA03BB79D6AAFC9A07CBB /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = "<group>"; }; + F0EA7EFFD6F92FB7ECA84ED25FFA4DDA /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = "<group>"; }; + F0F8ECDEFFE4E135FB39B000FF214874 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = "<group>"; }; F10A46E052312AA2D141721324EBC6B3 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = "<group>"; }; F10B6E9FB3CCF467E6832F03D1449E3B /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = "<group>"; }; - F116C4C2B2E4866A92F2576A64F4BFB0 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = "<group>"; }; - F11A53A95E9180B8F87AEB4691E62828 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = "<group>"; }; - F136F4A0BF2386B15DAFCC1D67A2AAB0 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = "<group>"; }; + F10EED5C802D21F194A7C2B7067A4348 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = "<group>"; }; + F12B3E9A08BDB290145E3B2BD5B66667 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = "<group>"; }; F147D77D758F4964688AFF951D9018D2 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = "<group>"; }; - F15BD53ADF91432D590A789A323C64E1 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = "<group>"; }; + F15223809380E9E04498D8B990A790A9 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = "<group>"; }; F1695BC522458CDC1A43977CFCEF32C6 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = "<group>"; }; - F16D9AD0D79EABBCA9EB22B4AAE05AAC /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F1838048F02BA54E58AFEEEB54D23364 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = "<group>"; }; - F1997B8A8F8C837D13423F0AE602CD4B /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = "<group>"; }; - F1A04BA784448DEC961E7C30C4D18845 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = "<group>"; }; F1B5747101B4A24255235F06AD9F043F /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = "<group>"; }; - F1D1F2495BA50B8EE783CFFE8D6012E9 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = "<group>"; }; F1FED56A0BD356904BFD90C41C60BBA3 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = "<group>"; }; - F2185F0EE77134879331967B033BDBFC /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = "<group>"; }; - F257D3DC2A8E4E89D3BB0AD17B0D129D /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = "<group>"; }; - F25E7536751C2FA216D8D242DACFC975 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F26B9C20AE8ED3D6ADB7CB19E3BE16A4 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = "<group>"; }; - F27B44B59A4C8BEC4464D5E3A0BD22D2 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = "<group>"; }; - F2C6FFC9018909DCEEB59A7AC726E5E0 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = "<group>"; }; + F22234F81976884632464C9774982352 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = "<group>"; }; + F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = "<group>"; }; + F24DF451B924756AB9891D0AE05E825D /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = "<group>"; }; + F264626D6307524A77063BDB881ED581 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = "<group>"; }; + F2A2A89B3C14D61E41B4004651846E25 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = "<group>"; }; + F2A3944BFF7C3DD1AA2993E0A8F21D48 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = "<group>"; }; + F2B2FB1E278B24DF0352FFF93299CD9B /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = "<group>"; }; + F2BCB20CE87AD5A692F09AA4B712F2DC /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F2C2DFAAE79C00DD3A4A99DCB8ECA3B7 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = "<group>"; }; F2CA620EBE3855DA4C134916DEF9A7B9 /* GDTCOREvent+NetworkConnectionInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+NetworkConnectionInfo.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCOREvent+NetworkConnectionInfo.h"; sourceTree = "<group>"; }; F2CBE8588AEC619EF1058D5143DDDEBE /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = "<group>"; }; + F2CD6713AD3426DD32DF3BCAA79C2CFA /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = "<group>"; }; F2CE43D327AA3E39E0442DC0A05A471C /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = "<group>"; }; F2D12A063B372699162E406DDB4F6ED8 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = "<group>"; }; F2E0B7FA697F1E29B5912DDC969BCA91 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = "<group>"; }; - F2E46B32113E903E5A2A9AE6DB1032FF /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = "<group>"; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F2F118877102B5F49DE30F73F4133164 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = "<group>"; }; F2F7EBCA68F9A1A9EE80E15EA3AE785B /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = "<group>"; }; - F31709B9ECEE7B00CAB3EAE784D2CF59 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = "<group>"; }; - F31BC26CAEBBD69D8236CB7C324424C3 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = "<group>"; }; F331749C73AFBDC65921F6C1FA1B18C0 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = "<group>"; }; F343E8E6DDBCE646DDC08C75FF9C4A8B /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = "<group>"; }; F3562AD6460EB0A578BF2F0ED259FDC6 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = "<group>"; }; - F36AC0A2988673A0B698B47091BBA36B /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = "<group>"; }; + F36308EEFC7D2B93E991A98340CDC649 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = "<group>"; }; F36BAC743B334156669AB5F54F5D2B88 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = "<group>"; }; - F37B86E8900C790C524EA99610557900 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = "<group>"; }; F38814CB2CC48101D8965CF484BDB1C6 /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = "<group>"; }; - F3A9CBDC59D024D20C64F6823F5D667D /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F3C2CE01C00846AFEA01081D39470057 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = "<group>"; }; - F423EC0AA39FB85AE48D72DC71581328 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = "<group>"; }; - F4292B3183BDB41D5DCF7A2AA393169D /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = "<group>"; }; - F42F29B8D47A52039805B2097D6EC39D /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = "<group>"; }; - F439BD20B5301F3B48D4563AAF2F7D5F /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = "<group>"; }; + F3C3E84FE030DC137DCA3DE564F34749 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = "<group>"; }; + F47C6A80B111FB05337FAEADB7A4358B /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F486AF3EF93E58CBFFF2F7DE1D4870F4 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = "<group>"; }; - F49413F09637EA47A7233B402ECD3E64 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = "<group>"; }; - F49D2A441806E052306125F684FAFDD8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - F4A43BCB7FE9CD106969831D6AB8C82B /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = "<group>"; }; - F4FCDA9DA3659CD0E6A9EA312D9A2F77 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = "<group>"; }; + F499C1B29AA068DB65988968E24DAE59 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = "<group>"; }; + F4AD38E0B6EC319AA34AEEDBD78E6F51 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = "<group>"; }; + F4C8D38F7CD6C7A1F5D3C85CE2F0D181 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = "<group>"; }; F506EB52B1FEE22D69A75A5E5B317979 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = "<group>"; }; F509EF5B3CBCECA92BD7B721513561E0 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = "<group>"; }; F50EDCAB794DF60CA055C1158F9F2FD0 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = "<group>"; }; + F526B81DD346CBF3318256EC6D0D00F0 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = "<group>"; }; + F53BCCEADEADB82BF87B66397B482947 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = "<group>"; }; F53C113A3ACB2993EE41CEFB1F9BF31C /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = "<group>"; }; F53E266ABBA0580FDCE7E1B40F1D99F3 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = "<group>"; }; + F547C382874BFEFDAF914E0B2965FB61 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = "<group>"; }; + F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = "<group>"; }; F5614EA1B4E668ADB31D0C34B9BE29A9 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = "<group>"; }; - F5754F6BBD599887FE4A61511A404E00 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = "<group>"; }; - F59877FB0237E9E95346773470969759 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = "<group>"; }; + F56F453B57D2D90F9DF91753E5A9C8AD /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = "<group>"; }; F5A50D7A065476A0C4747B680D7254E6 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = "<group>"; }; - F5AAC557AD3C7CADEF6306178A3FF636 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = "<group>"; }; - F5CD2540085B1FF02237224030B0C026 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = "<group>"; }; - F5CD4242F451FA4CB8BAA9ED1B598B85 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = "<group>"; }; + F5B78C6A4B84127419E4C2CB6762402D /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = "<group>"; }; + F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = "<group>"; }; + F5BE3635EEFB4A7DDF77DAF374D06EF6 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = "<group>"; }; + F5C25C555092FBD964CC1EE884307AF4 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F5E0D9130277A6F3085653F6AA2A4DDD /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = "<group>"; }; + F5E4192AE7921B806BBB7C8B4A0FCB3C /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = "<group>"; }; F5E59825E1567763251F6BA3C07E114F /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = "<group>"; }; - F5F1D8026B7BFEAE24E957687D13DB64 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = "<group>"; }; - F5FD3E1D74D3259FA481688301021082 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = "<group>"; }; F61DA646F70603FFB9B2E7890FC424F2 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = "<group>"; }; + F61E79DC7918C604DB071008644B48B7 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = "<group>"; }; F647E423185A624785F5D46422A3DB07 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = "<group>"; }; - F667AC2D3D09DD438C19041E4272E121 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = "<group>"; }; + F66E026AD4035C4B969CBBC952928F48 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = "<group>"; }; F673F7A4451F2EB7B7CAC0BDBB6536EF /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = "<group>"; }; F67FF5C363C76D77ED33D6D936A9626E /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = "<group>"; }; - F6A56ED98449585B139EEB2E6BE08009 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F688B0918BF24C5CD7FA3EAC9AEDA883 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = "<group>"; }; F6CB2A66C13E457EED5F54B9238D2892 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = "<group>"; }; + F6D854D60016F1B78279D87669AF804D /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F6D896DF889FC496FE599DB11FA9E0D3 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = "<group>"; }; F6F294F71453C531ACB159172A062002 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = "<group>"; }; - F70D4CC6A086B97094BFC4397D6BE441 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = "<group>"; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F7380E222D78D6EA48A4D429BB4C6373 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = "<group>"; }; F73FA56BEADCF3C038B8E74CF684643B /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = "<group>"; }; F73FF4F8F7812A822865FFFA289A82DC /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = "<group>"; }; - F79539D21D6441938E9FF2E4BAD4CF73 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = "<group>"; }; + F774838772BFA084164BBD15EB276FCC /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = "<group>"; }; + F775CA009736DE4DD87CF5B45C553E53 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = "<group>"; }; F7AB54913C5AF527335DF4F9928AE3D1 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = "<group>"; }; + F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = "<group>"; }; F7B4A3D1B52ECDFF9E7A674301370271 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = "<group>"; }; - F7B6755707AA35CC5A43F01642944BA0 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = "<group>"; }; - F7C1A66F01155C20DD7129BC50B2AAE7 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = "<group>"; }; F7E2CA6F686A4D5C2B87CEF43C99493C /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = "<group>"; }; F815DF55B9BB388F5C7D1D9B638219C3 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = "<group>"; }; F81B0B9AF74EA1B9823E923967ECB355 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = "<group>"; }; + F8248CD3ADC3F5F6091D2CFEEDCBC10E /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = "<group>"; }; F830D7A467353BE7FFC483C48DF75AC9 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = "<group>"; }; F83814029243EE4354E9FFC684BFF9D6 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = "<group>"; }; + F851C04DBFE8CA57312A9FF7D4AD29B8 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = "<group>"; }; F85CF2A508228A89D77307670C09B0C1 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = "<group>"; }; - F87861CE0A3AA661DE6BBB55B587178E /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = "<group>"; }; F885840BD15DE323B145CA94BB4F6B67 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = "<group>"; }; F885B7B43A41983387381CB7913523CD /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = "<group>"; }; - F885E69F1E8761274FACF99C1D5537EF /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = "<group>"; }; + F88FEF53D9ACBC842772E7378CDD10A7 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = "<group>"; }; F89AC34C60188365F35B3219B72C38C0 /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = "<group>"; }; - F89F92D9698B360DCDB85F764ADCF471 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = "<group>"; }; - F8BBC38F871B68D71A37F1C564F6AD33 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = "<group>"; }; - F8C50783CFD36716694B2BFB82E2A781 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = "<group>"; }; - F8E54E5325C0D655C94D6ABAEE7C9C18 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = "<group>"; }; + F8D317B01532D8171FD0933F1D90EDB1 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = "<group>"; }; F8ED60728838621F539415E4077A7154 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = "<group>"; }; - F8F4675CC8307D777C968A879851B36B /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = "<group>"; }; F8F7CBD2B1FAC92FBC8A7461B2E5DEDE /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = "<group>"; }; - F90C85CE7B27439EF3F5B5BF6081766A /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = "<group>"; }; F928DEF1F4C03431EB6FC20885D5B7AB /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = "<group>"; }; + F93518BC798B6148F9C4B8FC8C045423 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = "<group>"; }; F941A045D7BB55176B9C871E9566E1BE /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = "<group>"; }; F94BD1D204DCF22BCEDBF671F3E4491B /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = "<group>"; }; + F9522507026DB193E512A8E014D681B2 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F9563CDBB00CE3D8E720F62CB0A9D96C /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = "<group>"; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F993BDC70A5CB48D7CC41DBC928A90CB /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = "<group>"; }; + F982B0E52AB2E4E1B81DDAB4B8F60CC1 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = "<group>"; }; + F9AB58141DE09EF4AC8B4F0FDA2A9CD1 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = "<group>"; }; + F9B01DF099050119316618AFBCCBFD9D /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = "<group>"; }; F9C70C0DE50B1BDE4F31EE82E99A4926 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = "<group>"; }; F9C78C720B773766CDC9BF8BBF340064 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = "<group>"; }; - F9DCE6B5CE179FB015B4EA195D7E9476 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = "<group>"; }; F9E397BE7F402417B1ED72709AB86BF0 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = "<group>"; }; - F9E6022931213814A43075FDB10B1D70 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = "<group>"; }; FA0D07D7B695DD29C27AACE7ED6B5662 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = "<group>"; }; - FA2BE66AD8EC2B22D00977A47E0D8FD5 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = "<group>"; }; + FA10995DDDECEA08F51CFF426D956258 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = "<group>"; }; + FA2060F52377558351C43D46F0379845 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = "<group>"; }; FA2EB69DCBE1E28DC0760CF7E6D5841F /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = "<group>"; }; - FA6EAD5FB226DE03EAEA90D17A3793FD /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = "<group>"; }; + FA45D31E77F2ADC94723D36D93225EB8 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FA7620C33D98CA444273207FD555ABAF /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = "<group>"; }; + FA94BFB94A42E252349264828408B209 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = "<group>"; }; + FA9DC7CE04AE3EFC8603996E0BB0F3EF /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = "<group>"; }; FAA974287358097962979FFDDC7817C5 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = "<group>"; }; FAAAA8269B5EEB70685F47DA901D4B89 /* FlipperKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.xcconfig; sourceTree = "<group>"; }; FAB2EBFB395939FCECF63C7A3778B9FE /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = "<group>"; }; - FAC1E3AD3A3C7D5EF940D5A3C236CFF1 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = "<group>"; }; FACAB515A9E0BC51A4C6B8B8159EE2F5 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = "<group>"; }; - FB12A2E1F939241D1FA0AB0F1938E54D /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = "<group>"; }; + FADDCB66AE8BC9E7C8DFB025BAD562C6 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = "<group>"; }; FB1411CF080F2B693F14589EE28CCF08 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = "<group>"; }; + FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = "<group>"; }; FB2F287510518D3B23AA2C01AEB3AC96 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = "<group>"; }; - FB428D3C7FD683A121181252C5246E28 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = "<group>"; }; - FB5F65DB5FC23042D7F48B3043F93673 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = "<group>"; }; + FB45350C9346A722E8E74112BC52B443 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = "<group>"; }; + FB4644FF07D75BA088A2DC60B5CF79B5 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = "<group>"; }; + FB5A0CD79F1E53BE13EB6F4C591D9B13 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = "<group>"; }; FB73DF7B7BA890A12D30D59FA1F2774B /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = "<group>"; }; + FB778FAD940294AABA45B65ABA0C8374 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = "<group>"; }; FB8D9FC9225755C2093E81F8EC58B9A3 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = "<group>"; }; - FB91F4227F109724D2B112490C4FCC26 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = "<group>"; }; FB99886C1D76074BC6C12C7256092A39 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = "<group>"; }; - FBA19F882708659F8EECE56735E85533 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = "<group>"; }; FBBC787FA1E7F34559B2DCFDB9AB12C5 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = "<group>"; }; FBCE2FDF0CE0B180C2AF59536B663A8D /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = "<group>"; }; - FBCF91D66A45CA87BF4FBF77A381D8AC /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = "<group>"; }; - FBD525F9951F719112FDE4F81AC9A678 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = "<group>"; }; - FBE2EE1238802256D8C114B7D3785328 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = "<group>"; }; + FBE8F1E2A57485398832FABA2C87BED8 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = "<group>"; }; + FC0110D216D4372BFFF4A82540AE74AD /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = "<group>"; }; FC08E55E970220E686A21BCC4171AEB3 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = "<group>"; }; + FC094B5674B29F3C7EE5840E3F4FCCAE /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = "<group>"; }; + FC1169799DC69BE14CE10CA9F70E27B4 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = "<group>"; }; FC18FF65788DF7D547828224925E7274 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = "<group>"; }; + FC1EDE67008215F51101F35C2C193913 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = "<group>"; }; FC235C09984F2578184426088A6F00A2 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = "<group>"; }; + FC2DC5C86F5CECF620384916C4995D9B /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = "<group>"; }; + FC429F00E2DBFC7193540F246B0E6365 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = "<group>"; }; FC49E3677696B83511C886B9C066D9B2 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = "<group>"; }; FC4C3DD5B9B22406E01CE136DE483040 /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = "<group>"; }; - FC6BB435F9F3CA370C4BD2870EF8B151 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = "<group>"; }; + FC62EE3D482E365E56024FE8B612D7CA /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = "<group>"; }; + FC76F239BF3B62D1ACCD0007933BDF72 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = "<group>"; }; FC79CB545AD11717DEFBA8A8762449C9 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = "<group>"; }; - FC8619F3D9A8BF6B90A22609360BC009 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = "<group>"; }; FC8F6E233D037583958956D70CBE4920 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = "<group>"; }; FC9D4CCE27BAFB6DDCB41CBAB00A7C0D /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = "<group>"; }; FCAC7A2D66B155F138335B0C2F002778 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = "<group>"; }; FCADA8566E47EFBBC1E5CC1591D6B28E /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = "<group>"; }; - FCB8F0B2E82C8ECF93A3A1068CBF2DA7 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = "<group>"; }; FCC0AA0FB200B90A95C98B02F8909AC5 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = "<group>"; }; - FCCB30F91675C5F551A9D5197B4C4630 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = "<group>"; }; FCCFDB9DE0425A466516DDCBE25CD777 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = "<group>"; }; + FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = "<group>"; }; + FCDC9F5D6C960EF2306EBEDC5BE43AB9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; FD350C2D53E9E7F3DD5CB8D2B1ECB3D9 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = "<group>"; }; - FD44872970880E6BC2CA040B3B509AD0 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = "<group>"; }; + FD3FAF17769AA4C5BD3A3A08446A8239 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = "<group>"; }; FD4C88170E5E9ABBAA25E326FD4556DE /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = "<group>"; }; - FD5387872CDB3E69D6850D5774F27155 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = "<group>"; }; - FD56DD05E452DC489C5852DF2964668C /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = "<group>"; }; FD5962EE39CB504F050E47855D7409C9 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = "<group>"; }; - FD755AF6B65F25A30103152B217BF8CB /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = "<group>"; }; FD7E959C518BB93B5548494C34BD2DBD /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = "<group>"; }; - FD88920F54E5D82BEB3D0960733A6D43 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = "<group>"; }; + FD80D3557B7F95C1F231BFF7DD19C97F /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = "<group>"; }; FD89E877061D905E9B19FC9BEEAC05A3 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = "<group>"; }; - FD9C5F48C11EF7F770DDBD7E7AB64805 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = "<group>"; }; + FDD64D0F88E2C0BE02AC4EE251307A2A /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = "<group>"; }; FDE540B0639E42FA08FF08C3E0FD9BF5 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = "<group>"; }; FDF8610EC5A6F59C3F89C83050AE6580 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = "<group>"; }; FDFEE578BDACDF8A7DAAA1CD21387886 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = "<group>"; }; - FDFF516A56D29D5DD5ECFF3BA27CE632 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = "<group>"; }; FE392A777F740FCC1F1EFC731F72ED82 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = "<group>"; }; + FE3950213BA5881CF4D302913A641927 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = "<group>"; }; FE46758639181FC6497B58527D37A4A1 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = "<group>"; }; FE49077A861D5E21DF7F544798F4C122 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = "<group>"; }; - FE49DD992C7A34FB3D18DC5BF2EBD6EB /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = "<group>"; }; FE52830DF5CB21EA5B1AE66B44B95413 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = "<group>"; }; + FE57B27FCD352BE6A537713A07C9CE57 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = "<group>"; }; FE5AEDB8583C91650C6B9734B0BF962D /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = "<group>"; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE82543F068334B0331886A3E9D99352 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = "<group>"; }; + FEC14D37AD94DAECA2EAF070894A6381 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = "<group>"; }; FECA93BF616383B99E7EA634F594FB5F /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = "<group>"; }; - FED0C26864204D28F9566CE99D8F3406 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = "<group>"; }; - FEE9B003C81BC9E7F57A1FC4BA2AE3E7 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = "<group>"; }; - FF2E6FFB04F6ACC99BB3534E9D6BEA9E /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = "<group>"; }; + FEDCC95D19CBA4FE7AA7D755C04571E0 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = "<group>"; }; + FEE12A9E98B8D825BBCE044BB9BDD0FD /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = "<group>"; }; + FF15DF6D8710A1D72E233A78C4A9D239 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = "<group>"; }; + FF265AB52B23A7E06EB3545394C853D7 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = "<group>"; }; + FF346B1F539C0033DC89A3628BB4EB56 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = "<group>"; }; FF36AFBA13BEF7187C587D6256176EDF /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = "<group>"; }; FF3F5880EA2798E9F1380057A2F66360 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = "<group>"; }; FF586CD523D95A658AADA902B005000D /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = "<group>"; }; - FF5C3E3819E52D3D1F16F9CA7E501F58 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = "<group>"; }; FF67601B849AD8043039ACE8C73DF64E /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = "<group>"; }; - FF88F70BF52D7867F297C5EE3C6F2391 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = "<group>"; }; + FF6933A8827E414F03FE665F8F86110A /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = "<group>"; }; FF9E7AD61C9216985F645645C9725004 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = "<group>"; }; - FFBC35E1ED44B95269A947A8B931A5EF /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = "<group>"; }; - FFCB8E6A0EB6DAD34AA30A88AAD2711B /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = "<group>"; }; - FFCF1286995BA59CE4B88776CFA9CF5A /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = "<group>"; }; + FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = "<group>"; }; FFD0365953B805435F038F1DA8230E14 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = "<group>"; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFE0335CC2830147A383C618C7911125 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = "<group>"; }; FFE0B63AAB7455814F4D4F51B9B4B0F0 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = "<group>"; }; FFED175A51D1C78378F5B09D9BBE61E6 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = "<group>"; }; - FFFBB5AD55DFEB99A6804D89E7EB8678 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = "<group>"; }; FFFDCD49160C16CA5FD6315148B4F07B /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = "<group>"; }; /* End PBXFileReference section */ @@ -9381,6 +9482,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 10528A71B397AE90D0E7E8C4978CC6DC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 136F65CA156A9FAE9001958145315490 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9724,7 +9832,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B0042AAD0EB5F800C919EAFC8C98E8D4 /* Frameworks */ = { + B025459747091C59F3470B1E7E53F397 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -9759,6 +9867,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C254557CF86CCC5C969201743725FEBB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; C311AF1F2D1C91355EA404CA8B49D93F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9920,6 +10035,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F0BC5C95B86DEDD201856C422C8E4B0A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F0C65E16DD4D254C916F18D36A1ED0EF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9941,13 +10063,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F414CC9DCD46BBDDD9B4D104DF172340 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; F8A87BC1D31D34426155DE9CBFD62B20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9995,61 +10110,119 @@ path = "../Target Support Files/Fabric"; sourceTree = "<group>"; }; - 00875CA2500300AC9A25552707D3BBF9 /* Pod */ = { + 00F964082C84394EFE9453B8C3AD69E0 /* Source */ = { isa = PBXGroup; children = ( - 83C130BC81FE3BEF5302770D93E3423E /* RCTRequired.podspec */, + BE42C93098C250F9D4E032275E565041 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = "<group>"; + }; + 01B83819926FC18242C3BCF6E947D9C4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.xcconfig */, + D9CC335C8C592AEFC9057636EA09D300 /* react-native-safe-area-context-dummy.m */, + 20110542FD849A0ED0F1A1345A97FFAD /* react-native-safe-area-context-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + sourceTree = "<group>"; + }; + 0283F8E5059CB7628E599316EBD9C880 /* Pod */ = { + isa = PBXGroup; + children = ( + 7D3525B6C8556840842B28C45468D502 /* LICENSE */, + D7BAE26AC52601842834BDCE65545B5E /* react-native-webview.podspec */, + 753E0905C98819E42A1CF1A46A0170AF /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 03845CEA6079EA91BBBBFAF3B2086F2B /* React-jsiexecutor */ = { + 02B1E09C9F76CBE9237DD3B3976E92D0 /* Support Files */ = { isa = PBXGroup; children = ( - 2282B9C099E923015053646C706DFEB7 /* JSIExecutor.cpp */, - 7E894D8701031E4689BFAB19375BBE00 /* JSIExecutor.h */, - 47FDE73B387B1B21EF6C22D33E8959F3 /* JSINativeModules.cpp */, - 6D401696460DC234C4D3BC0A6A16DA8C /* JSINativeModules.h */, - BC89604F2509DA0136CCA2E7E2F5153C /* Pod */, - 09D2C01DD8A89EE68BF8DC193121C44B /* Support Files */, + 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */, + 7F99470B4CFB1DFF0E1519B85AFA600A /* EXImageLoader-dummy.m */, + D506AA27CADE62ECB13FCC7E2EC76BA4 /* EXImageLoader-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + sourceTree = "<group>"; + }; + 02D77A59F48F6CF6CE6E56CC8773D443 /* fabric */ = { + isa = PBXGroup; + children = ( + 97ED2B9EAB91405A7030E427358C76EE /* crashlytics */, + ); + name = fabric; + path = RNFirebase/fabric; + sourceTree = "<group>"; + }; + 0313269D82DB594D3F30A282D3E07A5E /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 019000D78E96C67B33027B1AC4CBE890 /* EXPermissions.h */, + 3D0EC160F40518C6771B030C1BB9FE75 /* EXPermissions.m */, + 4AC9046FC579AB3098D2E25E77291FDA /* EXReactNativeUserNotificationCenterProxy.h */, + F66E026AD4035C4B969CBBC952928F48 /* EXReactNativeUserNotificationCenterProxy.m */, + CEF7B960F2F07CB31CC57B6B60A56BFF /* Pod */, + 6BF30F45E596F0D8A86648362950C157 /* Requesters */, + D3F0A476A68FEE435021BFF21486BFB2 /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = "<group>"; + }; + 0352856E1BF7B7187BD2BC8470781B6B /* Pod */ = { + isa = PBXGroup; + children = ( + D6AF50488FE8EC76893A6868564AB615 /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 03DBB74D426625F3B653E838CDA966AD /* React-jsiexecutor */ = { + isa = PBXGroup; + children = ( + 9AF67609001A45E16F9812CB6552BC57 /* JSIExecutor.cpp */, + CAB3A635E372DA342C80E4E1538A8189 /* JSIExecutor.h */, + A8221DB088F1F97FA01608BCBB7F6805 /* JSINativeModules.cpp */, + AE9645B6A346D32DFC512DE5ACE3F419 /* JSINativeModules.h */, + 1ECC0CA3DA2B16BC0774485AD15F0603 /* Pod */, + 6C87F72243F692A4DE76085CF6D789E6 /* Support Files */, ); name = "React-jsiexecutor"; path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = "<group>"; }; - 0549384A53E96785D82FEB3B6AD9A676 /* Pod */ = { + 044FE8B248F2EDFDFA4B4D4B5A0530F7 /* internal */ = { isa = PBXGroup; children = ( - 2B720F1263348DE5A54E3740536D80F0 /* LICENSE */, - D08163F3CD7DF83158B25C4F2B537BCD /* react-native-webview.podspec */, - 66EEF92B99D35E7BBFB4C8F45B1A844F /* README.md */, + CD22B7DF933DE95063DBFA9AB621CA2E /* experiments.cpp */, + 91297C5FA5AA16DE081A805FF346F321 /* experiments.h */, + D09C4D3471AD4C2FCF718AA4409903D7 /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = "<group>"; + }; + 04DD37C5BF852F9C84FF47AE4D322B43 /* Pod */ = { + isa = PBXGroup; + children = ( + 18BD91E28252A0B76ED45F7725EF8C3F /* EXConstants.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 054D66B7F032C6DA5F0F9E0AC9DF8A7A /* React-RCTImage */ = { + 052E3E35D9B314E37CC365A8B9079212 /* Support Files */ = { isa = PBXGroup; children = ( - 4555182B961E262F7A5D0D88C698AAEC /* RCTAnimatedImage.m */, - 156372D4A148699B71680BBE13F43503 /* RCTGIFImageDecoder.mm */, - E01E81293DE6806D93E9CFEE734285A7 /* RCTImageBlurUtils.m */, - 4D029270B92D120097A75C1B3664475B /* RCTImageCache.m */, - EB218499B4C9284587F25025E486F1F3 /* RCTImageEditingManager.mm */, - B23BFDF777ECA6B492FBFCCC327F4F1C /* RCTImageLoader.mm */, - F27B44B59A4C8BEC4464D5E3A0BD22D2 /* RCTImagePlugins.mm */, - 7658F1511A21C06EE2961BC952BA8334 /* RCTImageShadowView.m */, - 641D8F8FA1DD9B786D2ACCE319365B95 /* RCTImageStoreManager.mm */, - 5A9286098BE2AFF9C3096C39C51CC8AE /* RCTImageUtils.m */, - F5F1D8026B7BFEAE24E957687D13DB64 /* RCTImageView.mm */, - 2025F903A0F5D0237324B244B18EE916 /* RCTImageViewManager.mm */, - 5110B9E4FD92BAE1ABF0FA39557E0037 /* RCTLocalAssetImageLoader.mm */, - 5E4BEC03C02A6ED4B4E77A9D08060ABD /* RCTResizeMode.m */, - 6E8E63937BF12BB805261FDECD7115A4 /* RCTUIImageViewAnimated.m */, - D34039DEEAA0AFB3E1E964FD0C82BE95 /* Pod */, - 15FAA0EB906C3EA9E1BFDEF734272EF1 /* Support Files */, + 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = "<group>"; }; 058241B8D27184C6DD872B32AEBA52E2 /* Support Files */ = { @@ -10062,80 +10235,39 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = "<group>"; }; - 0611BCBB225EF42BA40CF71ADD05EBDB /* Pod */ = { + 0781F43E500DC52C1BF9264E02070D34 /* Interfaces */ = { isa = PBXGroup; children = ( - DC3D64CD17610CC29F2A670FF893994C /* UMFaceDetectorInterface.podspec */, + 633A906CE55E133E541EECD104AA1625 /* UMAppLoaderInterface.h */, + 1641694B922617A51FF834292C8E44B3 /* UMAppRecordInterface.h */, ); - name = Pod; + name = Interfaces; + path = UMAppLoader/Interfaces; sourceTree = "<group>"; }; - 06F749594BEE2125FF8D9F39DF424D7D /* React-RCTActionSheet */ = { + 0ADC05D66D8870FAB46A080BCD2E018A /* KeyCommands */ = { isa = PBXGroup; children = ( - 6FB140C0A0FE182EF21C90A555984883 /* Pod */, - 97C508A21587C83737FACDD781418F70 /* Support Files */, + 3C06A74260BEBB5976EC38B84C16A54A /* RCTKeyCommandConstants.h */, + AB406EA6A821F2164139861136834116 /* RCTKeyCommandConstants.m */, + EFC0079859E42358B491F854702DB88B /* RCTKeyCommandsManager.h */, + 5FD707FAB446B9FD7708C85ADB7EEE19 /* RCTKeyCommandsManager.m */, + B21622C79F6C89777264A45D79B1FA2F /* Pod */, + 322B20C7021CF21E72CD06031AEC9202 /* Support Files */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = "<group>"; }; - 074D684C58D90AE5547C0C53BF36EDC4 /* DevSupport */ = { + 0AE6FD7D76F038C1A4F9B4A537117DA8 /* Support Files */ = { isa = PBXGroup; children = ( - B1D9846B3577AF237B523F334EAEACE7 /* DevSupport */, - EE00476DA07E04EA1328B63B3C9724D2 /* Inspector */, - ); - name = DevSupport; - sourceTree = "<group>"; - }; - 07D696CC22E5D239EFB17AF91652C2D1 /* Nodes */ = { - isa = PBXGroup; - children = ( - C2FDE110C1E900AD0F8481B3CD83ACCD /* RCTAdditionAnimatedNode.m */, - 43404C253050F35B18ED1228E992C51A /* RCTAnimatedNode.m */, - DA838978E3266512EFD9B40E12CE5CBB /* RCTDiffClampAnimatedNode.m */, - B9C0091405189CF95A94B6A397A391D3 /* RCTDivisionAnimatedNode.m */, - C1EECD30BE7CAFC6DB0F5AF8F0505687 /* RCTInterpolationAnimatedNode.m */, - F9E6022931213814A43075FDB10B1D70 /* RCTModuloAnimatedNode.m */, - EACEDE1384944AD4FE47AD6D5F548BC2 /* RCTMultiplicationAnimatedNode.m */, - 82E230E1B2623136263E9BDB47B3D045 /* RCTPropsAnimatedNode.m */, - EB39C88DF538DA881FDC025AECCB9EDE /* RCTStyleAnimatedNode.m */, - 26EDBBF1C83F104184FB5A4306FEB25B /* RCTSubtractionAnimatedNode.m */, - 75840501AC038B9F9DC5B368A0ECA92F /* RCTTrackingAnimatedNode.m */, - 5DB1CB7104EC36C7D721043229510EFF /* RCTTransformAnimatedNode.m */, - 1C650C82285956D4C10DE146F9EACCF7 /* RCTValueAnimatedNode.m */, - ); - name = Nodes; - path = Nodes; - sourceTree = "<group>"; - }; - 08C18F592585F722BE55E4BAF7F83BBF /* Pod */ = { - isa = PBXGroup; - children = ( - EC9F16394621C77323384554622F8D38 /* UMReactNativeAdapter.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 09D2C01DD8A89EE68BF8DC193121C44B /* Support Files */ = { - isa = PBXGroup; - children = ( - 1615925E1FFEF2FE6497798AA5B55187 /* React-jsiexecutor.xcconfig */, - 4A3D8CC5FFD182B2F6B93B6E2FD0EF10 /* React-jsiexecutor-dummy.m */, - C03A547C45B30FD111FEBF982461EB77 /* React-jsiexecutor-prefix.pch */, + 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */, + ACF0721D04DEE6D5C1E56141C5C8E4DC /* react-native-cameraroll-dummy.m */, + E8B2D04B65CB01A5C753E613DE9CBAC3 /* react-native-cameraroll-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = "<group>"; - }; - 09DFD85426871C1F945B131EDD0215A9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1C22128EA145E17450FCDF65A15CD974 /* FBLazyVector.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = "<group>"; }; 0B323C44BDFE19BA008B4C6BA0178443 /* GoogleDataTransport */ = { @@ -10188,293 +10320,260 @@ path = GoogleDataTransport; sourceTree = "<group>"; }; - 0C121E8E5252C89A96BE23702604F7B4 /* Support Files */ = { + 0CC1A52E1277DC7D986393C45CEC131C /* react-native-slider */ = { isa = PBXGroup; children = ( - BF704942F733256935E2D6EE6B93DFA6 /* RNRootView.xcconfig */, - BEA79E45CD6C4B455D971CD4CEB2489B /* RNRootView-dummy.m */, - 3693AFA36C30B1CD3B841A7E328299A1 /* RNRootView-prefix.pch */, + A1FCA69C255F8634784234D96A3DCC72 /* RNCSlider.h */, + 019221C7B171A8784728465F9FE50ABE /* RNCSlider.m */, + FF6933A8827E414F03FE665F8F86110A /* RNCSliderManager.h */, + CBF19FC14AA6BAF3B58FBF8FF15C1F3C /* RNCSliderManager.m */, + AF3F289D9904231702C2FF5D5FC55B11 /* Pod */, + E81FA8B1651697AA6ACAE276D8379554 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = "<group>"; }; - 0C99771C245B9C83367820FF9DC04360 /* Support Files */ = { + 0E6454C95D3C8FD02B69246E4F2296F3 /* RNFetchBlob */ = { isa = PBXGroup; children = ( - CBD4FDA4DBA18F2D320EB53621713B75 /* KeyCommands.xcconfig */, - 67E42338FFC645BC4772588D7419BD56 /* KeyCommands-dummy.m */, - 31E5253B01FC9B140DD8BEC2420EFF77 /* KeyCommands-prefix.pch */, + AB627D2AB477CA3CD3CD2976B9D5382F /* RNFetchBlob.h */, + 5DEBC18A46494601D218BB6CFF822423 /* RNFetchBlob.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + name = RNFetchBlob; + path = ios/RNFetchBlob; sourceTree = "<group>"; }; - 0CED250E298424DEDF8EECF0B09A9207 /* Base */ = { + 0EA584F9E36175DA047E8C69DE8C4DBB /* Inspector */ = { isa = PBXGroup; children = ( - CDD07198F82534ACCC69AB9FDAE1BEB8 /* RCTAssert.h */, - AEDCB4110F45A76F11457C2BB7165A91 /* RCTAssert.m */, - 3E58473565FA7BA6B52C7C03F53AFCCC /* RCTBridge.h */, - 9FD7052A351747D664E17F8FBE159F1D /* RCTBridge.m */, - B98C43EBEB9ED9E996C65F076BCB5B5E /* RCTBridge+Private.h */, - A280CA55FF78171F1ED13779FB551932 /* RCTBridgeDelegate.h */, - E755722461C854C58CF07583BB456258 /* RCTBridgeMethod.h */, - F257D3DC2A8E4E89D3BB0AD17B0D129D /* RCTBridgeModule.h */, - 163428F7C1130AD4199A56D14F59E9FC /* RCTBundleURLProvider.h */, - 78039537C57B2A28ECBD0C23618DD2D1 /* RCTBundleURLProvider.m */, - BC31893C8BDF4D8D27AB86CA142274AD /* RCTComponentEvent.h */, - 730EDD9E1FC8A1388C7167F75A186D6D /* RCTComponentEvent.m */, - 88AF37083B5DDB6D7DFE1DA413D5CF30 /* RCTConstants.h */, - 21319F0AFA59E134BCC424856DB5D5A6 /* RCTConstants.m */, - FF5C3E3819E52D3D1F16F9CA7E501F58 /* RCTConvert.h */, - 18077DE12EEB948837CCA17BAEE0D115 /* RCTConvert.m */, - 1CD3BD95CBEE9A68C6902C24B54B5F36 /* RCTCxxConvert.h */, - 2F67073A4073D195BC1CBBDAD46DF2D7 /* RCTCxxConvert.m */, - 75A2D17258539631BD6BC5307CA68D32 /* RCTDefines.h */, - F993BDC70A5CB48D7CC41DBC928A90CB /* RCTDisplayLink.h */, - D1CF038018D7847B9749049E0B48F3F3 /* RCTDisplayLink.m */, - 1678C17C726C2BE1EF54A04E4A70DCB5 /* RCTErrorCustomizer.h */, - 4F2020222F85CFE66C30A065187AEDDE /* RCTErrorInfo.h */, - E6EFFB3070B08DFC8252B07482F4119A /* RCTErrorInfo.m */, - 146F95318E28047948E0F80CD3F6FCE2 /* RCTEventDispatcher.h */, - 07B399C7A1992ED828E225323FB85F8A /* RCTEventDispatcher.m */, - 930A91478BCD1BC247D48A71AEA9B47E /* RCTFrameUpdate.h */, - D327EEF1E98626D5B854257E7F9D744E /* RCTFrameUpdate.m */, - B0EFF16C475E5AF42D1172704B35E797 /* RCTImageSource.h */, - B8A9C400B7CEF9A75CAEFDF2CC0C4429 /* RCTImageSource.m */, - C7F5FB874B08672C02FB2BFC14D2D529 /* RCTInvalidating.h */, - EF69FB30EF68D78CA22E99122BB98100 /* RCTJavaScriptExecutor.h */, - 6842555D6F2AF5CFA9E7007E2D3A78B8 /* RCTJavaScriptLoader.h */, - 0DD8C4A06C5E44518B3A2593C0DA33E9 /* RCTJavaScriptLoader.mm */, - CA6350A627E0F4163DF3D66F3463BE32 /* RCTJSStackFrame.h */, - DA53E99E39A52A1D12AEF184AC924485 /* RCTJSStackFrame.m */, - C553B6048128E6C5C2010F54DCFFFF32 /* RCTKeyCommands.h */, - F667AC2D3D09DD438C19041E4272E121 /* RCTKeyCommands.m */, - 0B7D80CC1FDF07D80A0C750EE3C70A73 /* RCTLog.h */, - 9C31BEE6F2476A4FDC2F64BA45DB58C0 /* RCTLog.mm */, - 4F351CE4D2108C412E825050B755F4A2 /* RCTManagedPointer.h */, - 6D791AE312E93DF3F3AFD4C628799188 /* RCTManagedPointer.mm */, - D92001A2B343507491B58FAFF72599FC /* RCTModuleData.h */, - 708124D377851987935E0BF6BC3868F9 /* RCTModuleData.mm */, - 0A8A7F71CEA3113495178C52D7AB8F9A /* RCTModuleMethod.h */, - A00768B9736810750DF8C347AFFDD01D /* RCTModuleMethod.mm */, - 14DF957F3F59BBE5E5147FD3AECAE7C6 /* RCTMultipartDataTask.h */, - 6BC5891678C02779436A1B9553BFEAAF /* RCTMultipartDataTask.m */, - 732BF9E3C66AA7950161168B32B4FE63 /* RCTMultipartStreamReader.h */, - A611367A07420ADAB8576C1B142EEDF6 /* RCTMultipartStreamReader.m */, - 9A0A30FBAAA3F331107EA451DD10260C /* RCTNullability.h */, - 69AE2BC1D2DCEB0F8F2A47F3D7F10F2C /* RCTParserUtils.h */, - 7A76FE361D047EF69149592F12D351D2 /* RCTParserUtils.m */, - 3B62D8AC6B14363808EBEEDB068F1A84 /* RCTPerformanceLogger.h */, - D313A35B48E6F08CC4890B066E0381E2 /* RCTPerformanceLogger.m */, - AE7CAB505A0F3E3FC405F3CD5874C7CE /* RCTRedBoxSetEnabled.h */, - E28E4C9104F8F1D243CC86D957F67C8F /* RCTRedBoxSetEnabled.m */, - D66DFEAA4B35B13F8EB0D273776197F9 /* RCTReloadCommand.h */, - 9FDD2D97541D42C063C182563CE8790D /* RCTReloadCommand.m */, - FA2BE66AD8EC2B22D00977A47E0D8FD5 /* RCTRootContentView.h */, - 285EB98A82041BC3FDC0B6C01B431A79 /* RCTRootContentView.m */, - 6CA0A23C08C58D1DCA329D63905CF3F8 /* RCTRootView.h */, - CC836E3CA4CAEFEA4101E7149859A6B8 /* RCTRootView.m */, - 5E14E803222896FFB5A5FD3579D2F497 /* RCTRootViewDelegate.h */, - 1F6B4AA6FF573E550B43BAD38ADCB747 /* RCTRootViewInternal.h */, - F5CD4242F451FA4CB8BAA9ED1B598B85 /* RCTTouchEvent.h */, - 1C69E3FF7D00E712ADC55D418F69C916 /* RCTTouchEvent.m */, - 54AB5A27CF7AF667A90DE266F7CB8121 /* RCTTouchHandler.h */, - 1FAD7E276493ADE0EA07E3BD18FA976F /* RCTTouchHandler.m */, - 8A5242744F2B65F26060D0E9CB8F3DEE /* RCTURLRequestDelegate.h */, - 68323286233BC90E4D00487AE01003BF /* RCTURLRequestHandler.h */, - A1B34F793BB4A4BD310F4E37C2D05C53 /* RCTUtils.h */, - A5C2C297EE96B3D047E7C74B236045AB /* RCTUtils.m */, - B4650F6C3DC189303955FCB4A4CDA802 /* RCTUtilsUIOverride.h */, - 71D962B450E7072857F024FBE0810CD0 /* RCTUtilsUIOverride.m */, - B0684322EF78D44F37B45B65AED3DF99 /* RCTVersion.h */, - FB91F4227F109724D2B112490C4FCC26 /* RCTVersion.m */, - 39C6BC0725BD672410A391879277ADF7 /* RCTWeakProxy.h */, - A4DE3E728AB6A5C13258AC48C82BAB34 /* RCTWeakProxy.m */, - 78E36E738EE69AADFA9537C6D4B28CE3 /* Surface */, + 86142F493DDE680A50CF9D3BC242BEA1 /* RCTInspector.h */, + 5597149807C5CD9062AF0D8023D0B074 /* RCTInspector.mm */, + F4AD38E0B6EC319AA34AEEDBD78E6F51 /* RCTInspectorPackagerConnection.h */, + 3A3741B86AFDBCB513EABA7C00306FB0 /* RCTInspectorPackagerConnection.m */, ); - name = Base; - path = React/Base; + name = Inspector; + path = React/Inspector; sourceTree = "<group>"; }; - 0CF4DFE4749C3A183F2E33464AE60885 /* RNLocalize */ = { + 0F2ED98A21CD0F49899861F120EF3E43 /* Pod */ = { isa = PBXGroup; children = ( - 5C66C8FC34C71543DA942E9B2E7A9EE8 /* RNLocalize.h */, - A739C184D93C5F304556D604643C8A5A /* RNLocalize.m */, - 20DE007B1F21F039AE2C58FF5A983856 /* Pod */, - E3CD3D6C1D0E2BFF290CC102AF6D058E /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = "<group>"; - }; - 0D784DC6B379F7EFDF003E273D89D76A /* Support Files */ = { - isa = PBXGroup; - children = ( - 4D0C7C37DB1566D69F8B271076F5A2EB /* RNVectorIcons.xcconfig */, - 889EF24E336C0DBD6F2AA7C10180B272 /* RNVectorIcons-dummy.m */, - 16E558C31E2809B0CADB15F2A02EAB1D /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = "<group>"; - }; - 0E602234E49603C24F468FA59A9255B2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 43BD1B04416643350A4BF3D1B251217F /* RNGestureHandler.xcconfig */, - 59CB52967B9B2F4C19B7E23E0D0BF179 /* RNGestureHandler-dummy.m */, - 443DC7DE34626A793CF8CCCE336854DC /* RNGestureHandler-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = "<group>"; - }; - 0ED2D72A79BE65BA134748AC78F0FFC7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 91800C9E32E29B80AD6819F6904741F6 /* UMFileSystemInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = "<group>"; - }; - 0F0995F595AFB146003AB50397834304 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5B001CA7D16D8AEB2A6398B7C218AD5D /* rn-extensions-share.xcconfig */, - 7C71CAF2DCC6B9F802938E7F57B0A976 /* rn-extensions-share-dummy.m */, - 4A988470F4B29CE5B5BDBD075AB07AD5 /* rn-extensions-share-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = "<group>"; - }; - 0F386C492952BC082632845A1096BFE4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 20ED547FE4F223A111167318F82A21AC /* UMSensorsInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; - sourceTree = "<group>"; - }; - 0F9606406F10F88215B5F405E9065C8C /* RCTVibrationHeaders */ = { - isa = PBXGroup; - children = ( - 24E56B1C171744B6C095AD9171D395C4 /* RCTVibration.h */, - 19BCFE0872A1AE3E60EB9F2929A0CB8D /* RCTVibrationPlugins.h */, - ); - name = RCTVibrationHeaders; - sourceTree = "<group>"; - }; - 1066765BA6708A7B64F5D2E9228D7722 /* UMModuleRegistryProvider */ = { - isa = PBXGroup; - children = ( - E6F0941D08E0154A154AD3BE25420FBC /* UMModuleRegistryProvider.h */, - D2927EC23C03AE6A0C72B93D099E320F /* UMModuleRegistryProvider.m */, - ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = "<group>"; - }; - 1087E63CCEF61E3F2CA41944475F471F /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - 203D3F75974FF1B69382C71BF5360C36 /* UMFilePermissionModuleInterface.h */, - 0B5CE42DD257F7CF548FA35A7A041F6B /* UMFileSystemInterface.h */, - 195D70D5EF936A1EFF7019DA720069D8 /* Pod */, - 0ED2D72A79BE65BA134748AC78F0FFC7 /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = "<group>"; - }; - 10A67003348C48A7CC2BBCFE6419BC52 /* Pod */ = { - isa = PBXGroup; - children = ( - 7BFF79D6877CDFF6777A2BF3B88D097B /* EXAV.podspec */, + 47334D1C0A25C8B95A919986395B4E4F /* LICENSE */, + DF36CC4EC6787DC51E7084B92E5E9001 /* README.md */, + 7B6497C88283A72EF08F18A3EA2D0997 /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 11DBE89497117E83B12DE15D5DB84FEE /* Support Files */ = { + 10AA064574CB8EF033A937230FE032D3 /* Support Files */ = { isa = PBXGroup; children = ( - DCE1C215E0BC140B0D9D6051E01B350C /* RNFirebase.xcconfig */, - F36AC0A2988673A0B698B47091BBA36B /* RNFirebase-dummy.m */, - C5C7325CEC66051B34A860251DA25FC5 /* RNFirebase-prefix.pch */, + 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */, + 71E63E99A20695BB9EE32555A25813A6 /* RNLocalize-dummy.m */, + 06DE0CFE6EF973F7525BC19782E877B1 /* RNLocalize-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = "<group>"; }; - 11E36A290884F234EA21B1AE7AAEF05C /* Support Files */ = { + 11EC61C611EE23A864D4F80591F331FF /* Pod */ = { isa = PBXGroup; children = ( - 05B096545AD412892A5196245C3150A4 /* ReactNativeKeyboardInput.xcconfig */, - A3BB754709BFFA7AE6D79432A1FA5AD5 /* ReactNativeKeyboardInput-dummy.m */, - B3EDC40D5E5B0FFF9A9321F511E871A4 /* ReactNativeKeyboardInput-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; - sourceTree = "<group>"; - }; - 121F7B66A9F8004AF4CCC552E68F1FB1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 88C5A91B8D001D2E2BF68258B6D2FC9B /* UMTaskManagerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; - sourceTree = "<group>"; - }; - 1477A0CE6903E97E1643BE3356EFEF1E /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - 1162C1C64BD3A09ED355FA5A7FF82675 /* RNDocumentPicker.h */, - 2C2D51761076F23017FE64D5162CBD54 /* RNDocumentPicker.m */, - 161AE98B2D7CDCD2EBB7A96754735BF5 /* Pod */, - 2E9E2B362C0EE03A8495C808F77E0859 /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = "<group>"; - }; - 14B4D53599EDDF5D183F05DE886C67A2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0EF5794719C7B4624AA1D2197F92DF8D /* BugsnagReactNative.xcconfig */, - 2CAA07C9FAE1CBC5F8CED9BE1DAA8808 /* BugsnagReactNative-dummy.m */, - 695A6927BDDA54F68A63EC4B650279B9 /* BugsnagReactNative-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; - sourceTree = "<group>"; - }; - 15FAA0EB906C3EA9E1BFDEF734272EF1 /* Support Files */ = { - isa = PBXGroup; - children = ( - F59877FB0237E9E95346773470969759 /* React-RCTImage.xcconfig */, - 363D688DA87AE4DEBF94D3FE2907EE02 /* React-RCTImage-dummy.m */, - 0C09CCE37497E3AFF29E39CDE5173F0F /* React-RCTImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = "<group>"; - }; - 161AE98B2D7CDCD2EBB7A96754735BF5 /* Pod */ = { - isa = PBXGroup; - children = ( - 2423EC95E2A058DF8BD5D25EF832F863 /* LICENSE.md */, - B41E6E28265D1B7901EFA090AFA0977A /* react-native-document-picker.podspec */, - 7D5BFD71DE73BC883BED9DB8890221AC /* README.md */, + 00B683AE6E1CBC46286F76D903C3CCCA /* EXLocalAuthentication.podspec */, ); name = Pod; sourceTree = "<group>"; }; + 12A0ED8E743693028028E41630057E01 /* Pod */ = { + isa = PBXGroup; + children = ( + 51BA4E67C19A7D7F0B629B19C1B227F2 /* advancedIos.md */, + 120A2F7AE95B07B1B111D98983BF4F39 /* installation.md */, + 8DCE4D4B6D4BBF737B27AF55749D0EAD /* LICENSE */, + AA661057EDE002BB9254D1370C4875B2 /* localNotifications.md */, + 9B8384303A2532E24C921A0F688CA617 /* notificationsEvents.md */, + D4D17CE1128CAD0C7376A221281249B1 /* react-native-notifications.podspec */, + 3D90C5DD717032ADDD6AA5FA6A1DA9E0 /* README.md */, + D3CBD900A4CB49206B4C05BE7628238F /* subscription.md */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 12E89D545F98C9845F284C64EA251DED /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + 1435A5F30752CD73BD4A3E3394EB0EFF /* Compression.h */, + AC1667AFA251D0B12C4A273F4A6DB8F2 /* Compression.m */, + B88C46013ACB4DFEA5D4244B205A3C41 /* ImageCropPicker.h */, + 483014B9AD6D877783DD88E8D0B8AD11 /* ImageCropPicker.m */, + 947DC1D9D5F537AC8ADD1652D178F627 /* UIImage+Resize.h */, + 49C3ADC6C2C4519340F0B60372FFA46E /* UIImage+Resize.m */, + A36DFC13B58A860E716ECB6AAF977EAF /* Pod */, + DC51473D82ADE91D2682DEDAD92AEFBC /* QBImagePickerController */, + C5AC6B708CB022009FD7B7E6FF5A1B05 /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = "<group>"; + }; + 1355EE9090BE64A91AED075B6ACF00DE /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 2A6455F4DA46D3D011AFEDCB85C66A94 /* FBLazyIterator.h */, + 4FE0A388D1FAB6CE31BD44DD33632804 /* FBLazyVector.h */, + F151609BD4C16CE097816F689A45C8AA /* Pod */, + 1EC78119A3581C98493B96AC876DE35A /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = "<group>"; + }; + 1371DD7D731AFEFDA3832D1BB954050A /* ScrollView */ = { + isa = PBXGroup; + children = ( + B1C3FBEC0791669A99849D0E5D8DF61D /* RCTScrollableProtocol.h */, + 35557C57F235E90EB2ACCFF11F014BE9 /* RCTScrollContentShadowView.h */, + D2A860FA24F85C1048D62057EB4A8297 /* RCTScrollContentShadowView.m */, + 7D013E58A4B0CF45BD86DAB1BE88BBAC /* RCTScrollContentView.h */, + DEB14E8B79D4E1EDC3C7F619DB0F76D1 /* RCTScrollContentView.m */, + 0777B403F17F492A3B73D37EFB89229C /* RCTScrollContentViewManager.h */, + 1CFA32E7F3C5F31B35D111D6C612DA04 /* RCTScrollContentViewManager.m */, + 2A174FCBA44E8253E94EF53F873F0FA6 /* RCTScrollEvent.h */, + 94DC58CFD685B9D5EB1D708DC0020EE5 /* RCTScrollEvent.m */, + 7502B382F060A689307030BFB63EC280 /* RCTScrollView.h */, + 6F327DF5D1EF9193E97A40C31E991E13 /* RCTScrollView.m */, + F851C04DBFE8CA57312A9FF7D4AD29B8 /* RCTScrollViewManager.h */, + 1672F4FBDCDB899F8282004CD26D8164 /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = "<group>"; + }; + 1467D8E20A7865E67780EEB3DD700113 /* Singleline */ = { + isa = PBXGroup; + children = ( + D1669CBA419AEEEB6CAC6C9F52448BD9 /* RCTSinglelineTextInputView.m */, + B85DCA7215DCC24721034BA8491D07D1 /* RCTSinglelineTextInputViewManager.m */, + 97DDBC044CE7DA5CCCE4A31EF03BAB65 /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = "<group>"; + }; + 147CD9F32702691595FC2FE11C3403BD /* RemoteNotification */ = { + isa = PBXGroup; + children = ( + F5B78C6A4B84127419E4C2CB6762402D /* EXRemoteNotificationPermissionRequester.h */, + FC0110D216D4372BFFF4A82540AE74AD /* EXRemoteNotificationPermissionRequester.m */, + ); + name = RemoteNotification; + path = RemoteNotification; + sourceTree = "<group>"; + }; + 1505B62DE4AC138FBC06155E6B362A90 /* ReactNativeKeyboardInput */ = { + isa = PBXGroup; + children = ( + 3F0CE042EFD03DE40C11A3FE11B306CE /* LNInterpolation */, + 4F943FBBC22267DDDE7521855445AF90 /* Pod */, + 1EF8233FDB7A11836EE3382083EBDA01 /* RCTCustomInputController */, + 3EC2277730C8EAF00187100039934BC3 /* Support Files */, + ); + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = "<group>"; + }; + 15B62160302337FDC23F9FE70B942F88 /* Pod */ = { + isa = PBXGroup; + children = ( + DE728416151A6E0409CC9B54D5A3AEF9 /* UMPermissionsInterface.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 15BDBE06651BFBF8EC637F76A1DB472E /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + 3BF7FCBDBE58FF824E55296C47D01FB9 /* RNUserDefaults.h */, + DC7C17EDE1D3ADAF9E4AAAA4F0805E93 /* RNUserDefaults.m */, + E1E3DC83464E8AF0FCE5B92016341051 /* Pod */, + 9DCC93BF7F53637CB68C43A583C73448 /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; + sourceTree = "<group>"; + }; + 1609EB5F050C78DDBA9B0764B53FFFED /* Support Files */ = { + isa = PBXGroup; + children = ( + D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */, + A7C051B36684AD35D3B9E0855DC0B533 /* React-RCTSettings-dummy.m */, + CEFFEEDDDB5FB56DD03F227ED67A8F76 /* React-RCTSettings-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + sourceTree = "<group>"; + }; + 1632967B47D1DE19EBEFF374D7049024 /* Source */ = { + isa = PBXGroup; + children = ( + E55871F9C2198B66272FDFED3493DDC5 /* BSG_KSCrashReportWriter.h */, + 107D451387B07A0C867AD34BC92323BC /* BSGConnectivity.h */, + 84E2ED926657E49C1145928B73B70718 /* BSGConnectivity.m */, + 2CBB7A0A0D3341A8729B9F3D14F53598 /* BSGOutOfMemoryWatchdog.h */, + 7FD2CE14B86C01D0182D5232A65D8AB7 /* BSGOutOfMemoryWatchdog.m */, + 8CD005D0F8167E89E726EC24D86EF397 /* BSGSerialization.h */, + 32697D5DA0B612CE8AFF865E3133F083 /* BSGSerialization.m */, + F36308EEFC7D2B93E991A98340CDC649 /* Bugsnag.h */, + B38DFD28341D689393C7AEC5C063A64F /* Bugsnag.m */, + 381E485B872E78BA9520875768779D42 /* BugsnagApiClient.h */, + 3E0327631D614F964926C116CE2D0667 /* BugsnagApiClient.m */, + C5E8C3D3C610C6144595BD88455E3153 /* BugsnagBreadcrumb.h */, + 437CE74CA59C58F794EBC32E2CB8FC0E /* BugsnagBreadcrumb.m */, + 0A114E7E7641DE0E9E85B5BC6D7F7044 /* BugsnagCollections.h */, + 3F6FCF94C80C1D5782D49CE8FF488110 /* BugsnagCollections.m */, + 4E60F5AF0B10402EF09199C76684B61C /* BugsnagConfiguration.h */, + B7E7467BEE8E6F86B0DCABC64CF81B8E /* BugsnagConfiguration.m */, + 60FBFC75084DECB3CEC5950D42179801 /* BugsnagCrashReport.h */, + 6A13372A97961B2FCEE907AF7C06F9D8 /* BugsnagCrashReport.m */, + A9632268AF154A6CABA4DAE26034D98B /* BugsnagCrashSentry.h */, + FC094B5674B29F3C7EE5840E3F4FCCAE /* BugsnagCrashSentry.m */, + C07C9EBD2EBB6DC37055104767E8F838 /* BugsnagErrorReportApiClient.h */, + 82C01850FCE0DC70E3D118328348F262 /* BugsnagErrorReportApiClient.m */, + 8791F28043B93FB45126A4FF1B18FD25 /* BugsnagFileStore.h */, + DCEC1BBDA66CBCA038CFCAF6348C0923 /* BugsnagFileStore.m */, + A1213869BBAAEDD07DD56606232430C5 /* BugsnagHandledState.h */, + 1EACE5B4C9E08B4DDD8549B2C025DC9D /* BugsnagHandledState.m */, + EFE9C7F9E630710AE14DC0088B128EB6 /* BugsnagKeys.h */, + 25DC3494FB12543357BB8575BAAE65AA /* BugsnagKSCrashSysInfoParser.h */, + 258D5FDD1098DA394D695543A5EC6D96 /* BugsnagKSCrashSysInfoParser.m */, + B04A3000D987FFA9375C5040F1D14A33 /* BugsnagLogger.h */, + CE12368EE0E36359BB5A4EB2F69DC467 /* BugsnagMetaData.h */, + 3E5B2EF96696FDE275E71309F9EABDF1 /* BugsnagMetaData.m */, + 4E63113E3489FE47881A391D1384385D /* BugsnagNotifier.h */, + 90B55EA33B950C64B25090F072B8B472 /* BugsnagNotifier.m */, + 6571DF5436311985C9F0ECDD2F9B822D /* BugsnagPlugin.h */, + C484E6A346C7B52FB7A5C7F75ECCA52D /* BugsnagSession.h */, + 104F2E03F055BC209F368334BCAFFD3A /* BugsnagSession.m */, + 67DEC3CEBDF826564BC379BD72DAB258 /* BugsnagSessionFileStore.h */, + C095144BC747280B07CA695F86A7471B /* BugsnagSessionFileStore.m */, + 80989FD1E3A28D668EEF944CEBF3D75D /* BugsnagSessionTracker.h */, + 484F71D2F1FE4AFC1C9AA945E58569D6 /* BugsnagSessionTracker.m */, + 34AE55DEA5FFA61EFF3FEC80D5A8FD8D /* BugsnagSessionTrackingApiClient.h */, + AE43C7E09828679BC5E0A82EE1A9AAF3 /* BugsnagSessionTrackingApiClient.m */, + 1EAD16F1C76B70E914D9B8ED5A9E49AF /* BugsnagSessionTrackingPayload.h */, + C967A21D4DB245B24B51E5278EB1D7AB /* BugsnagSessionTrackingPayload.m */, + 12465FEC11132425BF0FFA79B10C0558 /* BugsnagSink.h */, + E4E34D60E16609B4903F2C82BFAC7361 /* BugsnagSink.m */, + 604983AC2EFDD2D9B0108CF938E38A58 /* BugsnagUser.h */, + FBE8F1E2A57485398832FABA2C87BED8 /* BugsnagUser.m */, + D5043F42CB101BE1E6DF266ACFD6DDFF /* Private.h */, + FA3BC48DB57690DF8D87F0BB3932161D /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = "<group>"; + }; 16D06874B3CD39DC2702AD4EF051CEF9 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10485,249 +10584,230 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = "<group>"; }; - 16E72F50B32FEBF51A1AAD7F3C871B87 /* React-cxxreact */ = { + 18C49B13A8EEEA8FD0865EB7448001CB /* vendor */ = { isa = PBXGroup; children = ( - E86843324139D967A7400DE7C87FBD35 /* CxxModule.h */, - 8E0FB85F1F43F23D67F27A86FC4F4507 /* CxxNativeModule.cpp */, - 6F32A192E130D4885BD8AAAACE4CF2D1 /* CxxNativeModule.h */, - 7232E249FE89B18F30E4C70938C4D1EE /* Instance.cpp */, - FA6EAD5FB226DE03EAEA90D17A3793FD /* Instance.h */, - BA25394971C4CB64AA8DD418868BF293 /* JsArgumentHelpers.h */, - 193E6AC2D9D4EFA266583DC8E9166F99 /* JsArgumentHelpers-inl.h */, - D81CC450FB75CBB2B5ABAD072AE4E43B /* JSBigString.cpp */, - 5B3C34B03583AA3880C2B10C6A9AC96F /* JSBigString.h */, - EEC73990BEDD7E4402CF0D0F88A66BEF /* JSBundleType.cpp */, - 1941A5165CBDA9E4A172681259DCD605 /* JSBundleType.h */, - CB9DCB7EDF396F3D80A062F7E2B5AC31 /* JSDeltaBundleClient.cpp */, - F1A04BA784448DEC961E7C30C4D18845 /* JSDeltaBundleClient.h */, - CEAF8647E8C72ABA05FDA860A421E4D0 /* JSExecutor.cpp */, - 20944B96277506C92AD6C4D908692FA5 /* JSExecutor.h */, - 0F41F2E73620722F9FE126D608E1D6ED /* JSIndexedRAMBundle.cpp */, - 374D90D2D94D95FB6B3CD0907FC7E9DC /* JSIndexedRAMBundle.h */, - 0B3C67CBC936295F6A47DC85A4720A3B /* JSModulesUnbundle.h */, - 799F854F7D880C45D29123A3578A443C /* MessageQueueThread.h */, - DD94E9556EC100BE7CCF99B396C37DC5 /* MethodCall.cpp */, - A8BA79110A3BE9DF63F0E30BBB91DB16 /* MethodCall.h */, - 29CF8ED071C75882C35B55CDD7CC77E7 /* ModuleRegistry.cpp */, - 6394E86913C00F1D38779DA1EF4CE70A /* ModuleRegistry.h */, - F5CD2540085B1FF02237224030B0C026 /* NativeModule.h */, - 23ACE1E4D86A9BF4A43FB04E8C62EE20 /* NativeToJsBridge.cpp */, - E427F8C2B44D8CF78CEC01889E3BF9F1 /* NativeToJsBridge.h */, - 883CE30B7B37BAB794DE3D07B226F4A2 /* RAMBundleRegistry.cpp */, - 4D7C49B84BD526A4C0D086192C1B76FB /* RAMBundleRegistry.h */, - 3EF0ACF7318680C3D44E958FA684B972 /* ReactMarker.cpp */, - 0F538E8A4AEBF8C5386B7716F6F9998F /* ReactMarker.h */, - 0BDE6200BCC8CA9DA673AA00EABAB904 /* RecoverableError.h */, - 448FA111380C5F7D091857A14B026038 /* SharedProxyCxxModule.h */, - AE9A53CF78DEB8A99ADF8962D9F6FA4F /* SystraceSection.h */, - AA9742F6FF1E8ED297A7834189E170CC /* Pod */, - 714A05D6924FBC2F2E4C37BC588315F0 /* Support Files */, + D7AE5B1FF606197028A74A02A761B3EA /* bugsnag-cocoa */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = vendor; + path = cocoa/vendor; sourceTree = "<group>"; }; - 18679CE30877CEA2997C090F3DA9639D /* BaseText */ = { + 197A56B58475CBFFF08ECAD8DAA96D96 /* Pod */ = { isa = PBXGroup; children = ( - DE9796627BDD27EEB4F1131083745509 /* RCTBaseTextShadowView.h */, - 43483FBD75EE29E35FC81C740C127C8D /* RCTBaseTextViewManager.h */, + 94B74D53963393C4A8D7CF14C52FB7DC /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 19E947B31AF75232AB38BD22A6B87943 /* Pod */ = { + isa = PBXGroup; + children = ( + 0F9FE5C49D2E5C7EB4CF15D88966A005 /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 1AFB6AFCE41371CBE9B1057E5FA11DA5 /* Support Files */ = { + isa = PBXGroup; + children = ( + DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */, + 990D1CEEE097DFC53048ADB570956DD0 /* ReactNativeKeyboardTrackingView-dummy.m */, + 1A96DC001042A58CFA27387096C2A9D6 /* ReactNativeKeyboardTrackingView-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + sourceTree = "<group>"; + }; + 1B2BEFA4AD79884F68B0733DDDE09EFF /* ios */ = { + isa = PBXGroup; + children = ( + 7EFAFCF9D2A38BF4A31E5989EE8A6C1C /* RCTTurboModule.h */, + 775244808FA9C3FF8CB7F2A4E4A7EECB /* RCTTurboModule.mm */, + 9F8CEA997F00BBDBFCDC9BD09A8328D9 /* RCTTurboModuleManager.h */, + 6E212ED79BB2DBDB1AC098B2D414E584 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = "<group>"; + }; + 1B51F2FA84D17DCE9E370287B01EE0FF /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + DF92CE034A458C57CFC9FDD2166F2176 /* CoreModulesPlugins.mm */, + 1068F3228D5C1F21249353FD5E724FEB /* RCTAccessibilityManager.mm */, + 75CF2E8B87594CB234E3D95A5412993F /* RCTActionSheetManager.mm */, + CAB0C63FC8922ECF883FC7F217E727F5 /* RCTAlertManager.mm */, + 8227AB0A9A09777A728CC25B4E49D9A0 /* RCTAppearance.mm */, + B3878F1E993194C0070DF632755735F6 /* RCTAppState.mm */, + 6E64AFA5C6D9BA5AD3C6FE804F1376F2 /* RCTAsyncLocalStorage.mm */, + 676AC51213B44BDACA97E33DA530D6A8 /* RCTClipboard.mm */, + B6173EB95FDD9752DE5D5A3FE50BDD39 /* RCTDeviceInfo.mm */, + 00CBC60CA92F11200494D717671FEDDB /* RCTDevMenu.mm */, + DF8D77ED36497353F79CA30D64E32966 /* RCTDevSettings.mm */, + A90863DAF14AA25BBCFBE951F1520854 /* RCTExceptionsManager.mm */, + D6F1FB7F281468D9F70331029D55677B /* RCTFPSGraph.m */, + 1F2D8B1A106F59DD53D8F961BDA2346D /* RCTI18nManager.mm */, + 149CCEB54C1BE4CF3A0ABD79358751EF /* RCTKeyboardObserver.mm */, + E00F29323FDC2221DEC6688F99664369 /* RCTLogBox.mm */, + B0A371D5A21AC68639256F45BDCA24D4 /* RCTPerfMonitor.mm */, + 1DE315D70E5C21E0A0D947E0AF34567A /* RCTPlatform.mm */, + 2AF05263F11E9264AB29F3FF7BEF7AB2 /* RCTRedBox.mm */, + E499E992ADE815C14367F331C98405B2 /* RCTSourceCode.mm */, + 0ECCB6FAFF8614DB159F724F44861AAB /* RCTStatusBarManager.mm */, + 4ECC1133CD66CE037AC97303759C6DB0 /* RCTTiming.mm */, + BB7507710AD9CEE099C15445BF9E94A2 /* RCTTVNavigationEventEmitter.mm */, + 2CD41FE5D4488D18AEA8D0FE2255E01B /* RCTWebSocketExecutor.mm */, + 755B72D5DA9A44B53932D49C7E48A722 /* RCTWebSocketModule.mm */, + B5E11CB613A779916E7F21DEB93AE85E /* Pod */, + 3524D57F853B742453001279A377022C /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = "<group>"; + }; + 1BB693B9296587624B879FD0BFDB1F01 /* Support Files */ = { + isa = PBXGroup; + children = ( + E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */, + 4D8121F726CDAE6ADCD01AAC8172BAA9 /* BugsnagReactNative-dummy.m */, + 9B4B3036D4BA8F33E941D941CF48E3DB /* BugsnagReactNative-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + sourceTree = "<group>"; + }; + 1C7B27831281EA1E403BFB736DBD1F29 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + 4F47506F7D233C846DE592A73AA5D7A2 /* UMModuleRegistryAdapter.h */, + 0B83AF1D415F0617AB05BEE783FD1524 /* UMModuleRegistryAdapter.m */, + 83951F110FBE70C27DA463137C925BCF /* UMModuleRegistryHolderReactModule.h */, + 45B3F54749A87CE4A5D8040256402A95 /* UMModuleRegistryHolderReactModule.m */, + B60927F207660FF1F534FEC57BF761D7 /* UMViewManagerAdapterClassesRegistry.h */, + E86A1500A927E39874D8337AFE45667D /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = "<group>"; + }; + 1C7BEFEF7EE832B9363224727E1DE8FD /* Support Files */ = { + isa = PBXGroup; + children = ( + 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */, + 9BA16C8E1EE792F051C468252733D6A9 /* RCTTypeSafety-dummy.m */, + D21E91F70CF4592C5283820588A499C6 /* RCTTypeSafety-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = "<group>"; + }; + 1D3D928A5F0A2C90D16DBE9E7AE0CB99 /* Pod */ = { + isa = PBXGroup; + children = ( + 99C9CBF9618B653FEE2EAB24B9742D4F /* LICENSE */, + E950EA795D2359323C7DD283B2307452 /* react-native-safe-area-context.podspec */, + 7553BF735B0F59822716711C24372CFF /* README.md */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 1DDFA0F74E6D017333791440D900A927 /* links */ = { + isa = PBXGroup; + children = ( + 57BC2564DE7D58D34C118892BB94ED29 /* RNFirebaseLinks.h */, + 47E106347AA5264F3182C3270E9B7D23 /* RNFirebaseLinks.m */, + ); + name = links; + path = RNFirebase/links; + sourceTree = "<group>"; + }; + 1DEE9BE6EC8E5499D31EFA70F360C4AC /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + 4701A56E6E6454DF97BC15234A739DF5 /* EXLocalAuthentication.h */, + 330566AE5AF4C4FFF95E7C2D625511FB /* EXLocalAuthentication.m */, + 11EC61C611EE23A864D4F80591F331FF /* Pod */, + F3212ABD255CCDD7B82EDCF22D36496B /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = "<group>"; + }; + 1E405E1B544584101E824D3DBB8FCBCB /* Support Files */ = { + isa = PBXGroup; + children = ( + F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */, + 59138562FB292D9BF6D6DCF80210A029 /* React-RCTLinking-dummy.m */, + 319EB6FAC518BAF8FB8D069B119BBCC3 /* React-RCTLinking-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = "<group>"; + }; + 1EC78119A3581C98493B96AC876DE35A /* Support Files */ = { + isa = PBXGroup; + children = ( + 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + sourceTree = "<group>"; + }; + 1ECC0CA3DA2B16BC0774485AD15F0603 /* Pod */ = { + isa = PBXGroup; + children = ( + 543EE479196945500F4F316FF197BD5A /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 1EF8233FDB7A11836EE3382083EBDA01 /* RCTCustomInputController */ = { + isa = PBXGroup; + children = ( + 77FE8AA76FBC75C95712E64CBDF7DD05 /* RCTCustomInputController.h */, + 2631ADD27366017C1CF5E6C4B7E68F6F /* RCTCustomInputController.m */, + 7E93A2F0919CAF3E8CBFEF8A8844BCB8 /* RCTCustomKeyboardViewController.h */, + 64EAAA7D3E3B9EA2C22622919AB96085 /* RCTCustomKeyboardViewController.m */, + ); + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; + sourceTree = "<group>"; + }; + 20676D7B672826C1AA5B9A6C4309BC23 /* BaseText */ = { + isa = PBXGroup; + children = ( + B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */, + 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */, ); name = BaseText; path = Libraries/Text/BaseText; sourceTree = "<group>"; }; - 18ACD9BA2EDCB22E9DE782AA93D19EF2 /* RNVectorIcons */ = { + 20A93AD6805BACDE104F15F9F7D4FF14 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - AA63B2B338AC0F862E40D79C7F85CC77 /* RNVectorIconsManager.h */, - 0F3C02D59AC5F2F3B8275A9F2B77D462 /* RNVectorIconsManager.m */, - 35D3E30B72E5166612554BA8AAA7ABC5 /* Pod */, - 9D65EE773FA7C79A15F6799DF1364262 /* Resources */, - 0D784DC6B379F7EFDF003E273D89D76A /* Support Files */, + 59915589514583DB857FDF711C887880 /* RCTSettingsManager.h */, + 6D9CB1B65131C59EBB47BC1727E119BE /* RCTSettingsPlugins.h */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = RCTSettingsHeaders; sourceTree = "<group>"; }; - 1950E2A5AD8C2053DF5A65A2FF5227EE /* Drivers */ = { + 20AD3A3E10626049E9F941C52C53BC95 /* DevSupport */ = { isa = PBXGroup; children = ( - F79539D21D6441938E9FF2E4BAD4CF73 /* RCTDecayAnimation.m */, - 04D663D51FF3BC07BC8331ADD75706C5 /* RCTEventAnimation.m */, - DA8EFA83F779729D5D90185C414F4695 /* RCTFrameAnimation.m */, - F49413F09637EA47A7233B402ECD3E64 /* RCTSpringAnimation.m */, + 2F8915E6DDB9DB9DC5F4B4D32959B660 /* RCTDevLoadingView.h */, + DF8BCC9C723065E000C2A4D4A913777F /* RCTDevLoadingView.m */, + 76BD0F72902E48C2CFBCD65755A792B4 /* RCTInspectorDevServerHelper.h */, + 1451F1374D41FEC6691A399289ED3015 /* RCTInspectorDevServerHelper.mm */, + 57F565A0716A8A2504C090CBEAD20E1D /* RCTPackagerClient.h */, + 5DB50946D34C0843D5418E4DF571D536 /* RCTPackagerClient.m */, + 43B30801029C061FA6A7CB4004C37E50 /* RCTPackagerConnection.h */, + 07DC53839E3BF5F28191DD0BA3F31A48 /* RCTPackagerConnection.mm */, ); - name = Drivers; - path = Drivers; - sourceTree = "<group>"; - }; - 195D70D5EF936A1EFF7019DA720069D8 /* Pod */ = { - isa = PBXGroup; - children = ( - 661C8E055C8F70FAAA2304A21FEBBFBD /* UMFileSystemInterface.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 19809BC4977E525CB0AF5C92382612E4 /* React-jsi */ = { - isa = PBXGroup; - children = ( - 89A780541520D322F08FE7FD2C9EE1F0 /* JSCRuntime.cpp */, - B3FE4B0A71FFF0E6C533997C0590F4B4 /* JSCRuntime.h */, - C6C4AD4AD892A02AFABBAC7004ACB1D5 /* jsi */, - 2396E95EEAEB54E876EBB3682D7D2964 /* Pod */, - 6FDB9E7B710E2FCC5EF18AFFA1EFA736 /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = "<group>"; - }; - 19845FC48175939F48DC663AD077EA5E /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - D34547DD5B20CFB6345AE8E4378E5EA8 /* IOS7Polyfill.h */, - 2EFAFAC3EF4E67E8ED649AB357974741 /* RNFetchBlobConst.h */, - F89F92D9698B360DCDB85F764ADCF471 /* RNFetchBlobConst.m */, - 5FEFC3571A6FD5B34B0ACFE04575228A /* RNFetchBlobFS.h */, - A539E5278B1B28BA9435DC897F3492EA /* RNFetchBlobFS.m */, - 4E99A0DB12E82102F2DE919C00B00041 /* RNFetchBlobNetwork.h */, - CCB27E63FCF76C13097FBA46FA2AFC58 /* RNFetchBlobNetwork.m */, - 4B4D275C053B311AC8947C32C9F23697 /* RNFetchBlobProgress.h */, - FC8619F3D9A8BF6B90A22609360BC009 /* RNFetchBlobProgress.m */, - 578A5E424AA39BB8736B92C23E06C35A /* RNFetchBlobReqBuilder.h */, - 7D2434308FE9078AFFD7425B11C23CCF /* RNFetchBlobReqBuilder.m */, - 41D0293F53C01FE2EC7861CAC2794DAE /* RNFetchBlobRequest.h */, - F4292B3183BDB41D5DCF7A2AA393169D /* RNFetchBlobRequest.m */, - 9782E3122F1ED1FB20137F1EAC3F3C1E /* Pod */, - FDD38AE8F20277001F3463CDA73113EC /* RNFetchBlob */, - 9C560BCDAC6F754E85C508CFA143A25A /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = "<group>"; - }; - 1B956E7D14428DDF149BCD26D3DE6281 /* EXAV */ = { - isa = PBXGroup; - children = ( - 856998D7DE4FA54F46A5A82CDE190BAC /* EXAudioRecordingPermissionRequester.h */, - BCD5C89A00C882B5641B92D6C5C232A4 /* EXAudioRecordingPermissionRequester.m */, - AFC622BFC4F3BDE0B5F0FF8E48845FF3 /* EXAudioSessionManager.h */, - 8298BAC346CB5AC0D7AC4552EFF754A8 /* EXAudioSessionManager.m */, - E962C469B0B039BDA314D872E67D278F /* EXAV.h */, - 73470A8CA74DF138D1D5F0C11B70C4AF /* EXAV.m */, - 4DADCCB5ABE86FFBEB2A6AEE8FCA5959 /* EXAVObject.h */, - 6A3986572B3729A0FDF958E4A2C8282E /* EXAVPlayerData.h */, - CBDAFDFB8FC7CFA1158C4603378EB6A8 /* EXAVPlayerData.m */, - 10A67003348C48A7CC2BBCFE6419BC52 /* Pod */, - 99D62C85202B21DF9D714A68F5C2821B /* Support Files */, - 27B114A8333528429ECCF8106B04A8EC /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = "<group>"; - }; - 1C19399D4F5C23851B824CA13DBC32BB /* messaging */ = { - isa = PBXGroup; - children = ( - B64D2CFD82134D018D8D9BABA5A2A8EA /* RNFirebaseMessaging.h */, - 2C007EF19AC1F93CB99375FEB25E78C0 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = "<group>"; - }; - 1C4D8D0D17E41E848B0F6E6922C4E7F2 /* RNReanimated */ = { - isa = PBXGroup; - children = ( - 442F3E0569DAC8222F36443BF2FE3A97 /* REAModule.h */, - 92ABE419FEEB48FA487D1284AECC6013 /* REAModule.m */, - E814BADB002A0D7B581D032CD40134CF /* REANodesManager.h */, - D2402DEF5C89B3561B39DD69D485EAC1 /* REANodesManager.m */, - F00B015E33E5B745D0467D73D56E61BC /* REAUtils.h */, - 88BD923918C750D43AE54FF51C027420 /* Nodes */, - B22A617BF20D4FD09BCA7B38B0C01305 /* Pod */, - 532B39A7E154895FC271489799D768CB /* Support Files */, - 690B06CF8682EA675657E69204B16521 /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; - sourceTree = "<group>"; - }; - 1C7E00B22CFBC430B343CAF7F01DB93D /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - E842783249EE7636A023B7A27A74D79D /* DeviceUID.h */, - 971C84618EF8366D2D580C321CF40114 /* DeviceUID.m */, - C693E043A2DE20127B01328D80181DF5 /* RNDeviceInfo.h */, - FD44872970880E6BC2CA040B3B509AD0 /* RNDeviceInfo.m */, - 91403F3C180002CA954DA03DA38D9B32 /* Pod */, - D51B3C0D8DD3F030D09BC600CF78A8DC /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = "<group>"; - }; - 1D6E1591AE1D0259E17941218C87A328 /* Pod */ = { - isa = PBXGroup; - children = ( - 8B05EAB54048DBEE39998615D4615BF5 /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 1DC653E041BB03EFB74A336B517AB655 /* EXKeepAwake */ = { - isa = PBXGroup; - children = ( - EB6712795D546673CE9EC6DA7B19F925 /* EXKeepAwake.h */, - DC6F7AE35E288C0E936D7C0970AD6FF2 /* EXKeepAwake.m */, - 573674A0BBBE8B14510CD9344A673956 /* Pod */, - 5FB5AAD50E297DCF0650724F6CD02180 /* Support Files */, - ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; - sourceTree = "<group>"; - }; - 1E235FFD615940EFB0329F71C57CACC1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7E7D6AAD39457758057017FE3DD3DCB9 /* RNCAsyncStorage.xcconfig */, - B83F3872238CABE6CFEC5E1AD61195DD /* RNCAsyncStorage-dummy.m */, - 8CE010B473B965362B2252B08ACC8988 /* RNCAsyncStorage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; - sourceTree = "<group>"; - }; - 1E23EF7ECDECCCB785B5454968301F86 /* Pod */ = { - isa = PBXGroup; - children = ( - F6A56ED98449585B139EEB2E6BE08009 /* react-native-slider.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 1EF5B496E9E57B49924A5E799D358B1E /* Support Files */ = { - isa = PBXGroup; - children = ( - 206D58BA534E12AA0AE510AE364945E3 /* React-RCTVibration.xcconfig */, - D4E2491E6072C585024D9959A1732177 /* React-RCTVibration-dummy.m */, - 3858F2F8315421376F3B70D7C71AF7D9 /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = "<group>"; - }; - 209D6F327ECD56BB4879D8E74B4AB4DE /* Support Files */ = { - isa = PBXGroup; - children = ( - 05FCCDB5B8226B26274EEA2A8835FB1D /* ReactNativeART.xcconfig */, - 05D0F14DC3B4D4C2B13E841FB85EF27D /* ReactNativeART-dummy.m */, - 3E9F531D47A3C35188ABA3451FE35CD6 /* ReactNativeART-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + name = DevSupport; + path = React/DevSupport; sourceTree = "<group>"; }; 20B6E363F68A46E9B0C0A219B0CADAF0 /* Frameworks */ = { @@ -10739,16 +10819,6 @@ name = Frameworks; sourceTree = "<group>"; }; - 20DE007B1F21F039AE2C58FF5A983856 /* Pod */ = { - isa = PBXGroup; - children = ( - F0BC9C471576F5426A63932C63D6ECAE /* LICENSE */, - 49EF1C764B546A232C8925033E3F0C5C /* README.md */, - 911F0963EECD208433B97565D348374B /* RNLocalize.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; 2138BF45623BF6967E8205CC7B58011B /* demux */ = { isa = PBXGroup; children = ( @@ -10759,29 +10829,15 @@ name = demux; sourceTree = "<group>"; }; - 219B7B4394F8B94794E26A4FE45CA4AA /* Support Files */ = { + 22314EB82BE621D6A0560322443E78F4 /* Support Files */ = { isa = PBXGroup; children = ( - 01C015A56F8C5753715F3344D67046F2 /* RNAudio.xcconfig */, - D83206DC060F28F18F0E6AA7B1780E78 /* RNAudio-dummy.m */, - 1303C8DF7AA10D9753D28197873DFE18 /* RNAudio-prefix.pch */, + FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */, + 9F2B174BD2BDAEB745C526A9F0ABB786 /* React-jsi-dummy.m */, + 5B413BE8228FDBB4B0C6C7C9FB61A6A3 /* React-jsi-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; - sourceTree = "<group>"; - }; - 21E4AC9388DEEFC886F07536424ADAA0 /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - E55BFAD3423459CE004497E04F0DA7D8 /* RCTConvertHelpers.h */, - 01E111A92A8C204D121A7CE95801F180 /* RCTConvertHelpers.mm */, - 41D3CE8CAB00766CEBF927D74F2EC9EA /* RCTTypedModuleConstants.h */, - AE83F13041CB58575BDAA697C2391857 /* RCTTypedModuleConstants.mm */, - C195642847BA937722CC877950381E61 /* Pod */, - D0E62B241DB79FCE69D7AB6E3F4C09E4 /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = "<group>"; }; 22458E3533B6FDCA162FFA48B7F6F32F /* Support Files */ = { @@ -10797,6 +10853,17 @@ path = "../Target Support Files/YogaKit"; sourceTree = "<group>"; }; + 2265F1EC2DB7F5B03AD12E77CEB5040C /* Support Files */ = { + isa = PBXGroup; + children = ( + 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */, + AF5DA9FACDF827C7904FE02231E8A02B /* React-RCTNetwork-dummy.m */, + D5079C9E0AA2034E6A2CB45E93F262F1 /* React-RCTNetwork-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + sourceTree = "<group>"; + }; 22830D6A13F0887AA0839CAA32F3BC1D /* Support Files */ = { isa = PBXGroup; children = ( @@ -10806,159 +10873,162 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = "<group>"; }; - 228FA8207641E7A413283297D47277BE /* RCTImageHeaders */ = { + 22AAAF4D4F024DE387AA41C4A73F2132 /* Pod */ = { isa = PBXGroup; children = ( - E9A286C1EBE6539A92CA88C9A339C026 /* RCTAnimatedImage.h */, - 039260E4EB98C38E56BFE23345A91046 /* RCTGIFImageDecoder.h */, - 7846EA11F2BE8C2BABF022D2B01ABAFA /* RCTImageBlurUtils.h */, - 7030118430C80140E88194810A2CEA5B /* RCTImageCache.h */, - 889EB709C390ACBB7ECA585C09A3EFF8 /* RCTImageDataDecoder.h */, - 38D6450F6A8E0BEAC091B5E216F92647 /* RCTImageEditingManager.h */, - 1035F2DF56DC84A5588DB590E33A8B36 /* RCTImageLoader.h */, - D5244571FEFBA4E0EA7B65183356D074 /* RCTImageLoaderProtocol.h */, - 1523F18E0B2366D278772A51A931C03F /* RCTImageLoaderWithAttributionProtocol.h */, - 8D109AC973FD41DC55B73F847B8883D0 /* RCTImagePlugins.h */, - 81CBE87B49688A20B4C0539F68B7A6AD /* RCTImageShadowView.h */, - 05C7FF7F0A41C0A62CCD4081A769B7D1 /* RCTImageStoreManager.h */, - A56AFF80E1ED8C00875162E82D2EBBCC /* RCTImageURLLoader.h */, - EBF16F3A983A68C18D330F4FC8A9C3CB /* RCTImageURLLoaderWithAttribution.h */, - E23AF7F1E2AE04470812D886B887C73A /* RCTImageUtils.h */, - 16C1ABC56AA99C63DED52C9F73ED634A /* RCTImageView.h */, - 103741A2144090DF1A48E236551CEE6B /* RCTImageViewManager.h */, - 1F36B529E6062EAD987C661D1F6E7DF4 /* RCTLocalAssetImageLoader.h */, - CDB49E839110038FF4DC5076B280566C /* RCTResizeMode.h */, - FFFBB5AD55DFEB99A6804D89E7EB8678 /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = "<group>"; - }; - 2396E95EEAEB54E876EBB3682D7D2964 /* Pod */ = { - isa = PBXGroup; - children = ( - 90E0025F100C9DDD5BD27BA2E5CBB773 /* React-jsi.podspec */, + 65E4440EE31CB8F998754FC55591F20A /* LICENSE */, + 73F37B8C8F67C39C1519D66CD4296655 /* react-native-background-timer.podspec */, + 0FCD10A58261C38003864DF3394A45BE /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 25659465B60D22385654AAE7C908C296 /* ios */ = { + 22B3BA08AA94C30605C63FC5C709D235 /* Pod */ = { isa = PBXGroup; children = ( - A033285CF9E0FDB37D8B7BFED5384618 /* RCTTurboModule.h */, - 06F09B2B54ABF89A0E692B008AA9D6F9 /* RCTTurboModule.mm */, - 5F723712A73CEB0A2EAFBF083088B50C /* RCTTurboModuleManager.h */, - 5205F507564DE7F6518EB49735BEEB0E /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; - sourceTree = "<group>"; - }; - 260966E1CB0BCE6781D0FC374D797028 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 54964EA1E148B2B4CC508806C006DBBF /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = "<group>"; - }; - 263E7B17FA1E57E35A2DFC34116C37CB /* VirtualText */ = { - isa = PBXGroup; - children = ( - 6505D65D1332B88D851A39BF7B5F81A5 /* RCTVirtualTextShadowView.m */, - 2B38653346BCAAAF6D0FBD9B612E49BF /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = "<group>"; - }; - 26CE502A321C7C519F52CAC2029CE073 /* RNDateTimePicker */ = { - isa = PBXGroup; - children = ( - 3E5B12CF0741F96E982DEEE369ECD7AF /* RNDateTimePicker.h */, - 856CDFAFD71C787B5428DB135424E471 /* RNDateTimePicker.m */, - 7F27ED42340D5A5BC7673FE3E360FA70 /* RNDateTimePickerManager.h */, - F7380E222D78D6EA48A4D429BB4C6373 /* RNDateTimePickerManager.m */, - 425B8EEBC0EDE80C5E47F5144A6F5C72 /* Pod */, - 8BF4DB4ABB90C8D854D243F8B5CA1E50 /* Support Files */, - ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; - sourceTree = "<group>"; - }; - 27B114A8333528429ECCF8106B04A8EC /* Video */ = { - isa = PBXGroup; - children = ( - EF651BF797D77457B649715E63526E00 /* EXVideoManager.h */, - 02839DD93278BE161B024363703E82DB /* EXVideoManager.m */, - 65A57FCF27A46E1F4C2BE0BE2908E578 /* EXVideoPlayerViewController.h */, - 5A56E0999D905D918357F9A626E97294 /* EXVideoPlayerViewController.m */, - BCA505432C2032C9BA4BAD4F08387688 /* EXVideoPlayerViewControllerDelegate.h */, - F0FE35C0063768002405159CF55BB427 /* EXVideoView.h */, - 54BDD31F4BCD765222811E370F3F4CE8 /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = "<group>"; - }; - 283E467377E2B157DC49481C307A4AE0 /* Recording */ = { - isa = PBXGroup; - children = ( - 17E134AE584200180363135F28A52B21 /* BSG_KSCrash.h */, - D0E64A7E8E1DB737397DA64C74B468BF /* BSG_KSCrash.m */, - 10044E674177DA989F1497E8EFC30FC0 /* BSG_KSCrashAdvanced.h */, - 937B86997F1492A493D8D2E3B54F85CB /* BSG_KSCrashC.c */, - DF68F8C05ED0D441CA88D7C0FB9706E8 /* BSG_KSCrashC.h */, - EFBA49CCC766F713936BAB544C40337B /* BSG_KSCrashContext.h */, - 2D8BECE3AD16237B5C54424807FC5037 /* BSG_KSCrashDoctor.h */, - 79EB38BC28AE02613EA704A0CD264EE8 /* BSG_KSCrashDoctor.m */, - 2C4AD027FCF42D8DFD3D1DC59D05781C /* BSG_KSCrashIdentifier.h */, - FEE9B003C81BC9E7F57A1FC4BA2AE3E7 /* BSG_KSCrashIdentifier.m */, - A0563E8654E21295A870ABD2E382B469 /* BSG_KSCrashReport.c */, - A35240F890D8826F82EBCAE8F7031E73 /* BSG_KSCrashReport.h */, - EFF998B96BCB4359B5AA3F01412F8A10 /* BSG_KSCrashReportFields.h */, - FD88920F54E5D82BEB3D0960733A6D43 /* BSG_KSCrashReportStore.h */, - A94D9D6D0B5CFC35978D148F1055B476 /* BSG_KSCrashReportStore.m */, - FD9C5F48C11EF7F770DDBD7E7AB64805 /* BSG_KSCrashReportVersion.h */, - 94B5997DDFAB6A5FAD9C4F0995531D49 /* BSG_KSCrashState.h */, - 79FFEE5AF9B5AA2CC0E521E993BF0299 /* BSG_KSCrashState.m */, - 2EF16A2BFE903141A47F30D5594332D6 /* BSG_KSCrashType.c */, - 8702444E910F691432A5D807F6E85DB1 /* BSG_KSCrashType.h */, - 6F68779B9EFBFA5B435E339716B3EFC5 /* BSG_KSSystemCapabilities.h */, - B73FA07579954B5620E7D9938C14A8BE /* BSG_KSSystemInfo.h */, - 857D65BCA25BA3A7EAF9B24CCC8BFE94 /* BSG_KSSystemInfo.m */, - CC3FCF0452A7189A99D7CF20718C3FD3 /* BSG_KSSystemInfoC.h */, - D9C5414C051BBA68C6329A1452CCD75A /* Sentry */, - 61C303B40EDDB4988532AEAF22E51101 /* Tools */, - ); - name = Recording; - path = Recording; - sourceTree = "<group>"; - }; - 284BDA5B9E956079314D975B242F4D2F /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - E6B102EAAB4D0FBD79C2C8B6A1F75831 /* RCTSurfaceHostingProxyRootView.h */, - 4E39D773243E62889778C6F995D48E88 /* RCTSurfaceHostingProxyRootView.mm */, - F0B2839671826EAFED28781707F8DE9A /* RCTSurfaceHostingView.h */, - 53F28D711125B13F67868E8FBB13CAD2 /* RCTSurfaceHostingView.mm */, - 839A67A9ABC1ECD7C2ABFF8F45C0ED40 /* RCTSurfaceSizeMeasureMode.h */, - 8FFF89AE1633E9A24874A6CE6AE3A376 /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = "<group>"; - }; - 2C5FBD0031616A28ABD698198FD57D34 /* Pod */ = { - isa = PBXGroup; - children = ( - D5BEF6CF10E7FAA51645E5757D8061FA /* LICENSE */, - 7C4B6E29E26DFB6B6CEA52BCCFA977ED /* react-native-background-timer.podspec */, - 40F56A28871C357A8BDC5C3ED3B1020B /* README.md */, + C56C512382ED788D26B3A5277C050567 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = "<group>"; }; + 255A1F3846BB901BB4CF02DFD6D01923 /* Resources */ = { + isa = PBXGroup; + children = ( + 94684772FF13857F48CC5125F84A19C7 /* AntDesign.ttf */, + DC7EC9BBE139A8CAD5680DA48B1B9B0F /* Entypo.ttf */, + 543203FB8D4208545E517A49207FDB26 /* EvilIcons.ttf */, + DB67FF762D01F761C5B6571BCF2BD58F /* Feather.ttf */, + 5CC0F74BC3951272C9AE7D4668E950E9 /* FontAwesome.ttf */, + A3832A17FF69F44CF1382D0F01546B2D /* FontAwesome5_Brands.ttf */, + 40BA53CDF13B063CB38159B8F1FFF71A /* FontAwesome5_Regular.ttf */, + 1B215F5106A34C76BD7AA30B94C89F28 /* FontAwesome5_Solid.ttf */, + C51D3687AEB894232CDC9593833ECEE9 /* Fontisto.ttf */, + 5B9E1711916938B4550078E5CBE3AA79 /* Foundation.ttf */, + 209951A4C6E443A5A3BA0CE4DAB14DEF /* Ionicons.ttf */, + FA9DC7CE04AE3EFC8603996E0BB0F3EF /* MaterialCommunityIcons.ttf */, + F547C382874BFEFDAF914E0B2965FB61 /* MaterialIcons.ttf */, + 3679A9C3EAA7E2A632E8B6689309FC57 /* Octicons.ttf */, + D5272E752DF667DB7AD74D945976AD07 /* SimpleLineIcons.ttf */, + 678513A72FA0C2B0C590EF9F5FD5995E /* Zocial.ttf */, + ); + name = Resources; + sourceTree = "<group>"; + }; + 265660F6808E1240BEE0FCF1DA4810AE /* Support Files */ = { + isa = PBXGroup; + children = ( + C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + sourceTree = "<group>"; + }; + 26C9B498EF4A2B893A6E333055FC80F7 /* Pod */ = { + isa = PBXGroup; + children = ( + 844FE1C9E4BD929D0603E29C1E01DC55 /* UMFontInterface.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 26FF7DA43D891D3FE2D571844619D10F /* Support Files */ = { + isa = PBXGroup; + children = ( + 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = "<group>"; + }; + 27969F211D2B111C527161B1D1A8B553 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */, + 1326137DEEA71E097D28136A3A4EC4A3 /* RNFirebase-dummy.m */, + C81302D8251A05E0C350052F06CE73CD /* RNFirebase-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; + sourceTree = "<group>"; + }; + 285D0D72E18EC4C84478990CAEDCB68F /* core */ = { + isa = PBXGroup; + children = ( + 6CDC0EB331DB0D4FA5F4673557464E8B /* LongLivedObject.cpp */, + 322C21C553A1DAB04CC9C758267576DC /* LongLivedObject.h */, + 0E46A58A12FC794BA1AE3A482A5DC6DC /* TurboCxxModule.cpp */, + 2A8D197A0AD529686EE251B7CBA051CE /* TurboCxxModule.h */, + 88CC26E86C4581E34F084F45491BF81B /* TurboModule.cpp */, + 12DCA4210F595CEC6392C49D0448A1CB /* TurboModule.h */, + A4A57AAD4F3D69657E8D24CBC1659818 /* TurboModuleBinding.cpp */, + DC4E149D47C8711B5127CE4B75308EF1 /* TurboModuleBinding.h */, + C218912DC56D3A549EA9EFA6336D3CC7 /* TurboModuleUtils.cpp */, + D94A4FC53AED68F8848D4EA0F216B06F /* TurboModuleUtils.h */, + 80CFF7CAB8AAC775CABCE6B263904010 /* platform */, + ); + name = core; + sourceTree = "<group>"; + }; + 28ECFA63F581207D15118128A10AD38A /* react-native-background-timer */ = { + isa = PBXGroup; + children = ( + 78E119A66BD3B26DE1ED3C51B35208E3 /* RNBackgroundTimer.h */, + C39A5EB4E3CE8AA00EAAAE47434F871E /* RNBackgroundTimer.m */, + 22AAAF4D4F024DE387AA41C4A73F2132 /* Pod */, + B1276E2C97F91445784BC454EF91560D /* Support Files */, + ); + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; + sourceTree = "<group>"; + }; + 29D65B96344FE111D335E84270A96303 /* Nodes */ = { + isa = PBXGroup; + children = ( + CDCEE67BE04AD6AD8026326D187151A9 /* RCTAdditionAnimatedNode.h */, + 72D348AD963FD80AA19656A4C004FAC7 /* RCTAnimatedNode.h */, + 12569BA1E5FD08B4ED65AE7842806DD3 /* RCTDiffClampAnimatedNode.h */, + D53E39F99E7E0402FABF134698E1B16F /* RCTDivisionAnimatedNode.h */, + 71265F598C7E83D4369BFDDC2E80304E /* RCTInterpolationAnimatedNode.h */, + 1A70291ECEF7C38CC3D4003CC6E27B9B /* RCTModuloAnimatedNode.h */, + C0A7ED31841E9A3740388ABBCE3A723C /* RCTMultiplicationAnimatedNode.h */, + C93543FE01A6C97729A0C5783545D254 /* RCTPropsAnimatedNode.h */, + 0B0F7DAF876312D7B591AE13DEFED38F /* RCTStyleAnimatedNode.h */, + 74AC6DFBD0003601B52F8DE3AF61BA14 /* RCTSubtractionAnimatedNode.h */, + 35690D5F90F8D260BD6751FC9BBF609F /* RCTTrackingAnimatedNode.h */, + AB473145F59E8DC9380B2AB5CC8F00E8 /* RCTTransformAnimatedNode.h */, + E246AF0BBED7036FBE5BB7342F0E2387 /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = "<group>"; + }; + 2B30A260514DC94443003EB21801ECB7 /* RNFastImage */ = { + isa = PBXGroup; + children = ( + E664162CC3D20649879EE5C9EE42FF99 /* FFFastImageSource.h */, + 8FBD94102E34B2FB6F59A4A6E8F50EBE /* FFFastImageSource.m */, + 9A2E36F623BDC96728EFCD9D1A8DDBCE /* FFFastImageView.h */, + 760DD8DEC20023A36378BBBBF751F203 /* FFFastImageView.m */, + C2D5BD8C0270331BC9B6E938A4466600 /* FFFastImageViewManager.h */, + 247B221CDE93B0F8AF6F2E1DE91C2178 /* FFFastImageViewManager.m */, + 7139D5968A6AC023AF37F861DE93F83D /* RCTConvert+FFFastImage.h */, + 212466682BAE7E9458E3FDD6DEEDE465 /* RCTConvert+FFFastImage.m */, + 51F9154E76B78ABDFAD2BD6798488140 /* Pod */, + 48391A11354E2570728699C1331867D4 /* Support Files */, + ); + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; + sourceTree = "<group>"; + }; + 2B6EF2153EDD204BDF08FD43E79FB355 /* Support Files */ = { + isa = PBXGroup; + children = ( + 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = "<group>"; + }; 2C86BBD984A12AF54883CF9062839F81 /* Fabric */ = { isa = PBXGroup; children = ( @@ -10971,37 +11041,64 @@ path = Fabric; sourceTree = "<group>"; }; - 2DF91DD3F5C7F96D4E92DA81E311932D /* RawText */ = { + 2CBB7C149768AB08741FC1B0A588F95A /* Pod */ = { isa = PBXGroup; children = ( - 6294BE257860FFCCFBBCAB4C30B7A3EF /* RCTRawTextShadowView.h */, - 5BA2F82971CB6B4A0FB1D42C333FC510 /* RCTRawTextViewManager.h */, + 06588A0773015BE726D926827B8A288C /* EXHaptics.podspec */, ); - name = RawText; - path = Libraries/Text/RawText; + name = Pod; sourceTree = "<group>"; }; - 2E9E2B362C0EE03A8495C808F77E0859 /* Support Files */ = { + 2CC3E63A927121AA4374F37A3A629EBE /* UMCameraInterface */ = { isa = PBXGroup; children = ( - D46BEAF80F28B45FCA1B569AA07B1A28 /* react-native-document-picker.xcconfig */, - 80CEA4C9FB7CDC667CB53E2C1DC471CD /* react-native-document-picker-dummy.m */, - C072A7A62F97F6BFD1285D8A812A3275 /* react-native-document-picker-prefix.pch */, + ADDE125601B8457E39EAE7E6A7D98303 /* UMCameraInterface.h */, + 19E947B31AF75232AB38BD22A6B87943 /* Pod */, + 998B5490D353010997DC77BBCBD773F1 /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = "<group>"; + }; + 2D48D59DCC2B5AFF40B6BDF35013EDFB /* Support Files */ = { + isa = PBXGroup; + children = ( + 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */, + 19CB053CF23AFCD3BA264178A105A854 /* EXAV-dummy.m */, + 61A712C2DBA1BA55EA32DD1DE3CECA40 /* EXAV-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = "<group>"; }; - 2EDB0173793B2D06DE3515E9DE2DB4DB /* analytics */ = { + 2D4B7CB9373E72892986C0D392C3826E /* Support Files */ = { isa = PBXGroup; children = ( - 68F4E1BF2AEADA8C7C6F2FFFA5E56BBD /* RNFirebaseAnalytics.h */, - C92A4D9EF00891FC7DA6BA1F8703778C /* RNFirebaseAnalytics.m */, + C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = "<group>"; + }; + 2D72F126EFB0E398EAA00DFDD5FA3D53 /* analytics */ = { + isa = PBXGroup; + children = ( + CFF6B84DE629461467249913044B6E0C /* RNFirebaseAnalytics.h */, + 789BC1B4A708A2D8B704E3B951491BFC /* RNFirebaseAnalytics.m */, ); name = analytics; path = RNFirebase/analytics; sourceTree = "<group>"; }; + 2EEAC6FA5E7A833ADCA9C6F96B3E01B4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + sourceTree = "<group>"; + }; 2F28D9B482C1113BBD79E79F3C2B8D91 /* Resources */ = { isa = PBXGroup; children = ( @@ -11010,59 +11107,70 @@ name = Resources; sourceTree = "<group>"; }; - 2F35840BF11DBC0DE438520D594DCA2A /* Nodes */ = { + 2FA0C6D639432EE8DFAC57838149B797 /* admob */ = { isa = PBXGroup; children = ( - 644A48572AE4E2E8E7D7A3D898C23FBA /* RCTAdditionAnimatedNode.h */, - DC8CA61BBAC0EAB2F519BF5A90A5CEB7 /* RCTAnimatedNode.h */, - 0EBA549B24B6B26CE6809AD5C97D0D7C /* RCTDiffClampAnimatedNode.h */, - 47132D3CD2951DF9C74041BDF317D97B /* RCTDivisionAnimatedNode.h */, - FAC1E3AD3A3C7D5EF940D5A3C236CFF1 /* RCTInterpolationAnimatedNode.h */, - 4AF32D081EB6E524CB3E39D7F94422EE /* RCTModuloAnimatedNode.h */, - D6E8689A50EE60D9F440D25B713341A5 /* RCTMultiplicationAnimatedNode.h */, - F2185F0EE77134879331967B033BDBFC /* RCTPropsAnimatedNode.h */, - 677CE3ED066C849D0096475252BBFCE4 /* RCTStyleAnimatedNode.h */, - CAD83A46B1824A3A4D4ECF4B36E3777B /* RCTSubtractionAnimatedNode.h */, - E768CA53FC3FA5B928616085BEF59017 /* RCTTrackingAnimatedNode.h */, - 3E128E50F8F17712E6D31986A49F70B7 /* RCTTransformAnimatedNode.h */, - 084326DB5172F7B4C114122AC4CD8E0D /* RCTValueAnimatedNode.h */, + 123BCBAAC647F3A369933558170BD9F4 /* BannerComponent.h */, + 055EA80443EBCEC8F7C23CE5DC385C56 /* BannerComponent.m */, + 57FB57EB684658B26EF51C068CED7380 /* NativeExpressComponent.h */, + 0F137720240DA2F405C2B3E33C02EAB7 /* NativeExpressComponent.m */, + 99B4FA6C21FE7D85DD4A2A26A3536958 /* RNFirebaseAdMob.h */, + 18599074AEE17E3DE57927E34123B8E3 /* RNFirebaseAdMob.m */, + 582B4B4EF40968FFBF3C53E67990F8E8 /* RNFirebaseAdMobBannerManager.h */, + D5C0679C8FA015D5C911901384EE4D6A /* RNFirebaseAdMobBannerManager.m */, + 89B547B5B2FB6D8A1B67CEF47329FA12 /* RNFirebaseAdMobInterstitial.h */, + 4335EF4928C61574AB47E7CD8B7BFA1B /* RNFirebaseAdMobInterstitial.m */, + 6FFBC11ADF2C10BD3FF998B81FA7DDE3 /* RNFirebaseAdMobNativeExpressManager.h */, + 70061EAFA4A32A9FB6554029E9BBFBE1 /* RNFirebaseAdMobNativeExpressManager.m */, + 8B21BA4FAD083D3D105A46A5E31BD32F /* RNFirebaseAdMobRewardedVideo.h */, + 80888C4D60C85D341F05D74889DFFA4C /* RNFirebaseAdMobRewardedVideo.m */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = admob; + path = RNFirebase/admob; sourceTree = "<group>"; }; - 2F5D2C99F88871CD85E8CCDBC179FB9F /* EXWebBrowser */ = { + 309B82EB73FA8CFCD44734B27D387B19 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - 8554BE05B4CA68DFDF521065515DA78F /* EXWebBrowser.h */, - CFF7BEDE2D56C8BC667725D4ADAB7536 /* EXWebBrowser.m */, - AA78A5FF4D451087D15930D8E7BEAB29 /* Pod */, - 47AB56AA87487A95E266A252FDA01DF5 /* Support Files */, + C561B80406BEB168381F3AF9E2A3004C /* FBReactNativeSpec.h */, + EFE0653D22BE12EBA90C1FC022D00913 /* FBReactNativeSpec-generated.mm */, + 906A2B62F8F15AB2E4172B4607522D31 /* Pod */, + F8B6BB50879B0153948AC66049F7633B /* Support Files */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = "<group>"; }; - 2FB3A3E9F8CBC5FB8D62C956CDBBA48D /* UserNotification */ = { + 30DCF6BC88C4D589D97C794D008ECB13 /* Support Files */ = { isa = PBXGroup; children = ( - 64A7ACF5EA2DC554B6551D507DF09BA1 /* EXUserNotificationPermissionRequester.h */, - C196C6EE62B056C27D54B09A22E6580E /* EXUserNotificationPermissionRequester.m */, + 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */, + 94190577BAEEC37307893DA822D0BAD7 /* RNGestureHandler-dummy.m */, + F9B01DF099050119316618AFBCCBFD9D /* RNGestureHandler-prefix.pch */, ); - name = UserNotification; - path = UserNotification; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = "<group>"; }; - 307E96105CFB7A386F5A70861D119F6F /* React-RCTVibration */ = { + 31164C3A0492A78A33EBC23F1EDCD567 /* Support Files */ = { isa = PBXGroup; children = ( - FB5F65DB5FC23042D7F48B3043F93673 /* RCTVibration.mm */, - 4E5A6C4B35F1E9A3742289D9C5D441F7 /* RCTVibrationPlugins.mm */, - C5FCCB56E0847BF5FD84A3C6F18D374C /* Pod */, - 1EF5B496E9E57B49924A5E799D358B1E /* Support Files */, + 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */, + 2795DA0AB50B806E3127BDEB66A5A180 /* react-native-appearance-dummy.m */, + A36D18CC47B5E1224A000592EDBD934A /* react-native-appearance-prefix.pch */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; + sourceTree = "<group>"; + }; + 31BD69B02DD95AE19BDEF00CBF3B2110 /* converters */ = { + isa = PBXGroup; + children = ( + DE419D5973B7551B6077FD66A45A82D3 /* RCTConvert+UIBackgroundFetchResult.h */, + 46043EA22750F5C014FAC7118BBA397B /* RCTConvert+UIBackgroundFetchResult.m */, + ); + name = converters; + path = RNFirebase/converters; sourceTree = "<group>"; }; 320683C3DAEA8CE3EA807C84CD084441 /* webp */ = { @@ -11220,48 +11328,50 @@ name = webp; sourceTree = "<group>"; }; - 336344C07AD2C02F7B865C6710A9D886 /* RCTAnimationHeaders */ = { + 322B20C7021CF21E72CD06031AEC9202 /* Support Files */ = { isa = PBXGroup; children = ( - 7E0D891B9917DC61A336F36B31390435 /* RCTAnimationPlugins.h */, - 59003C4A59E895A5DBB5AAA617BA5E72 /* RCTAnimationUtils.h */, - 0BECDB993277765FE62AE6DE2877481E /* RCTNativeAnimatedModule.h */, - 6BE8B85B9E36A416752CDE135629619D /* RCTNativeAnimatedNodesManager.h */, - F909A28A056A1B860A46C4CADE4C260A /* Drivers */, - 2F35840BF11DBC0DE438520D594DCA2A /* Nodes */, + 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */, + 890605CD3E314EC9B9611BEDAD9196E0 /* KeyCommands-dummy.m */, + D2147363D7F325A2A17D40441CF6D364 /* KeyCommands-prefix.pch */, ); - name = RCTAnimationHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = "<group>"; }; - 33C7C1B5F8140FAFC5A21174C233C8CA /* CoreModulesHeaders */ = { + 329773985A834B34AF3BD1565758D7C3 /* Support Files */ = { isa = PBXGroup; children = ( - E0104A87B917A68C88E2F9186F513030 /* CoreModulesPlugins.h */, - 302D978B412665C395F56FFE0369AF17 /* RCTAccessibilityManager.h */, - 25E18881F29CD4C1AEA02BD47E5CA7C0 /* RCTActionSheetManager.h */, - 01DC3D71773A522EB2F7C6F3723730BA /* RCTAlertManager.h */, - 8F3990E460FB5F9E245B9B637945C22C /* RCTAppearance.h */, - 85E316CC578DE8070D330283949D4B57 /* RCTAppState.h */, - A30AD162DCF22E87A691AFF5A79B779F /* RCTAsyncLocalStorage.h */, - 0C52A92AE75468F558576E0077F7E11D /* RCTClipboard.h */, - BEFD36CA4DA8A5B84DD7172A8E9535F5 /* RCTDeviceInfo.h */, - 3CCFC9A0010B28776BA6E3D13C6B6E89 /* RCTDevMenu.h */, - D8E7C42D7A2310AE8516C10E6533BC74 /* RCTDevSettings.h */, - 18BBCA01DF008B8037000EFF316ACA32 /* RCTExceptionsManager.h */, - BEFC65B0B65CB89C996D4527B32D9DC4 /* RCTFPSGraph.h */, - B818ED8284E70A4FF6D5BABE203876F5 /* RCTI18nManager.h */, - 8CF410BCAF0BD50857D82096E840E364 /* RCTKeyboardObserver.h */, - 5FCB72C959DB390BB52DBF99270459F7 /* RCTLogBox.h */, - 8FC18CABC1AA9DE5692F38CD043A8C45 /* RCTPlatform.h */, - 4961AAED3E78164AA1A4FF8BFB1179B6 /* RCTRedBox.h */, - C0E7412E474F5417A987D514653AB0FE /* RCTSourceCode.h */, - CD4BC5627ADCB3CCE4A573EE0F1D5FB2 /* RCTStatusBarManager.h */, - 8850B2D087A164CD76E6AB7EB464E572 /* RCTTiming.h */, - 4F50F78B603073D4CCD13DD46ABA8B2E /* RCTTVNavigationEventEmitter.h */, - D6F6D022E77CE7050760A949C1C15641 /* RCTWebSocketExecutor.h */, - E2C00BF93B82F33D85C86DAD8DBD168D /* RCTWebSocketModule.h */, + 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */, + 2DED67D16CA9A33AD31C49901B1634BE /* React-RCTBlob-dummy.m */, + 1A54C0ABD6B40C4EB6FC64D55B96F6F9 /* React-RCTBlob-prefix.pch */, ); - name = CoreModulesHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + sourceTree = "<group>"; + }; + 32BFCAA2A7B1F59DD11547D97BC1BDF6 /* Services */ = { + isa = PBXGroup; + children = ( + 9D9953979307451128D4E556D376430A /* UMReactFontManager.h */, + C838B404B5EE29521B38A7BF640B0404 /* UMReactFontManager.m */, + F775CA009736DE4DD87CF5B45C553E53 /* UMReactLogHandler.h */, + 1DCB116A084B6610053249AAB840B959 /* UMReactLogHandler.m */, + 286EDA02ED5D09F9992ABE65ABD78CA8 /* UMReactNativeAdapter.h */, + 94AB3EA544ADE14FA2198F7AC7905656 /* UMReactNativeAdapter.m */, + BDFCA872F8F308FFFFC0DDA2B70D7B88 /* UMReactNativeEventEmitter.h */, + 3A6C91F2959D078E7D6060F10431C3E5 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = "<group>"; + }; + 32FE41D4F8F3D32878FF954773B9BDA3 /* Pod */ = { + isa = PBXGroup; + children = ( + 08E8ABF2AA68CCA32828468841E0E2C9 /* React-RCTAnimation.podspec */, + ); + name = Pod; sourceTree = "<group>"; }; 3411262A2623AC821BE9098E8CE801B2 /* YogaKit */ = { @@ -11279,6 +11389,17 @@ path = YogaKit; sourceTree = "<group>"; }; + 341A499AADE3A8BFFD90E5EC3690C621 /* Support Files */ = { + isa = PBXGroup; + children = ( + CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */, + 8722295C25B3943AF10E50B691C16D55 /* RNBootSplash-dummy.m */, + 8561E97E1C040160AEEA2F3B8518D2EB /* RNBootSplash-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; + sourceTree = "<group>"; + }; 34717BD8C6D513A5E33BDB8B1352D7DB /* Core */ = { isa = PBXGroup; children = ( @@ -11438,6 +11559,17 @@ path = FirebaseCoreDiagnostics; sourceTree = "<group>"; }; + 3524D57F853B742453001279A377022C /* Support Files */ = { + isa = PBXGroup; + children = ( + 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */, + A6D0908A5C598184049B728C746E1834 /* React-CoreModules-dummy.m */, + 234D7174B898D7155E4CB08F88C5F96F /* React-CoreModules-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = "<group>"; + }; 356FE283A47818A52C111E7897FDEE23 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11449,14 +11581,28 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = "<group>"; }; - 35D3E30B72E5166612554BA8AAA7ABC5 /* Pod */ = { + 3600A6665F640C5CAE3E2DF5119F9F90 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 21376D6CBC9B9D2086785C44E747384D /* LICENSE */, - 4CBBF971C05CEC8082948405150737D0 /* README.md */, - 73E5DC544B99BF8722B3F8E29A7BA559 /* RNVectorIcons.podspec */, + 2B118C388E08FB135AF5C4AF3FBFB753 /* EXKeepAwake.h */, + 4369D81D63471C3982BABEBFC22901CD /* EXKeepAwake.m */, + 7E8C44961FBF3FEDE139B7EBED39395A /* Pod */, + 6971FF86BE33A4F936AC7A2A53EB6692 /* Support Files */, ); - name = Pod; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; + sourceTree = "<group>"; + }; + 361BCACE7E3A9F20E9778EF32CA85F5A /* RNRootView */ = { + isa = PBXGroup; + children = ( + 06EA2F015CC2FF6A8803D9BD622FC9A4 /* RootView.h */, + 78BB8675C806A5A0065A184F76F86922 /* RootView.m */, + D44353245C20E32C6A83E090B12CC8BE /* Pod */, + 9F78B3429D4F86ED2AF0E4190BBE1379 /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; sourceTree = "<group>"; }; 36D532A99F3C31D1FB9C68651F10C4E1 /* JitsiMeetSDK */ = { @@ -11469,16 +11615,26 @@ path = JitsiMeetSDK; sourceTree = "<group>"; }; - 3701D18C34DFEBF9076EFBE6C9A50C44 /* Text */ = { + 36E3519A1410052ACA0736A427B724D9 /* Support Files */ = { isa = PBXGroup; children = ( - 3F0E57C43BD5B58923EAF3133A8DF42D /* NSTextStorage+FontScaling.m */, - 00EDCAA7B97036AEB4F17F2431CD31C5 /* RCTTextShadowView.m */, - 5A695A3AA87E9E2133BEA229916153FD /* RCTTextView.m */, - F136F4A0BF2386B15DAFCC1D67A2AAB0 /* RCTTextViewManager.m */, + B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */, + AE1F33BCFDCCC075AA536A7B3EA7B04F /* EXConstants-dummy.m */, + 798D6C8908BE1EF520B2123C0303E59E /* EXConstants-prefix.pch */, ); - name = Text; - path = Text; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = "<group>"; + }; + 36E83F542B1A8A57CF96293D1A670CC3 /* UMConstantsInterface */ = { + isa = PBXGroup; + children = ( + AB67BCAB258D7E051278D3BD076EB93D /* UMConstantsInterface.h */, + 22B3BA08AA94C30605C63FC5C709D235 /* Pod */, + 2B6EF2153EDD204BDF08FD43E79FB355 /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = "<group>"; }; 37084289FDC898852CA0D7BFBE23FE3F /* CoreOnly */ = { @@ -11489,16 +11645,35 @@ name = CoreOnly; sourceTree = "<group>"; }; - 3853F515DE21B0A7DD581B7E35EF21A0 /* RCTCustomInputController */ = { + 378AA1E05E8AEA45E7D3057D0F0A92BB /* Pod */ = { isa = PBXGroup; children = ( - CCB13EE6221F7F04DB19CDC1B6BF557C /* RCTCustomInputController.h */, - 5B7856B64CF439D8990CFE0BD38F21BA /* RCTCustomInputController.m */, - 603AB881836871206A2C963F81B7E6D8 /* RCTCustomKeyboardViewController.h */, - A9062C999CB15334EE8AA7068C54EBA2 /* RCTCustomKeyboardViewController.m */, + 2F74A495375CC373ED1DE23E8F032EB5 /* LICENSE */, + 2F00430F4588DE0811AFF23C2FC72E54 /* README.md */, + 242E3459A63C4A83BE36384D867E7011 /* RNDeviceInfo.podspec */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = Pod; + sourceTree = "<group>"; + }; + 37A94581832CEEB5F2786A63636F4FE1 /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + 4A997A07823FE6EF7EDD39E9C0C2A47D /* Orientation.h */, + A621B444001C82637FAD3190B2A8A5F1 /* Orientation.m */, + 773CD5572DD70CAEBFB454A9AF729AE2 /* Pod */, + 8BB80A3AFC541A6587C0EB1DEC3EA261 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = "<group>"; + }; + 382ACA6805D7C3F9D9D3CA567E473EFF /* DevSupport */ = { + isa = PBXGroup; + children = ( + 20AD3A3E10626049E9F941C52C53BC95 /* DevSupport */, + 0EA584F9E36175DA047E8C69DE8C4DBB /* Inspector */, + ); + name = DevSupport; sourceTree = "<group>"; }; 3873074B38FFFAAAF5520ED05B62FDBE /* SDWebImageWebPCoder */ = { @@ -11515,72 +11690,23 @@ path = SDWebImageWebPCoder; sourceTree = "<group>"; }; - 38864A54D45394C97083A636DB737E7C /* callinvoker */ = { + 398373FEDD58B0002DF4A8922B961C5A /* perf */ = { isa = PBXGroup; children = ( - FB12A2E1F939241D1FA0AB0F1938E54D /* BridgeJSCallInvoker.cpp */, - 9F8CD460A73D71C2D3A8E0E8F814D554 /* BridgeJSCallInvoker.h */, - C3C6B50306C26E0721495E2819F67AB1 /* CallInvoker.h */, - 81170979608C08D4D1521530F5DFBD1E /* MessageQueueThreadCallInvoker.cpp */, - 51186CB66910B367DA5B0F86E043AE6C /* MessageQueueThreadCallInvoker.h */, + 1D90EADE13FE1E34BD47BE0C21C5EB80 /* RNFirebasePerformance.h */, + 7E0474ADF523E01E0CB4B9930DD9D438 /* RNFirebasePerformance.m */, ); - name = callinvoker; + name = perf; + path = RNFirebase/perf; sourceTree = "<group>"; }; - 390FF389E0EA03B2D2D4311ECB6A47E6 /* UMModuleRegistry */ = { + 3AFDD1353BD4156B528830379A890346 /* Support Files */ = { isa = PBXGroup; children = ( - 7098AE63B044F73A96988D1642E4D853 /* UMModuleRegistry.h */, - 81D2C92F5996698B3543761A1E4CB038 /* UMModuleRegistry.m */, - 7284DD10BA2F5B0711D6D13E2242EB83 /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = "<group>"; - }; - 393CB78689F70166F7FCA41F7CCE4A03 /* Pod */ = { - isa = PBXGroup; - children = ( - D5A27B95C931C16CF6D5D759DECA2513 /* LICENSE */, - EA16DFCDD57B57EB6C4913B6B0AEEB9F /* README.md */, - 5D3F9DFF7953D8FA3D73FDD58A4D6579 /* RNCAsyncStorage.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 39E892C04282AE8D300EF2874ADB0239 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - 3634D87B73924CC5131F6B0E98980D02 /* RCTSafeAreaShadowView.h */, - 6DC8CA7F5DB43986C39104FF54E12677 /* RCTSafeAreaShadowView.m */, - 109238363CEF0E9728FDA7003F4457F7 /* RCTSafeAreaView.h */, - A718F215712FCDE08A545C92FAB53377 /* RCTSafeAreaView.m */, - E528A69FFD4D83FDD408E9434733DC4C /* RCTSafeAreaViewLocalData.h */, - EE6B3318C986BA9AB441D98F74651712 /* RCTSafeAreaViewLocalData.m */, - 8C1F0961C47575C9DFF7AFCA9636E991 /* RCTSafeAreaViewManager.h */, - DE0AB872B0C932BC93633FC4FF3731FC /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = "<group>"; - }; - 39EB53E39FF09165D8CAC56228335E7B /* Support Files */ = { - isa = PBXGroup; - children = ( - 62E62EC5384FBED8735A65903855A9CA /* UMCameraInterface.xcconfig */, + 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = "<group>"; - }; - 39F9551863818E3A324AEFD0C4013D27 /* CxxUtils */ = { - isa = PBXGroup; - children = ( - 1946593FF1D9E84793A440A468B2A8DD /* RCTFollyConvert.h */, - 409936061B878BB235E455401E15076C /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = "<group>"; }; 3AFDFF57B51D66CCFAED7F7D11153660 /* Support Files */ = { @@ -11592,72 +11718,33 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = "<group>"; }; - 3BD10707BD28727A58B333DD32ACC328 /* RNFirebase */ = { + 3B11B0D697F1834D1E564F74DF54916A /* Pod */ = { isa = PBXGroup; children = ( - 6937D064C749EA2BD80D9E075CB49CC1 /* RNFirebase.h */, - 1368C23F0865C4AF480A3E7B1C7A33C6 /* RNFirebase.m */, - 804D05DBB9E391D3384C1C689263A6C0 /* RNFirebaseEvents.h */, - D4D094651F5AF7165D718C66D5A859F1 /* RNFirebaseUtil.h */, - 1AFDCF36AF73A36A5A52BEFCDFCB827B /* RNFirebaseUtil.m */, - B82FFB60A82862DAAAD92C50BF436B57 /* admob */, - 2EDB0173793B2D06DE3515E9DE2DB4DB /* analytics */, - 4E7CBFA0010E8848A52B81D3E1892727 /* auth */, - DAC2D4C6ECD633C181253BDFC8CE8BDA /* config */, - 530539A0E4D7DA75E0ED92A4542F3C4F /* converters */, - 63712194D1AFE588DBC96F12EF634D28 /* database */, - 4440756914E186C893CA9F3332B7B74C /* fabric */, - EFC82BA03D980F7E7AD54F622C543446 /* firestore */, - 3FF146425BEB4FF0BB6D6E21F6CCC3AF /* functions */, - B3A287AE33969D28E568F7227EB65920 /* instanceid */, - 4D456F5695365448B91F8A3A947D76D7 /* links */, - 1C19399D4F5C23851B824CA13DBC32BB /* messaging */, - AAA9FB6BCF4CA1A6654123A787787553 /* notifications */, - CFD3D3C7EE89B68343C589DED7C91F49 /* perf */, - 75E3CAB9D30844A302FF80488C44B468 /* Pod */, - 68672A5A4FD3B177E0F2B3525AB7C85D /* storage */, - 11DBE89497117E83B12DE15D5DB84FEE /* Support Files */, + 74E466F3D35DA85D8EFF63F4BA71602A /* React-RCTNetwork.podspec */, ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; + name = Pod; sourceTree = "<group>"; }; - 3BD9DF6BF9FF50FC004CDC1DDCD65DAB /* Filters */ = { + 3B85E8A0293ED4C0ADE3D65D0635F5A6 /* Pod */ = { isa = PBXGroup; children = ( - 9085EEB2F8F0B25479E013BF16B992A9 /* BSG_KSCrashReportFilter.h */, - DC38D47D2183CE72DB38D9B69FFD5ED0 /* BSG_KSCrashReportFilterCompletion.h */, + D1730B766977805C9CC5855CFB6EF666 /* LICENSE */, + 8C3100AF91002DD0641DECA9EE6B6AA2 /* README.md */, + F6D854D60016F1B78279D87669AF804D /* RNLocalize.podspec */, ); - name = Filters; - path = Filters; + name = Pod; sourceTree = "<group>"; }; - 3BF22C87E1111AE3F8A504CA2D23FD96 /* Text */ = { + 3B889B9D29E83886500CAAE90738CE5B /* Support Files */ = { isa = PBXGroup; children = ( - 68C024CB1EEE85D32F026EB14C85AAAA /* NSTextStorage+FontScaling.h */, - C2BF47BE08DBF3F322C726C702003058 /* RCTTextShadowView.h */, - F42F29B8D47A52039805B2097D6EC39D /* RCTTextView.h */, - B631E5FB8A084E0D4D78C8C64AB5B9B0 /* RCTTextViewManager.h */, + 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */, + 77AE3AE043D8C08417145BCCF53E4AF7 /* ReactNativeART-dummy.m */, + 6E82A255197AB2A178DF55469A085C92 /* ReactNativeART-prefix.pch */, ); - name = Text; - path = Libraries/Text/Text; - sourceTree = "<group>"; - }; - 3C5B376FD7E2EC1E76B9739F339172EA /* ReactNativeKeyboardTrackingView */ = { - isa = PBXGroup; - children = ( - F0BEA946E0C90DBBEEBF2F1973FCE675 /* KeyboardTrackingViewManager.h */, - B9D4D9FFBF24EE1515E141AAD65BE1DA /* KeyboardTrackingViewManager.m */, - EDA2A6EC73EE326023BEECFD3CA14B23 /* ObservingInputAccessoryView.h */, - 4D204EB057FCCCC304504A18638884AF /* ObservingInputAccessoryView.m */, - 56320EF8EF4F3C598F10A45A405D2110 /* UIResponder+FirstResponder.h */, - AF0E780D6DE9CF99F8307B297E6DC820 /* UIResponder+FirstResponder.m */, - D0DF1A7625BDABE388B1787D2A13A3DB /* Pod */, - 7E07E95E2365AC18600747F758209B50 /* Support Files */, - ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = "<group>"; }; 3C67BF9F74CA97E4EF6EFBED4E4A4D02 /* Support Files */ = { @@ -11669,67 +11756,70 @@ path = "../Target Support Files/Firebase"; sourceTree = "<group>"; }; - 3D17D88957A6BE3869E0401761F6E121 /* core */ = { + 3C912B52CABE53D2FD22A1005697134D /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - A0851E6B93E2FB7E1A736E6634DDC0B6 /* LongLivedObject.cpp */, - 40EC405B3CC16154B3954F379C47921A /* LongLivedObject.h */, - AE5F2F939A7D13C891AA61A45FFB7B56 /* TurboCxxModule.cpp */, - 9651FFDA71232B9C625FA26E0E4BF509 /* TurboCxxModule.h */, - BF9D966F20ACEBE1C1C47C88988E193E /* TurboModule.cpp */, - F90C85CE7B27439EF3F5B5BF6081766A /* TurboModule.h */, - EF58CA4F534402600CCF706A99CCCBA2 /* TurboModuleBinding.cpp */, - E0EFC858D0ED3A74CB8DE034EEDD6482 /* TurboModuleBinding.h */, - 6336FB675C2D1B8F98D5EB73A15BA5E3 /* TurboModuleUtils.cpp */, - 697A1FE1BC8E72A3D866D5A6C7558CB3 /* TurboModuleUtils.h */, - AEF0015EF93EA50562D5B68D8F072E4E /* platform */, + 1608E844F3A2E64140ADD9FD31C15458 /* UMFilePermissionModuleInterface.h */, + 37E2873581DB11877516F8501B3EABDC /* UMFileSystemInterface.h */, + D7D63AAB97F184EEC62D34A2807FA7A9 /* Pod */, + 265660F6808E1240BEE0FCF1DA4810AE /* Support Files */, ); - name = core; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = "<group>"; }; - 3DF0276D9B3CE43773AAF390978A987E /* TextInput */ = { + 3DAFC0DFB604B76B028C5C20BAA6AD6D /* Support Files */ = { isa = PBXGroup; children = ( - 5CB6A6C8D18E3110A5CD591E1E7E382F /* RCTBackedTextInputDelegateAdapter.m */, - A55D36F697A657E87352BDF4ABB357B6 /* RCTBaseTextInputShadowView.m */, - DFAB47D08AF9D57D6BA0BFD239AD5ED8 /* RCTBaseTextInputView.m */, - 5A37ECECFF215A4E4752D225E775EE54 /* RCTBaseTextInputViewManager.m */, - 74946811C6AA468E11C075F2B94CC07E /* RCTInputAccessoryShadowView.m */, - D8371DA97D7FEEE4C56A59F6B3BFC57C /* RCTInputAccessoryView.m */, - 4B1CA8C2D400559E299CF2BA94A19268 /* RCTInputAccessoryViewContent.m */, - 82F0CFF18CE4552B3CF163C7268A9870 /* RCTInputAccessoryViewManager.m */, - 0404F95004D73EFEBB6CDFEF3BF0585B /* RCTTextSelection.m */, - D9D1ACBD469E534821D13D21C9B8584D /* Multiline */, - A7CE892716524D2BE2A785D3FA8D84DE /* Singleline */, + E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.xcconfig */, + DFBFB9EE3E0BC111F644FFD270312695 /* RNCMaskedView-dummy.m */, + D7D01B2F130EF49706E4DDC323B47010 /* RNCMaskedView-prefix.pch */, ); - name = TextInput; - path = TextInput; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = "<group>"; }; - 3E2A33B78714E12195DE6FCFEAA2220C /* react-native-webview */ = { + 3E947B14F34A43B7B8AA16F72842375C /* SafeAreaView */ = { isa = PBXGroup; children = ( - 3FBA2F8AB4723FFB9D43907C4A5D4475 /* RNCWebView.h */, - D89090E3BE5C097954BB3B5A4C0B75F7 /* RNCWebView.m */, - 409330992F3D3BF12E89545D9C524637 /* RNCWebViewManager.h */, - 19A0371EDA218B45309ECCF1B5BC2AB4 /* RNCWebViewManager.m */, - 52EA19B187157B29F6D3FBFFF458D18F /* RNCWKProcessPoolManager.h */, - 0E11C3FE3B6FEA42E2EB418AA942F4FF /* RNCWKProcessPoolManager.m */, - 0549384A53E96785D82FEB3B6AD9A676 /* Pod */, - 6596299810968B1BB7143946AA355578 /* Support Files */, + FB778FAD940294AABA45B65ABA0C8374 /* RCTSafeAreaShadowView.h */, + 4242A7899DB4A39CA35B05A1C266409E /* RCTSafeAreaShadowView.m */, + 14CC47269B6761A5EA09A8775959799D /* RCTSafeAreaView.h */, + 8F83BAA8354FE1415F44E732F1032CE1 /* RCTSafeAreaView.m */, + 319B47D9A35D9D659C3A3ACCFACDFAAF /* RCTSafeAreaViewLocalData.h */, + 0A0BD1EDF40A187E8200F57B14DACE0D /* RCTSafeAreaViewLocalData.m */, + 8C910CC24C086E197750941C95262852 /* RCTSafeAreaViewManager.h */, + 83433962F347CF9964944E8ECF30B5FC /* RCTSafeAreaViewManager.m */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = SafeAreaView; + path = SafeAreaView; sourceTree = "<group>"; }; - 3ECABAB77D7C0561FA4CD2339EDBC9A4 /* crashlytics */ = { + 3EC2277730C8EAF00187100039934BC3 /* Support Files */ = { isa = PBXGroup; children = ( - AD855D255D89FB3524D71E5CEED339DC /* RNFirebaseCrashlytics.h */, - 43569936956F579DDE780457A99DF58F /* RNFirebaseCrashlytics.m */, + 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */, + CA90EA4E58E7529F8578C7076B74E136 /* ReactNativeKeyboardInput-dummy.m */, + 366B857DB460F6EA175748F3CB9E520B /* ReactNativeKeyboardInput-prefix.pch */, ); - name = crashlytics; - path = crashlytics; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; + sourceTree = "<group>"; + }; + 3F0CE042EFD03DE40C11A3FE11B306CE /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + BCC846BEA11D8CD633342B9E54C48FAF /* Color+Interpolation.h */, + B99C92243C54BCFBD07F15E26C67CFBE /* Color+Interpolation.m */, + 8275006D7171489B1B0923F4BB8DBE4F /* LNAnimator.h */, + A815042718BB3946437B56DA39AB42D0 /* LNAnimator.m */, + 3F3EABA8585CA3821A70440DE9644798 /* LNInterpolable.h */, + C50B1B626E2C3ACAB2EB1703D353DD47 /* LNInterpolable.m */, + FF346B1F539C0033DC89A3628BB4EB56 /* LNInterpolation.h */, + EDA6323AE8935DC7449DD61F1AFA19DC /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = "<group>"; }; 3F43E0BB61BB01667ED22F7EB537A8B0 /* nanopb */ = { @@ -11750,70 +11840,16 @@ path = nanopb; sourceTree = "<group>"; }; - 3FF146425BEB4FF0BB6D6E21F6CCC3AF /* functions */ = { + 415E79C7762D42558D18A3E0893F75D5 /* Pod */ = { isa = PBXGroup; children = ( - E27223DBE11DB2DCA038BFA3CAFEF7E3 /* RNFirebaseFunctions.h */, - 03E769E1378A9A173E93E981E490E214 /* RNFirebaseFunctions.m */, - ); - name = functions; - path = RNFirebase/functions; - sourceTree = "<group>"; - }; - 40579F82711186A8C1104FD52D15F653 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5DD06B5D07354B1AE2ECE57824782241 /* React-RCTLinking.xcconfig */, - B12493A03802D21108150EA1D338747A /* React-RCTLinking-dummy.m */, - D99FDD1CABFFAEEF09F3A7A643098F20 /* React-RCTLinking-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; - sourceTree = "<group>"; - }; - 40F5E59076FE7BEB3EB6C65E4796F9C9 /* Support Files */ = { - isa = PBXGroup; - children = ( - A3F2F5ACEF86F1A3B8D0D03F13932E96 /* UMCore.xcconfig */, - C0BF4E7D7ABA5FB0277499ABD699F4C0 /* UMCore-dummy.m */, - DE231B2B7E7BE62A3F3D3F23D3C6ED63 /* UMCore-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = "<group>"; - }; - 4112D2C79EFA6593712FF6815D1A852F /* Pod */ = { - isa = PBXGroup; - children = ( - C389B46192F2637A564C7270B8ABAC6A /* LICENSE */, - 9DD484A6B77C62B164B3F6F44F9F60AF /* ReactNativeKeyboardInput.podspec */, - 24B0299006628F4A75C33025C3F82674 /* README.md */, + 56C9B7B55742024335719A8E9ABAD44B /* LICENSE */, + 4F19EBA29103DC2448E841002CC11C7A /* react-native-appearance.podspec */, + 2A66A0DC8DD246AC86E7EF106774B144 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 41592E62DE86CDAE027510190D643C6A /* React-Core */ = { - isa = PBXGroup; - children = ( - 33C7C1B5F8140FAFC5A21174C233C8CA /* CoreModulesHeaders */, - C4B014B347A0E9806B4C7F5DDDA1FAFF /* Default */, - 074D684C58D90AE5547C0C53BF36EDC4 /* DevSupport */, - 5A2D3A251F17F75394CCAAFDF012F701 /* Pod */, - 336344C07AD2C02F7B865C6710A9D886 /* RCTAnimationHeaders */, - 54CC7B08578416C6564257CABFCD0F04 /* RCTBlobHeaders */, - 228FA8207641E7A413283297D47277BE /* RCTImageHeaders */, - 67D1AEC28347D6FDCA4A09EF6039629A /* RCTLinkingHeaders */, - 68D3455DD49A370ACB9F0CED9E6DE9DA /* RCTNetworkHeaders */, - 51615246DF49F5DFE3658ABFB9546411 /* RCTSettingsHeaders */, - 687F0E01F7625A2B30EE1649B7545BFC /* RCTTextHeaders */, - 0F9606406F10F88215B5F405E9065C8C /* RCTVibrationHeaders */, - B694296159DD104601DE3BA55D85DD71 /* RCTWebSocket */, - F04FC0652D5A838670B9D7179AC5ED25 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = "<group>"; - }; 41E935E6045A8A94FB95698D98F6C02F /* FlipperKitHighlightOverlay */ = { isa = PBXGroup; children = ( @@ -11844,64 +11880,92 @@ path = "Flipper-Glog"; sourceTree = "<group>"; }; - 425B8EEBC0EDE80C5E47F5144A6F5C72 /* Pod */ = { + 429DBE0204A1CCCC852AFD06ED814E70 /* Yoga */ = { isa = PBXGroup; children = ( - 3629342F9E169EDA183AEB7ED9AC2EA6 /* LICENSE.md */, - 68BAAD1869DA2A408565E9D274C609F1 /* README.md */, - A49BB0AE574642D5B3478A12B2C9A7E2 /* RNDateTimePicker.podspec */, + 17C7CB6B1D4A3E3E2C7EF4A816EC877A /* BitUtils.h */, + E4BF95C9C73202A4F49C1C4F3F0AFD9C /* CompactValue.h */, + 3C0C031D54483C4716ECA6D731C239F4 /* log.cpp */, + 9E0E9F3CEF59482A043F2E3150CAEA0E /* log.h */, + E1CB6BECF058E3A4985899EE7B0B23A2 /* Utils.cpp */, + 7E3B49CBFF762A1C703210855E543C2E /* Utils.h */, + F56F453B57D2D90F9DF91753E5A9C8AD /* YGConfig.cpp */, + 12FE2ACF3C60F48E6F74E827FC5BDB82 /* YGConfig.h */, + 60C5527B609F93E18346725FD1B1F454 /* YGEnums.cpp */, + 50601530BA179B2CA3FA469BF548DC57 /* YGEnums.h */, + CDA31622F4E079135E89048AD4D3BFD3 /* YGFloatOptional.h */, + 0FD8226FCC7309B2337EB58188BAFC55 /* YGLayout.cpp */, + 58BD6E5AED675450ABB68C160C6386CD /* YGLayout.h */, + 09A4A381355DC64EAB844B04A5BA6970 /* YGMacros.h */, + 50A93D4815E9A8F99BA52DDF7F226000 /* YGNode.cpp */, + 2F1D4A55EA9BEA7C6F854E7A48AA4BE6 /* YGNode.h */, + A5A7654B4C703570917FC019CD6FB717 /* YGNodePrint.cpp */, + 50E233B1E5177E8DA53E63374F960DDF /* YGNodePrint.h */, + BC90A42F976DFA2E0DA3EBCBBB308286 /* YGStyle.cpp */, + 0E67B37021122702D85563E203C2FA96 /* YGStyle.h */, + B9B0ED604DEFCA10B70AAE7638FD72F9 /* YGValue.cpp */, + A638D0FA7AB3205099F7E8D5BCCD88E9 /* YGValue.h */, + 33B7C5D1D926FC345037DFC006FCC356 /* Yoga.cpp */, + 3305EBFCDE2F3D9BE8746FA55736C793 /* Yoga.h */, + DD38F2F2FA7D1CA194A4316CC114CE7C /* Yoga-internal.h */, + 659E9F351E7A9531188C24D200881546 /* event */, + 044FE8B248F2EDFDFA4B4D4B5A0530F7 /* internal */, + B5F9093B727DD693B4CC0DFC7E060F79 /* Pod */, + 9C096D918B3C41A584D8DEB2F10A17F6 /* Support Files */, ); - name = Pod; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = "<group>"; }; - 428000AE59276945EC7A4938FF10E036 /* EXLocalAuthentication */ = { + 433BC581F38245A7EF55F962BAAAF798 /* Support Files */ = { isa = PBXGroup; children = ( - F8E54E5325C0D655C94D6ABAEE7C9C18 /* EXLocalAuthentication.h */, - CDFDA2AABF60471FA0DE4B952CECB3F4 /* EXLocalAuthentication.m */, - 91E91179A0390A0599A81F524E278F39 /* Pod */, - 82CB6C77B3FDD31BF42B8E612AB305F8 /* Support Files */, - ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; - sourceTree = "<group>"; - }; - 42D84432A3E835A7E4F3D6F02893DD80 /* Pod */ = { - isa = PBXGroup; - children = ( - C0B61481727BBDD6EEA089C17FB9D98A /* LICENSE */, - D9A080E61BF4AB0978EFD2A0A95A91B1 /* README.md */, - 8F0C699E6FF3F5C7202D5C2E49166587 /* RNAudio.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 42EAFF457EEECF5EF88D2D6CC1E83CE2 /* Pod */ = { - isa = PBXGroup; - children = ( - F16D9AD0D79EABBCA9EB22B4AAE05AAC /* FBLazyVector.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 4440756914E186C893CA9F3332B7B74C /* fabric */ = { - isa = PBXGroup; - children = ( - 3ECABAB77D7C0561FA4CD2339EDBC9A4 /* crashlytics */, - ); - name = fabric; - path = RNFirebase/fabric; - sourceTree = "<group>"; - }; - 449C6E7AF88A839C7B088D301009F2EA /* Support Files */ = { - isa = PBXGroup; - children = ( - 92C040129F3C2040537816902D54BA42 /* FBReactNativeSpec.xcconfig */, - 23979EA6379079ED391BF8D1BDAFDEA5 /* FBReactNativeSpec-dummy.m */, - 5AFDA65CBBC8F291193E176B64B63A3C /* FBReactNativeSpec-prefix.pch */, + 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */, + 70953D120538AAD374CEED481B327482 /* react-native-document-picker-dummy.m */, + 4FA994CE366C65719695EB6F013ABD30 /* react-native-document-picker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = "<group>"; + }; + 44DE1329A49A4CF3811C1FE5179954FF /* Pod */ = { + isa = PBXGroup; + children = ( + AC9444E09C628EA7CDDE4ABC5831FBAF /* EXWebBrowser.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 45AEE774D6EC8CF0DD6B4359873D050A /* Support Files */ = { + isa = PBXGroup; + children = ( + 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */, + F2A3944BFF7C3DD1AA2993E0A8F21D48 /* RNVectorIcons-dummy.m */, + 017D7E96C0E85B39A122FDA67530E6C0 /* RNVectorIcons-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + sourceTree = "<group>"; + }; + 46FA891290231E98AD4C1324A1D9AB7C /* Nodes */ = { + isa = PBXGroup; + children = ( + 0555DEA8CCC5B069C0C2EE89E97498DA /* RCTAdditionAnimatedNode.m */, + F0EA7EFFD6F92FB7ECA84ED25FFA4DDA /* RCTAnimatedNode.m */, + F93518BC798B6148F9C4B8FC8C045423 /* RCTDiffClampAnimatedNode.m */, + C9C390E75F283ABC888301FFBE52BAC4 /* RCTDivisionAnimatedNode.m */, + 3BCE74587D3EB3186469314D0C81FEDB /* RCTInterpolationAnimatedNode.m */, + 3C88B7C68A22A41BF671FF5473A7AC4C /* RCTModuloAnimatedNode.m */, + 2ACF4DAE836F3A6D95CFD47CA16B8438 /* RCTMultiplicationAnimatedNode.m */, + 6C4F9E3BF3C9734CFD410F10F8CFBFE9 /* RCTPropsAnimatedNode.m */, + 0626132BA2BF2C2F53356A32CBDABBAA /* RCTStyleAnimatedNode.m */, + 45F7D27CBCB40E8F77D9ABC84E89A8B7 /* RCTSubtractionAnimatedNode.m */, + 530DADB2FB61BD3E084E3AC0FA61255A /* RCTTrackingAnimatedNode.m */, + CE1F0F6B0DAC9A7AF9B7AA5F60C3FCCA /* RCTTransformAnimatedNode.m */, + DB8EEFC2865862922C0F3D62D40909BE /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; sourceTree = "<group>"; }; 478205160CCC32B7FF015256061E3D99 /* Support Files */ = { @@ -11915,196 +11979,121 @@ path = "../Target Support Files/Flipper-RSocket"; sourceTree = "<group>"; }; - 47AB56AA87487A95E266A252FDA01DF5 /* Support Files */ = { + 48153B400849E5B644FCCB7A294624BC /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - 9537591DD16EF4A302440EB846913BB4 /* EXWebBrowser.xcconfig */, - 1D2D91B904F16FA2D28E506572568EE7 /* EXWebBrowser-dummy.m */, - A68B0255D67666C49A01856913A738CA /* EXWebBrowser-prefix.pch */, + 2A7191EDD6EC5DAD69F0407AA2C1E31B /* RCTBlobManager.h */, + FA94BFB94A42E252349264828408B209 /* RCTFileReaderModule.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + name = RCTBlobHeaders; sourceTree = "<group>"; }; - 47ABBBF67EAC68F9275DD564336921FD /* UMBarCodeScannerInterface */ = { + 48281E44BD792FA0BC72449B22A97733 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - D338192FF407A7108E82F733883A8A59 /* UMBarCodeScannerInterface.h */, - 1484965F47DFCFA03874C233A00E5AAF /* UMBarCodeScannerProviderInterface.h */, - 70A29119E257BCDB8064785169B1273D /* Pod */, - EA542FA0DB47A2AD029522800C823A1D /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = "<group>"; - }; - 4899F41473643197973253C559FFC19D /* Pod */ = { - isa = PBXGroup; - children = ( - 09273A96B3ED43EC052D9B9A63186A4D /* BugsnagReactNative.podspec */, - B00825C918D08CBEA52644914E1F831F /* LICENSE.txt */, - 0E73A2B4648EFE290A7E7EBCC97C91F2 /* README.md */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 4BE6CB41CC7594E1EE8BFE841F535044 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9E2D0B7E4657A9F742F3CE97337865EE /* react-native-notifications.xcconfig */, - 3D8D63713F558A5393BFBC8A60477607 /* react-native-notifications-dummy.m */, - E485EEB555F5E34BF26302A7780D5FCC /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; - sourceTree = "<group>"; - }; - 4D456F5695365448B91F8A3A947D76D7 /* links */ = { - isa = PBXGroup; - children = ( - F26B9C20AE8ED3D6ADB7CB19E3BE16A4 /* RNFirebaseLinks.h */, - A349AC60BFB82575AD48E2570B67616A /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = "<group>"; - }; - 4DB5FA06FC83858EDB2DED51728DAA33 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 5147B173FBF4AE07E220CCCDA9C0D551 /* UMNativeModulesProxy.h */, - D035D0010E8DE2D35059CEE7EDBEBE4C /* UMNativeModulesProxy.m */, + 38EE6352FEB572021F497970361E22E2 /* UMNativeModulesProxy.h */, + DF8CCF2AA86951C0C89788443FC66288 /* UMNativeModulesProxy.m */, ); name = UMNativeModulesProxy; path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = "<group>"; }; - 4DD3475CBE7B751603F8D259B1B13D7C /* react-native-notifications */ = { + 48391A11354E2570728699C1331867D4 /* Support Files */ = { isa = PBXGroup; children = ( - A076E128ACA2FF44ED8BE10CE4C8F2D9 /* RCTConvert+RNNotifications.h */, - D53718BC29C85D0BE395CD5F24D48709 /* RCTConvert+RNNotifications.m */, - 104CF4B92F232BBB09CCF7D38A500E48 /* RNBridgeModule.h */, - F9DCE6B5CE179FB015B4EA195D7E9476 /* RNBridgeModule.m */, - B65F642894D6E1F45C6EF8909641D1A4 /* RNCommandsHandler.h */, - BA70C156B019DCBDB000341D0DC8E967 /* RNCommandsHandler.m */, - 0AB130C9164156FE7274E191816FBF3B /* RNEventEmitter.h */, - 268669962E4E6898FE9E5F2C0D61A886 /* RNEventEmitter.m */, - 27597EF3FEFC3AC072E27C9F5F3756D1 /* RNNotificationCenter.h */, - FBA19F882708659F8EECE56735E85533 /* RNNotificationCenter.m */, - C78D65F0765AE4F6CB773F2AF7C07C5A /* RNNotificationCenterListener.h */, - 02C5D16E99004CE5FCA141D0C0C3082F /* RNNotificationCenterListener.m */, - 7AE133DAB6AB24FE3E3623D5C81ECEC4 /* RNNotificationCenterMulticast.h */, - D77C8FDBD8C98A9B0CD979D89DE2145B /* RNNotificationCenterMulticast.m */, - CDA30AB7E6366236B2B4F6E429273B49 /* RNNotificationEventHandler.h */, - BD539FB8E9853340BBBC966D4714DBFE /* RNNotificationEventHandler.m */, - F5754F6BBD599887FE4A61511A404E00 /* RNNotificationParser.h */, - FFCF1286995BA59CE4B88776CFA9CF5A /* RNNotificationParser.m */, - 99A984D92D32C73C8D034974A4EA5DCF /* RNNotifications.h */, - DF2C138D2CA934EE90C3FE86A1282AB3 /* RNNotifications.m */, - 5E0D41D3C1308F1D00FB3F51F751B6DF /* RNNotificationsStore.h */, - 0B5890231D7452E53DE643BABF2A1703 /* RNNotificationsStore.m */, - AEA9389FB996FEF7B5314F042E0E1CF5 /* RNNotificationUtils.h */, - A3F412A544C3D5566023402CD9659172 /* RNNotificationUtils.m */, - 2DFF2067FCB29BDC2048C01A70055C83 /* RNPushKit.h */, - 0194255A68262603732E2E4F4F9BDAA3 /* RNPushKit.m */, - 094E326AC4141C1616866FA844A2ABB9 /* RNPushKitEventHandler.h */, - F5AAC557AD3C7CADEF6306178A3FF636 /* RNPushKitEventHandler.m */, - 2A5F851DD103B3122A832F14307F000D /* RNPushKitEventListener.h */, - 2546AFE3D6A648E1D8534105F0BA411C /* RNPushKitEventListener.m */, - D7D2123DF0CAC9D268FC246A52E7F17D /* Pod */, - 4BE6CB41CC7594E1EE8BFE841F535044 /* Support Files */, + 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */, + 777DB95C529E023178F362938B1B2C7E /* RNFastImage-dummy.m */, + 9AAB2A68C220F565273DB515053421EA /* RNFastImage-prefix.pch */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = "<group>"; }; - 4E7CBFA0010E8848A52B81D3E1892727 /* auth */ = { + 48551461CB2993EAE44AA46329D81251 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - CE11CF764C991280625C47C38B5C8F31 /* RNFirebaseAuth.h */, - 93CBF7A83273715C89C82A3417CE1547 /* RNFirebaseAuth.m */, + B7EDE79C53D1A0BFB62120926DA11087 /* RNGestureHandler.h */, + 892ACACF678844715CB306AFD8C18753 /* RNGestureHandler.m */, + DE8F625CA9B70EFC0ACF66753B2B8C75 /* RNGestureHandlerButton.h */, + A595BE706668D105B4C902B56126AC98 /* RNGestureHandlerButton.m */, + 4FA86B460D2D7CF23574D4E10D10EF7A /* RNGestureHandlerDirection.h */, + C01FD55251E04D79D54389D9E2505CB1 /* RNGestureHandlerEvents.h */, + 913EC418AF05573D3B6922EDCAAA5BCF /* RNGestureHandlerEvents.m */, + E2D64ECC5835599A6514F50D193FEC7A /* RNGestureHandlerManager.h */, + D00155A74656D652638CCCA43B402754 /* RNGestureHandlerManager.m */, + 4A5B84D8D191ADDAEECEB3851DFBC0F6 /* RNGestureHandlerModule.h */, + 1847A9120986DF8A84BD996E25133F73 /* RNGestureHandlerModule.m */, + C163185A8C47364FE801EA2D186E4314 /* RNGestureHandlerRegistry.h */, + 05F0473BC278863B6BBF9D7DCC8A3051 /* RNGestureHandlerRegistry.m */, + 73E7D4E693B09406B129387AF3530146 /* RNGestureHandlerState.h */, + BD6E489D62F906EF168083EA18447111 /* RNRootViewGestureRecognizer.h */, + 87EE4D05DA2D8345EE7790161750FF38 /* RNRootViewGestureRecognizer.m */, + A1604653D63D02B350460457540D8A9D /* Handlers */, + A851C3BE2903E1B060152E7E347B1778 /* Pod */, + 30DCF6BC88C4D589D97C794D008ECB13 /* Support Files */, ); - name = auth; - path = RNFirebase/auth; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = "<group>"; }; - 4FA0FC2594CED1476C399C8251FC4937 /* Protocols */ = { + 49BD3AF8011731CAB5B74BC47B217734 /* functions */ = { isa = PBXGroup; children = ( - 03EBAD293CCBC3FD87634A527B11129C /* UMAppLifecycleListener.h */, - D21F9B54F5152321C81F1E4B947973E3 /* UMAppLifecycleService.h */, - 66E8FCE1223E014EC5357983B6CDC36E /* UMEventEmitter.h */, - DA1DAD175A268826B15CB5D378F14B34 /* UMEventEmitterService.h */, - 147C723753E754518402BEB9ED7DC51E /* UMInternalModule.h */, - 4228BD660D1D0B8E7989983B66587B3B /* UMJavaScriptContextProvider.h */, - 0276A5984EF410A04E45C39777BA08FC /* UMKernelService.h */, - 312AAE5A6C6467B1BD4D1576263C73E2 /* UMLogHandler.h */, - 3CBD01CFCEA5982CCF544C58730ECC84 /* UMModuleRegistryConsumer.h */, - 7A09F5693FCBF0E75179043D265B44BF /* UMUIManager.h */, - 3EA609FA0CBBEBA1A9DA413C5AE8E2BB /* UMUtilitiesInterface.h */, + B810357A23274F0F984C0685A76D3696 /* RNFirebaseFunctions.h */, + ED7807348F460F24A6796E2FCAFF067C /* RNFirebaseFunctions.m */, ); - name = Protocols; - path = UMCore/Protocols; + name = functions; + path = RNFirebase/functions; sourceTree = "<group>"; }; - 5016435B8BC8619800A241CCA132C8B9 /* Pod */ = { + 4A2F677C508DBC4CFA621CCC2D1ECB60 /* Support Files */ = { isa = PBXGroup; children = ( - B0BB66009B2D59F0F11BFD2528394010 /* React-CoreModules.podspec */, + A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */, + 7FE3B1419A93B1EB88EA99EE971138C2 /* RNDeviceInfo-dummy.m */, + 29FBA07AD4FFC50AD572B8481FEE71B1 /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = "<group>"; + }; + 4BA1240FB7FF8EF81340069ADB8CE4F5 /* Pod */ = { + isa = PBXGroup; + children = ( + CF3B9420B237F152E6FF53C5062E1F44 /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 501BFF20F3881E1622FD3269BBA11E9D /* Pod */ = { + 4BFE82B23744D61178F2FF6252751820 /* BaseText */ = { isa = PBXGroup; children = ( - 94EE1969818C1B6429281C14D7987619 /* LICENSE */, - E9FE2E29E1A3BD0974B26831661999B4 /* README.md */, - 5BE8D2E5C05970C1FFCB00F4AC73D134 /* RNBootSplash.podspec */, + 2FAF2CA43B8035437F93508EE9003AD7 /* RCTBaseTextShadowView.m */, + 0414BF0BBB66ECC4D8141C234CF79791 /* RCTBaseTextViewManager.m */, + ); + name = BaseText; + path = BaseText; + sourceTree = "<group>"; + }; + 4F943FBBC22267DDDE7521855445AF90 /* Pod */ = { + isa = PBXGroup; + children = ( + 52D02674CEFEA02DF36005B198EFE9FC /* LICENSE */, + F47C6A80B111FB05337FAEADB7A4358B /* ReactNativeKeyboardInput.podspec */, + E4BE33020F71E8470F7194767E33E0C7 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 50AFE2E7C1F993C6879EBC82A369606E /* EXConstants */ = { + 5177C8A0700A73D29C911ECC46DAF0EE /* Support Files */ = { isa = PBXGroup; children = ( - 1C494FE127DE6F7613B8BA6E29CC9087 /* EXConstants.h */, - 3E598A4522837C5C56EB185F33A212F9 /* EXConstants.m */, - 95A45E2D27E725A95BCE60430D3B2716 /* EXConstantsService.h */, - D2CC1817740E6DFC947F082AC2AFACA4 /* EXConstantsService.m */, - D7CA0589E7453E3E9DEE67DEB5B1C948 /* Pod */, - C46FDE9C10B11BBC72ABA45307F9F715 /* Support Files */, + CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */, + 145A7D59176345B6F215E0E11D6B17F8 /* RNDateTimePicker-dummy.m */, + 6416EDE9EE7CA2789EEBA998ED56CFDB /* RNDateTimePicker-prefix.pch */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; - sourceTree = "<group>"; - }; - 51276341D60EA1420550F577DAE55AFC /* RemoteNotification */ = { - isa = PBXGroup; - children = ( - 033AEAC06554EDAB089E06D94AD09569 /* EXRemoteNotificationPermissionRequester.h */, - 3DDF1CE1F1DF8F2EBBEAEEB8B361FF4C /* EXRemoteNotificationPermissionRequester.m */, - ); - name = RemoteNotification; - path = RemoteNotification; - sourceTree = "<group>"; - }; - 513E9FEAC48188F49540064D7281CACC /* Pod */ = { - isa = PBXGroup; - children = ( - 594720EC17C24E9C376C9161CABA61BC /* UMSensorsInterface.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 51615246DF49F5DFE3658ABFB9546411 /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - 3781CB5AEC53F10919903CE56174F596 /* RCTSettingsManager.h */, - E8C673959A553496A1DBDCBF78296E49 /* RCTSettingsPlugins.h */, - ); - name = RCTSettingsHeaders; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = "<group>"; }; 519321310C6145F0BC711C3B3BC24F11 /* Pods-RocketChatRN */ = { @@ -12124,75 +12113,41 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = "<group>"; }; - 52433805CAB92A5992B6CE75C66ABC80 /* Support Files */ = { + 51F9154E76B78ABDFAD2BD6798488140 /* Pod */ = { isa = PBXGroup; children = ( - 7E749C38DDC6B784160FB8707D902A54 /* EXHaptics.xcconfig */, - 369FD78FF5156599FB854E626E31CB94 /* EXHaptics-dummy.m */, - 99EDF765B7C71AD493123B7CAE730E76 /* EXHaptics-prefix.pch */, + 311043C1601FF102B6E628231C20528A /* LICENSE */, + EE76B874A21F14B25CFF737B7F22D7FD /* README.md */, + D77B16B96F40A6536D7E047E5CD22C68 /* RNFastImage.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = Pod; sourceTree = "<group>"; }; - 530539A0E4D7DA75E0ED92A4542F3C4F /* converters */ = { + 5525A85551AE85D1ED3034A1D9FDBC79 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - B65C0FA6FE5F4F65EA69175719D35C80 /* RCTConvert+UIBackgroundFetchResult.h */, - B979A4CB03603E0FA6E963005C51FB3B /* RCTConvert+UIBackgroundFetchResult.m */, + A98F0C5C2BBC051FE79A61AB612C24E1 /* RNVectorIconsManager.h */, + CD4E032F91D695EB8DD21783BFA10A01 /* RNVectorIconsManager.m */, + 0F2ED98A21CD0F49899861F120EF3E43 /* Pod */, + 255A1F3846BB901BB4CF02DFD6D01923 /* Resources */, + 45AEE774D6EC8CF0DD6B4359873D050A /* Support Files */, ); - name = converters; - path = RNFirebase/converters; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = "<group>"; }; - 5329ACAFFA02761D505B6FE0C1BEECC9 /* Core */ = { + 55F79EAC12A427EB3D127E2395EC91DE /* SurfaceHostingView */ = { isa = PBXGroup; children = ( + A1CE6E3724E76CA87B21FCF16692A6CC /* RCTSurfaceHostingProxyRootView.h */, + D9915994EECACD7D790907711164FF55 /* RCTSurfaceHostingProxyRootView.mm */, + 10444C68A034B8B32F03D93EBBF935DF /* RCTSurfaceHostingView.h */, + EC1F50667604BD0C2E526395F6B6D9C5 /* RCTSurfaceHostingView.mm */, + 0BD6B475F506A117D93185B7968288B5 /* RCTSurfaceSizeMeasureMode.h */, + FADDCB66AE8BC9E7C8DFB025BAD562C6 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = Core; - sourceTree = "<group>"; - }; - 532B39A7E154895FC271489799D768CB /* Support Files */ = { - isa = PBXGroup; - children = ( - BF0D10503D6F9B00F6DFF4C039262C95 /* RNReanimated.xcconfig */, - 3A8E2E8D839F67FE9206D7EB9D49D047 /* RNReanimated-dummy.m */, - 8FF483E4673337FB6FF8BEFE6D913EF9 /* RNReanimated-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; - sourceTree = "<group>"; - }; - 5489B7104EE42C8A74EB48577156EAF8 /* KeyCommands */ = { - isa = PBXGroup; - children = ( - 9EBD406BEE74B29CAAD099B5F5623B78 /* RCTKeyCommandConstants.h */, - ED50360998A713927A9D76A7C9AD1258 /* RCTKeyCommandConstants.m */, - 8AB093100F5A923F5703493C16829771 /* RCTKeyCommandsManager.h */, - B5FC6C17D33789636AF3270BA5FAF23E /* RCTKeyCommandsManager.m */, - 6B44B301EED465625695EC5CB7E81444 /* Pod */, - 0C99771C245B9C83367820FF9DC04360 /* Support Files */, - ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = "<group>"; - }; - 54964EA1E148B2B4CC508806C006DBBF /* Source */ = { - isa = PBXGroup; - children = ( - C8E4A58F00F0B0CC297A8DE02652EA96 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = "<group>"; - }; - 54CC7B08578416C6564257CABFCD0F04 /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - 344569415CFF47FE8C46071BB022DAD8 /* RCTBlobManager.h */, - 3ADE7AC6AADEF017B591C0715DA215CB /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = "<group>"; }; 560D59B3D7FA7AA98C508EB59C0106CD /* boost-for-react-native */ = { @@ -12204,30 +12159,46 @@ path = "boost-for-react-native"; sourceTree = "<group>"; }; - 573674A0BBBE8B14510CD9344A673956 /* Pod */ = { + 5727CC7C56F6EF1765CCAC3649378E02 /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - 099C5A1340A44D9F14576063642AE779 /* EXKeepAwake.podspec */, + C733CD9C74A357A76284D361EE462CBF /* RCTAnimatedImage.h */, + 373D9CFD1D5D8E68722A9BF8BA08B629 /* RCTGIFImageDecoder.h */, + 8C155F0FF36BE9E97E842352F2207414 /* RCTImageBlurUtils.h */, + 8EA7D1FBF69E61F7830FB148A5E50990 /* RCTImageCache.h */, + 5AD2B6D719ADA2E1D3B263FE4F910F46 /* RCTImageDataDecoder.h */, + C27AF23759BF7A8DD86385A007D97791 /* RCTImageEditingManager.h */, + 41FE7C4DC3FAC003F1B598A2B9F5C053 /* RCTImageLoader.h */, + 0AD54FCA63DCA7D0C67F6F026BD7A1C8 /* RCTImageLoaderProtocol.h */, + 565BE9B8724E8F9DD645CFB25EFE6CA5 /* RCTImageLoaderWithAttributionProtocol.h */, + C41320A799460C4301E8ADD1A4D045A3 /* RCTImagePlugins.h */, + 2F4A0CC84C0513BE8B9846E35F771239 /* RCTImageShadowView.h */, + 74D51A595C752C87ADD691D3A6411EA0 /* RCTImageStoreManager.h */, + 00947C580ABCC7B722ECB8D7D351E6F7 /* RCTImageURLLoader.h */, + 9BDD9AD6CBDA0656FB33DD8C1354B565 /* RCTImageURLLoaderWithAttribution.h */, + 3AC56F9DA9CF3A8DD38C1913E720E0D7 /* RCTImageUtils.h */, + C325978CFDAB8C04548FF1E460600969 /* RCTImageView.h */, + E2967776DBB8C2491E39D6BE35D0275B /* RCTImageViewManager.h */, + 1A4BF455D2EB8C3B0ED975E7D28C952D /* RCTLocalAssetImageLoader.h */, + 94FD43A814135FF3A79FCCD0F3B3AED0 /* RCTResizeMode.h */, + D0B72DC40E4D609C9D01B5A10F3D02E5 /* RCTUIImageViewAnimated.h */, ); - name = Pod; + name = RCTImageHeaders; sourceTree = "<group>"; }; - 5738716EEE07E213840863583B484F8D /* Pod */ = { + 58210328A9659CF3262373BD75D45E8E /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - B96BD06053A63EA7F4336F4176BF7B49 /* FBReactNativeSpec.podspec */, + 9E1FB6B4A44DC3F5D2618CED7EA91FED /* UMTaskConsumerInterface.h */, + 17B51F1B918F1A8CC74355FA300050C1 /* UMTaskInterface.h */, + 4FC16D49BF9944D48937049011C40DDB /* UMTaskLaunchReason.h */, + 5144A3DB29D7509839A527B2C0690C0B /* UMTaskManagerInterface.h */, + 87CF3D5290C63D9BC0C8F06B0B65D238 /* UMTaskServiceInterface.h */, + 8B898BCFEE3C304B5241350FFF655399 /* Pod */, + 26FF7DA43D891D3FE2D571844619D10F /* Support Files */, ); - name = Pod; - sourceTree = "<group>"; - }; - 5909ECAD900C4B4F254E9526CE4E84AF /* Requesters */ = { - isa = PBXGroup; - children = ( - 51276341D60EA1420550F577DAE55AFC /* RemoteNotification */, - 2FB3A3E9F8CBC5FB8D62C956CDBBA48D /* UserNotification */, - ); - name = Requesters; - path = EXPermissions/Requesters; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = "<group>"; }; 590C469E7BA249AACB46FFAE3B725F19 /* DoubleConversion */ = { @@ -12257,59 +12228,38 @@ path = DoubleConversion; sourceTree = "<group>"; }; - 5A2D3A251F17F75394CCAAFDF012F701 /* Pod */ = { + 59D56E212D35F13C04A478945DFDB112 /* Pod */ = { isa = PBXGroup; children = ( - D34706E1A33764E44B0ABB963E29ADC2 /* React-Core.podspec */, + 20880348C7D369561B78EA32911E79CC /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 5B231FA8EFE8A6C0001A7F518E944ECB /* UMSensorsInterface */ = { + 5BCC56AD542BBDA9A8FD2FD15ED103FA /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 8E2BCA6DBB44D8CAFA65C808CE19776E /* UMAccelerometerInterface.h */, - F1D1F2495BA50B8EE783CFFE8D6012E9 /* UMBarometerInterface.h */, - BF09942E83C73627B0FAAE136AE8CB69 /* UMDeviceMotionInterface.h */, - AA284D90BD859683E243E61776E65020 /* UMGyroscopeInterface.h */, - 4869AB951FA7D13BACB5E81747F1EEB0 /* UMMagnetometerInterface.h */, - 4934A02909CA8A0AAA0AE951033F0CFC /* UMMagnetometerUncalibratedInterface.h */, - 513E9FEAC48188F49540064D7281CACC /* Pod */, - 0F386C492952BC082632845A1096BFE4 /* Support Files */, + AD2CA54231C14F8186AD91A1F2145F55 /* UMBridgeModule.h */, + F733254350CCF8A9CCA88E7FC3FE55B2 /* Pod */, + 32BFCAA2A7B1F59DD11547D97BC1BDF6 /* Services */, + B77022EF9FCD3553CDC99FBE6A7BD67F /* Support Files */, + 1C7B27831281EA1E403BFB736DBD1F29 /* UMModuleRegistryAdapter */, + 48281E44BD792FA0BC72449B22A97733 /* UMNativeModulesProxy */, + 97AAF911130B9475DD3F2B13B97DC4C7 /* UMViewManagerAdapter */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = "<group>"; }; - 5B6EF413EE945CB32AC598471F1D048E /* TextInput */ = { + 5C180598BE03068B5075DC5B94B440FF /* Support Files */ = { isa = PBXGroup; children = ( - 0A2BC50D7EEE7D5DFDAEA21A82CDDBFB /* RCTBackedTextInputDelegate.h */, - DB7F8C9696E0DC4FEDE9AF7CDDAFAA37 /* RCTBackedTextInputDelegateAdapter.h */, - 4C5A257EA1403422F1C7049818917BCB /* RCTBackedTextInputViewProtocol.h */, - D70454DF8F9142E88B85515B1C4DF172 /* RCTBaseTextInputShadowView.h */, - 70CF7B10E411379B8A9B9B282F9F0E69 /* RCTBaseTextInputView.h */, - D22FD21AD985123581E35E174568B3C3 /* RCTBaseTextInputViewManager.h */, - DCD301F98FAB37D5BBC99A45991CEDFD /* RCTInputAccessoryShadowView.h */, - 1C450CDA1AA79A853FEF8AEDEDFB2C6B /* RCTInputAccessoryView.h */, - 640F365C9C39E33F7051B6B2E8AABF04 /* RCTInputAccessoryViewContent.h */, - EB132F1D2D0162CDB745F6AFFE24B0E6 /* RCTInputAccessoryViewManager.h */, - 7A154AAB79A96C5D3BFAEE70156CBCF0 /* RCTTextSelection.h */, - B0DCA7F8B4443DD7B893C9F67663F892 /* Multiline */, - 904EA72103A0D905D263CC6004BF7711 /* Singleline */, + D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */, + 7A3B44B0EE5021D9B6F9B6FDB5B2FB27 /* UMCore-dummy.m */, + 608DB5CAABECC13DA111E0248582A04C /* UMCore-prefix.pch */, ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = "<group>"; - }; - 5CF6AC0BD80D1A24647FADFC7DF48C9E /* Pod */ = { - isa = PBXGroup; - children = ( - 3AD3E8AA4DB772AEFC6A888CC307134C /* LICENSE */, - CD574B096FDBAF7FC4C522AC149B3FB7 /* README.md */, - A3D1B2134973AC4C4962B93C3F89BDF6 /* RNFastImage.podspec */, - ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = "<group>"; }; 5D29D4DFEC969725127A72699ADD0ECF /* Support Files */ = { @@ -12321,17 +12271,6 @@ path = "../Target Support Files/OpenSSL-Universal"; sourceTree = "<group>"; }; - 5D3A206D8E078089114CCC25DE3A9710 /* Support Files */ = { - isa = PBXGroup; - children = ( - F00293AA71A402F46B2D3EFA14147688 /* UMAppLoader.xcconfig */, - 0BF0923B395BB82C667BCA5BC7DC5E21 /* UMAppLoader-dummy.m */, - 3695617AED5C82AAE921B0400A171759 /* UMAppLoader-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; - sourceTree = "<group>"; - }; 5D654C0F41EC73C312EF7B25A3B7B515 /* CocoaAsyncSocket */ = { isa = PBXGroup; children = ( @@ -12345,6 +12284,52 @@ path = CocoaAsyncSocket; sourceTree = "<group>"; }; + 5D8A195208F5F9D1AD40BBD67BEF0862 /* RNDateTimePicker */ = { + isa = PBXGroup; + children = ( + C332354CE32553AE1D10339068F3F17B /* RNDateTimePicker.h */, + EDD08559E2215CE06A3DEF7092092158 /* RNDateTimePicker.m */, + 27500E1C3EC9295178F620CC41A73CA3 /* RNDateTimePickerManager.h */, + 469614418673ECF5A39C6A40E4EAE2F4 /* RNDateTimePickerManager.m */, + 87C436A7B1AE8BB6C82E14004284BE3D /* Pod */, + 5177C8A0700A73D29C911ECC46DAF0EE /* Support Files */, + ); + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; + sourceTree = "<group>"; + }; + 5D8DBD031C93AE6D46EAC75B0765F98F /* ViewManagers */ = { + isa = PBXGroup; + children = ( + 1C9FCF945444DD05ECD9D1A6D9CDF2D2 /* ARTGroupManager.h */, + 600E11526FC1B31D3900246187123E89 /* ARTGroupManager.m */, + ED94D1793B8A55328B5B64B884D106DD /* ARTNodeManager.h */, + 3CBC29214A35D70A6460363696F3A412 /* ARTNodeManager.m */, + 1D058CA8909B39B41CBDE50B374B7BEE /* ARTRenderableManager.h */, + 5BAFBBE57DAE334A1168DBD0F4E64ACB /* ARTRenderableManager.m */, + A8900F07EF4F2C1C02C4706CA08672AE /* ARTShapeManager.h */, + 54AA020BD3FF830AE950170EBEB58E8A /* ARTShapeManager.m */, + 58A7AA742BB72B9CC46855C6A063EB42 /* ARTSurfaceViewManager.h */, + 98197B703C5B25832FEF5F172B51223C /* ARTSurfaceViewManager.m */, + B840ED032943756ABB8E10A0DB084CBE /* ARTTextManager.h */, + F53BCCEADEADB82BF87B66397B482947 /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = "<group>"; + }; + 5F2584076E044899708AF10A3E606285 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + D2496821890C3957B6369CCC233D5079 /* EXHapticsModule.h */, + C30F4DA8650B821D69927FC3C47B368C /* EXHapticsModule.m */, + 2CBB7C149768AB08741FC1B0A588F95A /* Pod */, + A3B05376FDB6A26061C1294D424047E9 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = "<group>"; + }; 5F2F3EF97DF155F3252675989B0B6940 /* Environment */ = { isa = PBXGroup; children = ( @@ -12362,29 +12347,6 @@ name = Environment; sourceTree = "<group>"; }; - 5FB5AAD50E297DCF0650724F6CD02180 /* Support Files */ = { - isa = PBXGroup; - children = ( - 150D9E0A5E644499F1F1B704A0B23E95 /* EXKeepAwake.xcconfig */, - 1DA3DAC8AE5991BD58A0D8BE8DC6237A /* EXKeepAwake-dummy.m */, - 22307CBA9097E8A629DB6AEDEC5F0C94 /* EXKeepAwake-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; - sourceTree = "<group>"; - }; - 5FDEE830B476B40046EC098DB043298E /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - E80230EBE707360184751990DFF558C7 /* FBReactNativeSpec.h */, - 635C9713D64FD7E54AD46609A9F6BB79 /* FBReactNativeSpec-generated.mm */, - 5738716EEE07E213840863583B484F8D /* Pod */, - 449C6E7AF88A839C7B088D301009F2EA /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; - sourceTree = "<group>"; - }; 600EE23B1928A8162B2A0A2BA9A88655 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -12395,173 +12357,78 @@ path = GoogleAppMeasurement; sourceTree = "<group>"; }; - 60550506AD95810E4AF5346947153D23 /* React-jsinspector */ = { + 60A9B3AC627C5E9D703DC70214162266 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - B39312FD3B2201859257A070D87CFB58 /* InspectorInterfaces.cpp */, - 5EB3F5F0FB4F5504EA197220EF0E89A5 /* InspectorInterfaces.h */, - A8A4DC814639097E29EFD10741861692 /* Pod */, - FC233F385AAA24D7035D064074D9FEE0 /* Support Files */, + AD8D144DD7C6C78299E910EA3D35394D /* UMFaceDetectorManager.h */, + 831999651C70369A14B36B756CDB1DF4 /* UMFaceDetectorManagerProvider.h */, + D18367236AC4A77D8B5DEA9B0E1FEA56 /* Pod */, + 052E3E35D9B314E37CC365A8B9079212 /* Support Files */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = "<group>"; }; - 61C303B40EDDB4988532AEAF22E51101 /* Tools */ = { + 6282EA83099DA2296D034FA6402D0A41 /* Protocols */ = { isa = PBXGroup; children = ( - AC4CE7744E6CF0D96084F2DAE299EF2A /* BSG_KSArchSpecific.h */, - 91A5297C7D8564AD8AB098CDF45B6C32 /* BSG_KSBacktrace.c */, - 0C28A2F188C6D7A57EA5CE8B364C67CA /* BSG_KSBacktrace.h */, - BBADD20B3A1094D10FA5C2389A0F76D0 /* BSG_KSBacktrace_Private.h */, - B2B23E78F9CD6F4E202C67819674071F /* BSG_KSCrashCallCompletion.h */, - 600F83F094161DCB11ACBA732FCFE8D1 /* BSG_KSCrashCallCompletion.m */, - FBCF91D66A45CA87BF4FBF77A381D8AC /* BSG_KSDynamicLinker.c */, - 67128EB79907D7A2D1BE62C9A068CCB3 /* BSG_KSDynamicLinker.h */, - 1CAC75AB083C6995FD42632231A1D941 /* BSG_KSFileUtils.c */, - 2A61CD93CD86B2847C62012BC8201AC8 /* BSG_KSFileUtils.h */, - 3B912757EDE4CD245B6F841ED3028A0D /* BSG_KSJSONCodec.c */, - ECECC3FFA1D51B683BD14C17B319EE0F /* BSG_KSJSONCodec.h */, - 8576E63209765A1063F39CC81ECED255 /* BSG_KSJSONCodecObjC.h */, - 248C390820FCFC0AD4DC2D486FBF2E6B /* BSG_KSJSONCodecObjC.m */, - BB8A4204A992218DDAF54E9668F13942 /* BSG_KSLogger.h */, - 4D54BD1D2775DA26FAF4EC58342DC59B /* BSG_KSLogger.m */, - 0BE6912B0D636F332F440521664BD442 /* BSG_KSMach.c */, - 9FB7118678737F1D828984D9FBCFEB0F /* BSG_KSMach.h */, - 3D133A999991806DB0A11FD60D37872C /* BSG_KSMach_Arm.c */, - BAB7FC1BC2272020CF84D49FB79CB465 /* BSG_KSMach_Arm64.c */, - 12C19293805EC77DC2BDFCAADCA85745 /* BSG_KSMach_x86_32.c */, - 898858814F868522EA63C94B5815797F /* BSG_KSMach_x86_64.c */, - DCC763AB25BB02EE3DE6A7C2352B487E /* BSG_KSMachApple.h */, - 741411DDA613FED7DEB981FDFF1768FC /* BSG_KSObjC.c */, - 59484F5AEE05BEDA82F47FAD83B29F58 /* BSG_KSObjC.h */, - EBA635743ABF4A9D760E7D051BA642F2 /* BSG_KSObjCApple.h */, - 04832F3BEF5457E9231DFA3A7B466767 /* BSG_KSSignalInfo.c */, - 489D5376AA4DD9E40E97D572C797336D /* BSG_KSSignalInfo.h */, - 6ECB8F518E3152C17333DA9EC01844D0 /* BSG_KSSingleton.h */, - 4ACA231A5AF8AF7BDB90244762C19195 /* BSG_KSString.c */, - 5017B0B57226A96AB971E2D67B3EBB0E /* BSG_KSString.h */, - 11EAFCA84606DCBB044ACBFFA8B431CF /* BSG_KSSysCtl.c */, - 69D91E3D9873D84638E8E8D1A52A101B /* BSG_KSSysCtl.h */, - E341FC9946689900657B6982A61A5D02 /* BSG_RFC3339DateTool.h */, - 2692F96A70C996939FCF0292FF468288 /* BSG_RFC3339DateTool.m */, - F0E5FC0EB2299670FBD2C634949EB2EC /* NSError+BSG_SimpleConstructor.h */, - 4A617D4D33AEF921AB52206884C4AC07 /* NSError+BSG_SimpleConstructor.m */, + 6C11B76031D69F7EBD8459372BAA8DCC /* UMAppLifecycleListener.h */, + 046876CB45E8677AA2A5F488330696D6 /* UMAppLifecycleService.h */, + 1039BBF6BD28A96EC30DD7CB8F7FA870 /* UMEventEmitter.h */, + E63199558C4A6FD2AC4B36A19B0751C6 /* UMEventEmitterService.h */, + 6049C82BC2C47603E9076739B55CF121 /* UMInternalModule.h */, + 7D48E0D6D11687E2ADD4E55BBDFE1495 /* UMJavaScriptContextProvider.h */, + 4D63AF2B14E3601110E5B672A7F1379D /* UMKernelService.h */, + 2C42F9714A09EB66DC4FEA36E14C86E5 /* UMLogHandler.h */, + 489381BD88BB462EA51AC3844735251C /* UMModuleRegistryConsumer.h */, + A88369EA1BA308AADC69E71FC52944A5 /* UMUIManager.h */, + 3CFD4E37FCB41DFC0E9A17BFA73CCD48 /* UMUtilitiesInterface.h */, ); - name = Tools; - path = Tools; + name = Protocols; + path = UMCore/Protocols; sourceTree = "<group>"; }; - 62C9383F2C726C03122BF58BFE603396 /* RNUserDefaults */ = { + 659E9F351E7A9531188C24D200881546 /* event */ = { isa = PBXGroup; children = ( - E92A46AC09F3A4C210BF6DC717FE1128 /* RNUserDefaults.h */, - C6CD0AF3C1276B5ADD939B36CA3509F4 /* RNUserDefaults.m */, - DEDA4E11598F2D2AB62A8160A1FDCEE5 /* Pod */, - 728CBA0F7B77A2A57F68DDE705E09AE0 /* Support Files */, + D5A5D66A3F340FAF357C3C23740B2CCA /* event.cpp */, + 5AC98D1BE9683B2CB2C454621F2280DD /* event.h */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = event; + path = yoga/event; sourceTree = "<group>"; }; - 63712194D1AFE588DBC96F12EF634D28 /* database */ = { + 666F9A3B886638B558127BEE29853B94 /* Pod */ = { isa = PBXGroup; children = ( - 927C2E85C671ECDD04F9A4DB9135ED12 /* RNFirebaseDatabase.h */, - EF6442100B2F3E03EE075615215B4E11 /* RNFirebaseDatabase.m */, - 687220EBC07C9E6FAC205C6519208563 /* RNFirebaseDatabaseReference.h */, - A1973F6B4BFFA90839CC5187AC944C3B /* RNFirebaseDatabaseReference.m */, + 1EEE0770D07DC00B82039B5A2F97E499 /* React-RCTBlob.podspec */, ); - name = database; - path = RNFirebase/database; + name = Pod; sourceTree = "<group>"; }; - 6596299810968B1BB7143946AA355578 /* Support Files */ = { + 668B7AEA7CA878FC7C3990DB38A2D2E7 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 63EC225EBF846663B501B4250033C942 /* react-native-webview.xcconfig */, - CF43181C64C05A4B88B9E5CCC1E64EA4 /* react-native-webview-dummy.m */, - C7E8FC26BCB6C61166A1BE6D4E2F7F2A /* react-native-webview-prefix.pch */, + DE7F6277315A36A1D833DE0C44B3E033 /* RCTReconnectingWebSocket.h */, + 08ACE5ED8E4F4E120D549B4619FE61BA /* RCTReconnectingWebSocket.m */, + CFC8E451D38E2E7D63F049CAB6CB0967 /* RCTSRWebSocket.h */, + 0D4C0D09B8BC735DD7F524E05248601A /* RCTSRWebSocket.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = RCTWebSocket; sourceTree = "<group>"; }; - 65B064FB6C42C840E4E796FC0692A16C /* ReactNativeART */ = { + 66F9999BEB8F6D3516FECCDA04EF77F8 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 38A733AE537DC49958ACCA83938D62A8 /* ARTCGFloatArray.h */, - 375728919619FF75FA66E1EFF31EA0CF /* ARTContainer.h */, - 6DFB9FD5D108FAAA25D77ED39AF86899 /* ARTGroup.h */, - 989E10982D7047A7DAB8A37A30CC1E6D /* ARTGroup.m */, - D5BAA503587ADA3BC8BCC6BDE01E3022 /* ARTNode.h */, - 1A2C80C7FEF0CA0511A3B8DC9B6DCFE9 /* ARTNode.m */, - AAC1FF6A3E958EEB34084535FBCC6A2F /* ARTRenderable.h */, - A72D366C70148074E01800574416A0A3 /* ARTRenderable.m */, - B634BB848BD7B049E27A33F03AA3E0CE /* ARTShadow.h */, - 83F1602CBB2BDB6BF4569F71EB6BA2E1 /* ARTShape.h */, - 43F65837E45A2C07E2A1DCC999CE8873 /* ARTShape.m */, - 2A826A64BC18F13FDF783C6AEBCB84E4 /* ARTSurfaceView.h */, - 3460984D7C361328571349EE5D4B8FB1 /* ARTSurfaceView.m */, - 6CD371BC3A1F8EBA19BFB073E235E096 /* ARTText.h */, - F8C50783CFD36716694B2BFB82E2A781 /* ARTText.m */, - 4396AF01347CCA03B9E7140BADCE88BE /* ARTTextFrame.h */, - 976108395F5BF08ECF1B472A86D069EF /* RCTConvert+ART.h */, - 49EAB33DEDA451ECE220EC8AF4ACAA1A /* RCTConvert+ART.m */, - F6D43DF23FD740A86B5452448D1C85D9 /* Brushes */, - CF56B773F5732C0149932464728BD6E6 /* Pod */, - 209D6F327ECD56BB4879D8E74B4AB4DE /* Support Files */, - C58F7B01FEDDC5AA19681E5C6B4BF8DB /* ViewManagers */, + 2BD6D05211FC0A993AD167FD7F658475 /* RCTBlobCollector.mm */, + E94FC1C094B87AA5B9F330ED67E9B2D0 /* RCTBlobManager.mm */, + 75FB45C7226ED96D42AC27B019D7C154 /* RCTBlobPlugins.mm */, + 672661EC0765FB80ED5E2083213F3A98 /* RCTFileReaderModule.mm */, + 666F9A3B886638B558127BEE29853B94 /* Pod */, + 329773985A834B34AF3BD1565758D7C3 /* Support Files */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = "<group>"; - }; - 67D1AEC28347D6FDCA4A09EF6039629A /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - B653A8080739DF00E3287CA172C34CEF /* RCTLinkingManager.h */, - 85DFBD30F8E1846663D8755924328FF4 /* RCTLinkingPlugins.h */, - ); - name = RCTLinkingHeaders; - sourceTree = "<group>"; - }; - 68672A5A4FD3B177E0F2B3525AB7C85D /* storage */ = { - isa = PBXGroup; - children = ( - B7BDEC209D0DCDFB42D3449AA932720C /* RNFirebaseStorage.h */, - 3CD1A7C15C31FA648D8509671D563123 /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = "<group>"; - }; - 687F0E01F7625A2B30EE1649B7545BFC /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - 6E79F14C3EE107BE312CCCF91A81F721 /* RCTConvert+Text.h */, - D41085A05AE372FA28F64384A2C99951 /* RCTTextAttributes.h */, - 78F231D7CA282303549AA44A7AD81A60 /* RCTTextTransform.h */, - 18679CE30877CEA2997C090F3DA9639D /* BaseText */, - 2DF91DD3F5C7F96D4E92DA81E311932D /* RawText */, - 3BF22C87E1111AE3F8A504CA2D23FD96 /* Text */, - 5B6EF413EE945CB32AC598471F1D048E /* TextInput */, - ED7762D6E9034631AB9AC2EB86ECC6CF /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = "<group>"; - }; - 68D3455DD49A370ACB9F0CED9E6DE9DA /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - 53A953CAD946C0F09D2CF09241084311 /* RCTDataRequestHandler.h */, - 22B21E6AB65C8B7873FEC458AC2DE69C /* RCTFileRequestHandler.h */, - A2157B8FCBCB981A4B4B8E321B1257B5 /* RCTHTTPRequestHandler.h */, - 501AA85736F8077BC8D0FA543BD8D1CC /* RCTNetworking.h */, - 51FA1E11B631E141216E9525FC620226 /* RCTNetworkPlugins.h */, - C10C001C3210D88AE5A93FAE386DC1D1 /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = "<group>"; }; 68E115FF35737531A179FD6EB66F09EB /* encode */ = { @@ -12571,60 +12438,117 @@ name = encode; sourceTree = "<group>"; }; - 69069F46CC7080FAC7A05CEF8467AB14 /* Support Files */ = { + 6971FF86BE33A4F936AC7A2A53EB6692 /* Support Files */ = { isa = PBXGroup; children = ( - D687C0DF26369F6FF99CEE7DE4C610FC /* react-native-orientation-locker.xcconfig */, - 289AE4B553F18EA71E4E9D558239950C /* react-native-orientation-locker-dummy.m */, - 5DA713A8AE2ECF4010B9F8F2D95C8971 /* react-native-orientation-locker-prefix.pch */, + B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */, + 92621C4B5A088E6D97328052B9A3A2D4 /* EXKeepAwake-dummy.m */, + 4BFC1547F97DE6C894000BF8E995FD4B /* EXKeepAwake-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = "<group>"; }; - 690B06CF8682EA675657E69204B16521 /* Transitioning */ = { + 6B87A0B7DE5325D44BEA9321D7FCEFC9 /* Pod */ = { isa = PBXGroup; children = ( - AA75DD05E373E27902ABAD051F5437D1 /* RCTConvert+REATransition.h */, - C6C6F6060D92552F751A5A438DD7F1E9 /* RCTConvert+REATransition.m */, - 67DD05B1B7F2C6C26D127E8A1845FC5D /* REAAllTransitions.h */, - 3DECE78FD5A2983C4A35967B61B994F5 /* REAAllTransitions.m */, - CC1EC5203FAD2AC4962B29F5E1D58C7D /* REATransition.h */, - EB2DB36EBE8829873D295C7DD09FBF7C /* REATransition.m */, - 0FE42D418A6D5C6D284417C3CC40FFA5 /* REATransitionAnimation.h */, - 6533886934CACBA43208AC7E656462B9 /* REATransitionAnimation.m */, - CD52E8807306F1A909DC3E63E9B01D3E /* REATransitionManager.h */, - 57D9339A80A2127F7E2DFFD905D9029B /* REATransitionManager.m */, - D627FC3A36A65F2A9BF801553C386C8A /* REATransitionValues.h */, - 26347F9EA70B7827CA27CB21148817BA /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = "<group>"; - }; - 6962BA04BBA9BF943AB674E1F782E848 /* RawText */ = { - isa = PBXGroup; - children = ( - CBA4D64E832107DF8DEDDD7AD46ABA1D /* RCTRawTextShadowView.m */, - BCCC5B45DC4C92260E3A1D64EDF619D3 /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = "<group>"; - }; - 69A2726EAA368AB3A8FA67EDA4ECDE64 /* Pod */ = { - isa = PBXGroup; - children = ( - 2EB9720AA2EC1DF9EB8CB25C4D864E1F /* EXPermissions.podspec */, + 5D758ADE968A990B4698132F5A18CE57 /* EXImageLoader.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 6B44B301EED465625695EC5CB7E81444 /* Pod */ = { + 6BF30F45E596F0D8A86648362950C157 /* Requesters */ = { isa = PBXGroup; children = ( - EFCED0B9AF8DD3D9A8D069396F972885 /* KeyCommands.podspec */, - AEDB66F00D83E76FA6937DC26DD24FB4 /* README.md */, + 147CD9F32702691595FC2FE11C3403BD /* RemoteNotification */, + DFE2569B13085FCC2A60F1AF5FA1EA10 /* UserNotification */, + ); + name = Requesters; + path = EXPermissions/Requesters; + sourceTree = "<group>"; + }; + 6C7B3AB16BF6774B79560227D8E3B994 /* Singleline */ = { + isa = PBXGroup; + children = ( + 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */, + 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */, + ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */, + ); + name = Singleline; + path = Singleline; + sourceTree = "<group>"; + }; + 6C87F72243F692A4DE76085CF6D789E6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */, + 31E2C8455EA94AE9E641B248102206B8 /* React-jsiexecutor-dummy.m */, + 9488757637FFD5FC260B3C294D47ED72 /* React-jsiexecutor-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = "<group>"; + }; + 6D42942118CEDEEBEAA5DA0884AF2743 /* RNAudio */ = { + isa = PBXGroup; + children = ( + 324706CA72283709C6953C448166A9A9 /* AudioRecorderManager.h */, + BFB1789515B4B57A57BBA01180625822 /* AudioRecorderManager.m */, + CB8BC73A96760860712B5E192680A0AA /* Pod */, + BBF622B0872DD0A727D4286909932110 /* Support Files */, + ); + name = RNAudio; + path = "../../node_modules/react-native-audio"; + sourceTree = "<group>"; + }; + 6D97C4BCFCAB419AB40E9B79661B9288 /* react-native-cameraroll */ = { + isa = PBXGroup; + children = ( + 0A7ED7C867EFB1AADF601062F778482C /* RNCAssetsLibraryRequestHandler.h */, + 95D3073A483921704D78E97838E101D3 /* RNCAssetsLibraryRequestHandler.m */, + 391FA89E4A62EA22768FB6CA3B8C06A5 /* RNCCameraRollManager.h */, + 53735EFB9F05CB52643324CC9137DE1A /* RNCCameraRollManager.m */, + D331E02BC0F501E1449ADCE059FE68B9 /* Pod */, + 0AE6FD7D76F038C1A4F9B4A537117DA8 /* Support Files */, + ); + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; + sourceTree = "<group>"; + }; + 6DCDF5885F39E87899007D7E573BD9F3 /* RCTAnimationHeaders */ = { + isa = PBXGroup; + children = ( + 2C910DEB0F6609AF005E02036652D748 /* RCTAnimationPlugins.h */, + C0F20F742C54B26F631F05038C9BA9BA /* RCTAnimationUtils.h */, + 9F4297F5B8A71095E993382EA72EB207 /* RCTNativeAnimatedModule.h */, + 594C6F33F1EC10518B8B4A0F2B753591 /* RCTNativeAnimatedNodesManager.h */, + 8DCD3D3B1FB5056A9167FB1EB3686EA5 /* Drivers */, + 29D65B96344FE111D335E84270A96303 /* Nodes */, + ); + name = RCTAnimationHeaders; + sourceTree = "<group>"; + }; + 6DE2BC9787CFD9D8A1B4C677FD4C5FF6 /* Profiler */ = { + isa = PBXGroup; + children = ( + FC2DC5C86F5CECF620384916C4995D9B /* RCTMacros.h */, + 9C7D1B455671EA056C902123DDB90E26 /* RCTProfile.h */, + 0E0C1D43ADC74B4277BB727935011CD8 /* RCTProfile.m */, + 6A01959049459F6180CDF12E9BF2E794 /* RCTProfileTrampoline-arm.S */, + E138989E28E0CBEE52F963CE389779E8 /* RCTProfileTrampoline-arm64.S */, + 57EB8B51C0ACBDB44AFD9D3D36D858E1 /* RCTProfileTrampoline-i386.S */, + 02ADEF2EBE6BE74990926B31325535DE /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = "<group>"; + }; + 6E0247C37146B20A9E4F1B8571B8ACE2 /* Pod */ = { + isa = PBXGroup; + children = ( + A229D9F50A2C098F0B13EEFFCFD153DB /* LICENSE */, + 12284038935A628DCA5F981E113F4927 /* README.md */, + DAE471F02C23B363E017C53DA3A781CF /* RNBootSplash.podspec */, ); name = Pod; sourceTree = "<group>"; @@ -12637,53 +12561,99 @@ name = Frameworks; sourceTree = "<group>"; }; - 6FB140C0A0FE182EF21C90A555984883 /* Pod */ = { + 6EC6ED43651444E71B6892389C47FB32 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 5198D0DA048180F2B4B1ED366308BD4B /* React-RCTActionSheet.podspec */, + 74F24B597314054D87C8C1F6195DB87D /* RCTDataRequestHandler.h */, + AB15DBA4D06B0F95D1DC5B7E7E59C822 /* RCTFileRequestHandler.h */, + BE6C7B879BFD452E4DCD69E7D8407DB1 /* RCTHTTPRequestHandler.h */, + 2A0F368092D9D7E5A6F338E6BFE5660E /* RCTNetworking.h */, + 5E9D3EBF1958D478F2E1A4516BF26487 /* RCTNetworkPlugins.h */, + AE2BA269FC8F7B708D9C56011444A49D /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; + sourceTree = "<group>"; + }; + 6F15F43CF59EBD3FE36178D3FE19AF83 /* Text */ = { + isa = PBXGroup; + children = ( + 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */, + C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */, + 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */, + F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = "<group>"; + }; + 6F2CDCE53142510F66BE590E7467CF2F /* React-RCTText */ = { + isa = PBXGroup; + children = ( + 27CF5439AFE8FA90355B9679CB21494B /* RCTConvert+Text.m */, + A59A3367288ADAB08AA4A94015AEAA17 /* RCTTextAttributes.m */, + 4BFE82B23744D61178F2FF6252751820 /* BaseText */, + F96D175D19CB7059722D313EEDC47B40 /* Pod */, + C693D6EC6D4265D76D49991B452222E0 /* RawText */, + E7F10426804961AEAFC0BE414091D69F /* Support Files */, + C1035E1AC63F6D666DE9EA2BC26754FE /* Text */, + 6FCA6E3F3360F71D543AF2CC2593AEA8 /* TextInput */, + 78AF62CF83FAD3AC21D2F72DD7E06C3F /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = "<group>"; + }; + 6FBC050FE2676980FE6CA34EA231D0EA /* Pod */ = { + isa = PBXGroup; + children = ( + B27AAEEE0353A88DBF876477948D4291 /* React-jsinspector.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 6FDB9E7B710E2FCC5EF18AFFA1EFA736 /* Support Files */ = { + 6FCA6E3F3360F71D543AF2CC2593AEA8 /* TextInput */ = { isa = PBXGroup; children = ( - 8AEF9A9E12F8312E3CF08CFEC2DF631D /* React-jsi.xcconfig */, - B07ABDDCC7DFB994AD121CB156D2AF2A /* React-jsi-dummy.m */, - 678B926E8D5136C3A9D858A685BC5FBF /* React-jsi-prefix.pch */, + E7FEFC8BF31652AE75D2A6B5CCF97FE3 /* RCTBackedTextInputDelegateAdapter.m */, + FC76F239BF3B62D1ACCD0007933BDF72 /* RCTBaseTextInputShadowView.m */, + D4CB377774658A47456D1529B052C7EC /* RCTBaseTextInputView.m */, + 930C07D496B0306731EE1E12EB49EE36 /* RCTBaseTextInputViewManager.m */, + C7289159049E31701895AEDF256DE9BB /* RCTInputAccessoryShadowView.m */, + A41064C9FA8F1A7C29EFF9F8B583AF54 /* RCTInputAccessoryView.m */, + 064B454F7BC2B101368FF9057395ACE5 /* RCTInputAccessoryViewContent.m */, + F499C1B29AA068DB65988968E24DAE59 /* RCTInputAccessoryViewManager.m */, + E9365E0F3C70A00DFFB73C55CE208FA1 /* RCTTextSelection.m */, + E5ED64B800388D59246B271D45744FE9 /* Multiline */, + 1467D8E20A7865E67780EEB3DD700113 /* Singleline */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = TextInput; + path = TextInput; sourceTree = "<group>"; }; - 70A29119E257BCDB8064785169B1273D /* Pod */ = { + 70C575CCC2D61E4480E4B2E10476AC87 /* Modules */ = { isa = PBXGroup; children = ( - 1CEBE948416E2B99DAFAFD2D9E3FA2DB /* UMBarCodeScannerInterface.podspec */, + E6ACBAD632439F409068F8598984ACE9 /* RCTEventEmitter.h */, + E8D3B8F52EEE1AAD7AF95F4D98371347 /* RCTEventEmitter.m */, + E38FE81BDDD5BD672BD3F564F64D524C /* RCTI18nUtil.h */, + 36A5BF922FAFED826AF8644C774A3DBC /* RCTI18nUtil.m */, + 574D7400D4FA4995E1CA19A91291CB58 /* RCTLayoutAnimation.h */, + B7A5C8CB88C1D2EDD86B5D8FA276A452 /* RCTLayoutAnimation.m */, + CD6FB009D4E50D67DF92F21F8DAFE5BE /* RCTLayoutAnimationGroup.h */, + 86E4F8E331A1E8766EE7DFC72710CFFB /* RCTLayoutAnimationGroup.m */, + 21AFCC848706AC146667C33200C1CD2C /* RCTRedBoxExtraDataViewController.h */, + 2228D771F5EFF55AA041447138D04359 /* RCTRedBoxExtraDataViewController.m */, + CD6E14841088CB752B6312D567BFFFE9 /* RCTSurfacePresenterStub.h */, + 474A87575CEA38A9E52970DFF7AEAB43 /* RCTSurfacePresenterStub.m */, + 53C2EA867FAAF4242F4816A6E06D4685 /* RCTUIManager.h */, + 6B2BDC1075053600BB48E4327B127095 /* RCTUIManager.m */, + A89985B8D6B7454457C079CABB112119 /* RCTUIManagerObserverCoordinator.h */, + 34B9077B77809D6B9B552D2BFA10F8C3 /* RCTUIManagerObserverCoordinator.mm */, + B3262FD84C1E3BB00C4CF6EE49E677B5 /* RCTUIManagerUtils.h */, + 6CB305FB16C6980DFAEF89A3008ACF2E /* RCTUIManagerUtils.m */, ); - name = Pod; - sourceTree = "<group>"; - }; - 711FE79611D299A30D437CB2D075B396 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3A872B996E9B044512DA1A4D00D907BA /* UMPermissionsInterface.xcconfig */, - E0815E3E6EE9F8F5DFF7B97B277864CD /* UMPermissionsInterface-dummy.m */, - B4579C87C56B608ED152641E59923EC6 /* UMPermissionsInterface-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = "<group>"; - }; - 714A05D6924FBC2F2E4C37BC588315F0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 621760E57ABAA1008C332FB653081A9F /* React-cxxreact.xcconfig */, - 584AD821C7438FC4E7DC0A8807F78FE4 /* React-cxxreact-dummy.m */, - 9171918201095679A46924C0DE829FB0 /* React-cxxreact-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = Modules; + path = React/Modules; sourceTree = "<group>"; }; 7166D821B1826C3F62FAFEE11C4326D1 /* Support Files */ = { @@ -12706,41 +12676,43 @@ name = Frameworks; sourceTree = "<group>"; }; - 728CBA0F7B77A2A57F68DDE705E09AE0 /* Support Files */ = { + 74146D9398475B1693B69D4B9FD9BBC4 /* storage */ = { isa = PBXGroup; children = ( - 542F48FF482072F96E81D5F11E172D6E /* RNUserDefaults.xcconfig */, - 6F8CDB3CB84B4918F82BCE04073C480B /* RNUserDefaults-dummy.m */, - 36702AE98C56797A537205898FC341AA /* RNUserDefaults-prefix.pch */, + 22F87E7247324887C6502EDA25DED060 /* RNFirebaseStorage.h */, + 83B79C8BD3D16E22D3EF6179CA31D62F /* RNFirebaseStorage.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + name = storage; + path = RNFirebase/storage; sourceTree = "<group>"; }; - 73686C923ACD519ECF3D124F5D98242E /* RNImageCropPicker */ = { + 7505E5DB8D9EFBE6FCD2951D962F1DFF /* Pod */ = { isa = PBXGroup; children = ( - 6D3103FC5FF8511D79937ACF821502A3 /* Compression.h */, - 846069DA7B6068262E2C3025790681B5 /* Compression.m */, - AF4B41CDA8779639320AC3BC88A739BA /* ImageCropPicker.h */, - 0F367E454B11846A61FC33D4BA895A8B /* ImageCropPicker.m */, - 87C23AAA3ACA5A3651F5838320939F2A /* UIImage+Resize.h */, - 3829AEC3DC988CD50673B1724E7A381E /* UIImage+Resize.m */, - B6EE75D1718608927B62F2C5E0417A2F /* Pod */, - 7C1B9E217F904D466C456EAF0000071E /* QBImagePickerController */, - 8F548AE002AD1E7A584BE81C8352060B /* Support Files */, + 5D0933BD8EE387129928FBABEFA183BE /* UMImageLoaderInterface.podspec */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Pod; sourceTree = "<group>"; }; - 74B1B41A2D3AED6DB5E87BA16ADCA824 /* Support Files */ = { + 750974AD76AFC9A117C512C8FF99C99F /* TextInput */ = { isa = PBXGroup; children = ( - 6362B6944C8392DDD2BC93AEA5C91972 /* RCTRequired.xcconfig */, + 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */, + 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */, + B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */, + 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */, + 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */, + F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */, + FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */, + EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */, + 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */, + 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */, + 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */, + D2CE725788413C62F26BE7F02819780B /* Multiline */, + 6C7B3AB16BF6774B79560227D8E3B994 /* Singleline */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = "<group>"; }; 751233F250C4B85B7E4F0C1E4FFF35AF /* Folly */ = { @@ -12767,33 +12739,6 @@ path = Folly; sourceTree = "<group>"; }; - 752D71CA946D10C2298F953F681E8AF5 /* Pod */ = { - isa = PBXGroup; - children = ( - 9BFF31F3DEBEC406590EE540A6F73C57 /* Yoga.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 75E3CAB9D30844A302FF80488C44B468 /* Pod */ = { - isa = PBXGroup; - children = ( - B4F614730B0512EEAB96CD2F88595C42 /* RNFirebase.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - 764BA6DAA1DC04703C06D53D240A425B /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 38864A54D45394C97083A636DB737E7C /* callinvoker */, - 7FDD8731B0DFC8381C5FD983134AE589 /* Support Files */, - 7C650A2109F7509694D563F5C7384342 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = "<group>"; - }; 7693EDEC3E72CA711B224A5D0450F43D /* FirebaseCoreDiagnosticsInterop */ = { isa = PBXGroup; children = ( @@ -12805,72 +12750,45 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = "<group>"; }; - 76A2D44815245442DD9DFDEA76BD577F /* Support Files */ = { + 773CD5572DD70CAEBFB454A9AF729AE2 /* Pod */ = { isa = PBXGroup; children = ( - 0CE1F9FE48F8DB49BD1C469ED796E6B3 /* React-RCTAnimation.xcconfig */, - 9FE14EC7C43D3C7E2B050C14FB1B7BB0 /* React-RCTAnimation-dummy.m */, - 02BA4A97D0301E28F3FC09DFFF56E09F /* React-RCTAnimation-prefix.pch */, + BCC9A9272B488D83A4EA09F1403BA079 /* LICENSE */, + 92F4E9C8C6FD85E1FB12AAF8976197E8 /* react-native-orientation-locker.podspec */, + 694C5135432E74476DD1273FCAA5C815 /* README.md */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 78A6CF5DE4A8CB07DF1D443B204A7483 /* Support Files */ = { + isa = PBXGroup; + children = ( + BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */, + 2536DDA97AD131C68C0518E3B194F4BC /* RNScreens-dummy.m */, + 17D8D67E8E01B607E176F601FFC20E09 /* RNScreens-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = "<group>"; }; - 78E36E738EE69AADFA9537C6D4B28CE3 /* Surface */ = { + 78AF62CF83FAD3AC21D2F72DD7E06C3F /* VirtualText */ = { isa = PBXGroup; children = ( - FCB8F0B2E82C8ECF93A3A1068CBF2DA7 /* RCTSurface.h */, - 580D8B46FBFF0A60A8347D2B5B1BFA00 /* RCTSurface.mm */, - 4912B19107CF8813B0F62A95D0E2D787 /* RCTSurfaceDelegate.h */, - 0F7ED2CDCDB99984A84236467E8778B7 /* RCTSurfaceRootShadowView.h */, - A0A414E75B439F2C6E3886ED93515E9A /* RCTSurfaceRootShadowView.m */, - BA7ECA99F9CED69EABA22710A2079D18 /* RCTSurfaceRootShadowViewDelegate.h */, - C65BEB8974E8861875369929B9C83FCD /* RCTSurfaceRootView.h */, - D4C5632CF328F44B28A8A9F80D503D4A /* RCTSurfaceRootView.mm */, - C36F97D7D93D5B97F862D205C4603D0D /* RCTSurfaceStage.h */, - 0694221AA3A53B75F96CFF7D06188206 /* RCTSurfaceStage.m */, - 4DBC53743AD8998637A0AF9E9D226DAD /* RCTSurfaceView.h */, - F4FCDA9DA3659CD0E6A9EA312D9A2F77 /* RCTSurfaceView.mm */, - 9B089CC535E5F78ED62E11BE31A32515 /* RCTSurfaceView+Internal.h */, - 284BDA5B9E956079314D975B242F4D2F /* SurfaceHostingView */, + 84CEA15C9F028188FC76B20548085682 /* RCTVirtualTextShadowView.m */, + 94923A18A7B065BEAF5EA283A6A12C58 /* RCTVirtualTextViewManager.m */, ); - name = Surface; - path = Surface; + name = VirtualText; + path = VirtualText; sourceTree = "<group>"; }; - 794C30AF21D930855DA44DF7332B4BCF /* React-CoreModules */ = { + 78BAF8F24B2B9E7901298DBE7475BBB7 /* Pod */ = { isa = PBXGroup; children = ( - CFA239C0E10FC59D52C8F0953ABD1353 /* CoreModulesPlugins.mm */, - DFF7E0542F67966D0ACA72175B3A1631 /* RCTAccessibilityManager.mm */, - 04893AF65324DB5A2A67812211344EDE /* RCTActionSheetManager.mm */, - BB6D11F38B1CF32AAF0AE12CC99427D8 /* RCTAlertManager.mm */, - 2CB59D2B895AC64EA439D8430CA3489C /* RCTAppearance.mm */, - 85C82E96EC245B8A90B9ABCEAE93890B /* RCTAppState.mm */, - B65C102AD065AC51BB431EEFFF98E5BA /* RCTAsyncLocalStorage.mm */, - E392F401361980335B1D0994034FDA60 /* RCTClipboard.mm */, - 9A7CBD308ED1A92BEB406FFB1F2DAE00 /* RCTDeviceInfo.mm */, - 893DE73C522ACCA3827A6DD88EEB84C0 /* RCTDevMenu.mm */, - 13423E1640A4656E33D817D2AD0083BB /* RCTDevSettings.mm */, - 59512F530EDCBAD83CE007ECA7A09A1D /* RCTExceptionsManager.mm */, - E9BD7F187F6E115CABDD9ACA7CD9E61E /* RCTFPSGraph.m */, - 62A34B35C1A364C4C3B805970035DF08 /* RCTI18nManager.mm */, - 1BA08779651371D59B6301A376C146D7 /* RCTKeyboardObserver.mm */, - 964E855C86A7524F0F46E0876FCDE512 /* RCTLogBox.mm */, - 9C4FA7E317CDFA18F144029811303C64 /* RCTPerfMonitor.mm */, - BA920F7A204F39086184DEF6A3EEC4F1 /* RCTPlatform.mm */, - 82B36E383DF60ADEBBF2C0B967DB1331 /* RCTRedBox.mm */, - D74218EDAF62BD370256384DE91D9286 /* RCTSourceCode.mm */, - 4D3D401F048CD0B2D3D20DEA6B94DF32 /* RCTStatusBarManager.mm */, - 18D0CB006E723541B7F52759180B45D4 /* RCTTiming.mm */, - FE49DD992C7A34FB3D18DC5BF2EBD6EB /* RCTTVNavigationEventEmitter.mm */, - 9C1830D09C7AD962D9E9C6B21D60E848 /* RCTWebSocketExecutor.mm */, - CBE330116BEC39FE12C95547DF2AC8EE /* RCTWebSocketModule.mm */, - 5016435B8BC8619800A241CCA132C8B9 /* Pod */, - 94FFDCF9E717825BBD7519EA339244E7 /* Support Files */, + 4A3E2AF7B71E6955C3306EC63508E8A1 /* LICENSE */, + 50D716E093D94B1B33877BCC9D547EB7 /* README.md */, + 96A8287B0D35FA463B068CC6FC72D2D9 /* RNScreens.podspec */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = Pod; sourceTree = "<group>"; }; 7A4F98F5D2354F92602A9EF72B6978EC /* CocoaLibEvent */ = { @@ -12925,38 +12843,21 @@ path = "../Target Support Files/Folly"; sourceTree = "<group>"; }; - 7C1B9E217F904D466C456EAF0000071E /* QBImagePickerController */ = { + 7BDBFC6A54E08FDCB7C1A31433724419 /* Support Files */ = { isa = PBXGroup; children = ( - 1B163504AB53A51F06A97ED72B62B2B8 /* QBAlbumCell.h */, - CBC436729E799D26DDB52165F35F291E /* QBAlbumCell.m */, - D69C5615DD39EA7082D2F3F41D2A184A /* QBAlbumsViewController.h */, - 99A086D8B73A03B8CEE89E861A4C0CF2 /* QBAlbumsViewController.m */, - D1E2D7F0FB127ABF03333EFD5456D65A /* QBAssetCell.h */, - 1F7E8C7767E4DCA4EDDAF759C14E8C7B /* QBAssetCell.m */, - 574CAC2BE1FDC0C3A64A41100E04D1B8 /* QBAssetsViewController.h */, - 2BBDBB22145B78714CD090797BE20365 /* QBAssetsViewController.m */, - 05C5C1C3B3F9691C527AE26DB0182F75 /* QBCheckmarkView.h */, - 27C4185FF117BB68E954C769B2CD4FB8 /* QBCheckmarkView.m */, - 86FFF36CF1E21295B161A65D2B8EE256 /* QBImagePickerController.h */, - DD0543E8EA480C7B64BC49729E69E11C /* QBImagePickerController.m */, - 931E9B4CB73464F58A4C5DCCC1B941B8 /* QBSlomoIconView.h */, - 5CD59214E1DE8393CB0AF4AA12F4FFAD /* QBSlomoIconView.m */, - B9E9DC97670C22C22ABE2B2891527DB6 /* QBVideoIconView.h */, - A99701059C883EFBE32DCFD2FF0BE5D0 /* QBVideoIconView.m */, - 9C8FDD6D8D311D1B10CDA770A98B0D16 /* QBVideoIndicatorView.h */, - D5F086CE89F80D69BE926731B878D257 /* QBVideoIndicatorView.m */, - F77F2A3DA62B072771DA8D20CF9A343A /* Resources */, + AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */, ); - name = QBImagePickerController; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = "<group>"; }; - 7C650A2109F7509694D563F5C7384342 /* turbomodule */ = { + 7CAA5C4B6FA05938AE46A49F0C30DE37 /* Pod */ = { isa = PBXGroup; children = ( - 3D17D88957A6BE3869E0401761F6E121 /* core */, + B6B18E19B3AB3EAFDD77A00D6D9B310E /* React-cxxreact.podspec */, ); - name = turbomodule; + name = Pod; sourceTree = "<group>"; }; 7D863AC48C0C7D71312CF741ED412F53 /* Frameworks */ = { @@ -12968,109 +12869,101 @@ name = Frameworks; sourceTree = "<group>"; }; - 7DE48F489A1DBD7FC281B8BFB30B9838 /* Pod */ = { + 7DD96FBD9D07E8B4D7F0314BC0AE265F /* React-jsi */ = { isa = PBXGroup; children = ( - BDC64D47D877090B7E34D5B13B9570F9 /* LICENSE */, - 1865BEC60A3B650FC087F92119220D60 /* README.md */, - BFAF61CE6AC7708F55B2EA740B8B7C66 /* RNScreens.podspec */, + 121C2910524BBEFA9563EB74C2921F8F /* JSCRuntime.cpp */, + 8CBB8B36DA44725BA3658B8988038B04 /* JSCRuntime.h */, + ACDDDEAAB46330E719903EA3FA9FADCC /* jsi */, + 86BFC6B6CDB9FB950F311608F402663D /* Pod */, + 22314EB82BE621D6A0560322443E78F4 /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; + sourceTree = "<group>"; + }; + 7E8C44961FBF3FEDE139B7EBED39395A /* Pod */ = { + isa = PBXGroup; + children = ( + C2683D2F2E237858A50FC07DAACFCB7F /* EXKeepAwake.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 7E07E95E2365AC18600747F758209B50 /* Support Files */ = { + 7EE3544DA9E98A093DF27C96D4BA0D38 /* notifications */ = { isa = PBXGroup; children = ( - C78891B5DCBCF391CDCA0B88900CFB2C /* ReactNativeKeyboardTrackingView.xcconfig */, - BFF29797236B9BD03A6BA3CBA108FEE3 /* ReactNativeKeyboardTrackingView-dummy.m */, - 586311FC297A3D12D5D9C2B3D70F25C6 /* ReactNativeKeyboardTrackingView-prefix.pch */, + C18F5EBFB911662933AB752A409FCB5B /* RNFirebaseNotifications.h */, + 3B3521A9FE101B163F2C9A187BD1E7E3 /* RNFirebaseNotifications.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + name = notifications; + path = RNFirebase/notifications; sourceTree = "<group>"; }; - 7E200B0A11120D06F84A84B8B693364E /* Pod */ = { + 7F1872A0F8CAB49A4B206C243EDFE667 /* Support Files */ = { isa = PBXGroup; children = ( - 34C84038B05552925384036934DE56D4 /* React-RCTLinking.podspec */, + EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */, + 3DC6A673372926D61D8997915CCE6D97 /* rn-extensions-share-dummy.m */, + 180E90B99FD16FD9D240CBA38531C2E9 /* rn-extensions-share-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = "<group>"; + }; + 801A72FC6E5DACBE5F69A3E624F1B98F /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + 5978EB2DC09C2C72478F6CEEE0A63978 /* RNDocumentPicker.h */, + DBA47DDEAD4D6754F88945C0073C0BBB /* RNDocumentPicker.m */, + DFD5E3275D09951E802D172CF97DE4E5 /* Pod */, + 433BC581F38245A7EF55F962BAAAF798 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = "<group>"; + }; + 8082D353BB935CBA6F286A61F7B6D013 /* Pod */ = { + isa = PBXGroup; + children = ( + 1842644006872371281A046E2603365F /* RCTRequired.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 7EAE45D485BBA63F1DA64D279E895718 /* React-RCTLinking */ = { + 80CFF7CAB8AAC775CABCE6B263904010 /* platform */ = { isa = PBXGroup; children = ( - 260DB9FC71031205F578DBD5E9F2FACB /* RCTLinkingManager.mm */, - A7C2C3D21B18AE4B88EDD6EB6D07D636 /* RCTLinkingPlugins.mm */, - 7E200B0A11120D06F84A84B8B693364E /* Pod */, - 40579F82711186A8C1104FD52D15F653 /* Support Files */, + 1B2BEFA4AD79884F68B0733DDDE09EFF /* ios */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = platform; + path = turbomodule/core/platform; sourceTree = "<group>"; }; - 7FDD8731B0DFC8381C5FD983134AE589 /* Support Files */ = { + 8181BBEAF7F7B5DEA838EE799397B204 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 66590469C3C0AF368D9F0433F6ACA4A6 /* ReactCommon.xcconfig */, - 0FB8C39BB60620646E2FA7B10DF6E42C /* ReactCommon-dummy.m */, - 03F6CCED72BFE6C3312F1EBB5812CEBE /* ReactCommon-prefix.pch */, + B19328D30EFAEE6C7FD94F39C5D6FE50 /* UMBarCodeScannerInterface.h */, + CCEF9059AAE3C22B0EBD5BAAB618D1A4 /* UMBarCodeScannerProviderInterface.h */, + 0352856E1BF7B7187BD2BC8470781B6B /* Pod */, + 7BDBFC6A54E08FDCB7C1A31433724419 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = "<group>"; }; - 806575B01D6CB174B4F90754DE47A87C /* Pod */ = { + 81F8D6AEE55E9B8DB0945B9F3A62BBF2 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 90F83122597EE1659B752BD7F2DF170D /* UMCameraInterface.podspec */, + B97E97DB7AFAC13D5E6F157E5593C7D8 /* UMPermissionsInterface.h */, + 29B194002894F596571B50ECA498E7A4 /* UMPermissionsMethodsDelegate.h */, + DA23FA802004150814858F296B06E271 /* UMPermissionsMethodsDelegate.m */, + ABCF67441147F7505A4D4AE3861302A8 /* UMUserNotificationCenterProxyInterface.h */, + 15B62160302337FDC23F9FE70B942F88 /* Pod */, + 8FC1AD4B125CE195870FF370752E772F /* Support Files */, ); - name = Pod; - sourceTree = "<group>"; - }; - 81287494A3359E3A3A3C78656DBB9E4B /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - F15BD53ADF91432D590A789A323C64E1 /* UMModuleRegistryAdapter.h */, - B3DBF88C1827A1A20AC6289CB392725B /* UMModuleRegistryAdapter.m */, - 7ADC6B5DBE17D771D86A3EBC8EA82292 /* UMModuleRegistryHolderReactModule.h */, - 067D46A826FD4774A6ED6EC1D61863D0 /* UMModuleRegistryHolderReactModule.m */, - 7309E915DE439E96A9E58CAE1E960EFE /* UMViewManagerAdapterClassesRegistry.h */, - 8B877B7B613D625FB5683F806DDC283A /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = "<group>"; - }; - 81D7903A9F523EC570CE2BDA2782D2A4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 41E34DF774AB75999624309D3B29DE63 /* EXImageLoader.xcconfig */, - 4176701C84EB6E9A4E05B9DA78F07954 /* EXImageLoader-dummy.m */, - 29D13108789C0ED5A0E97E864F8C8D05 /* EXImageLoader-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; - sourceTree = "<group>"; - }; - 8262554ED67B3F4FD3D4D27CDD2A0BBD /* Support Files */ = { - isa = PBXGroup; - children = ( - E43F1755E27EF960D032C6DDCA1F1818 /* UMImageLoaderInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = "<group>"; - }; - 82CB6C77B3FDD31BF42B8E612AB305F8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4F910EE1A4DA7853B3533645D672CCE2 /* EXLocalAuthentication.xcconfig */, - 54895ED019669E05F7D101FC8F1DCDB6 /* EXLocalAuthentication-dummy.m */, - 3162B0BB098E0A0E5725BE6C2F9194DF /* EXLocalAuthentication-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = "<group>"; }; 8340D7746CE4006DE21ACD2BECC9E5FE /* Core */ = { @@ -13100,6 +12993,27 @@ name = Core; sourceTree = "<group>"; }; + 836F5890BB04FEC30653AB8F686F6888 /* CxxUtils */ = { + isa = PBXGroup; + children = ( + 8141097306C15C605D00A0BDEA23135F /* RCTFollyConvert.h */, + 1FB7ECFA1E2EB82E596204EF9FF6C56B /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = "<group>"; + }; + 83A4A18DC18B9995DB542CC1C225F53A /* Support Files */ = { + isa = PBXGroup; + children = ( + 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */, + 4A2E59220BA4CF3ADCCEBFCF7E012A28 /* EXFileSystem-dummy.m */, + EF230F501A71192A035DD44408668E12 /* EXFileSystem-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = "<group>"; + }; 83E4F84A80CF273B373608D3A5F9B940 /* Flipper-Folly */ = { isa = PBXGroup; children = ( @@ -13753,16 +13667,18 @@ path = GoogleDataTransportCCTSupport; sourceTree = "<group>"; }; - 8465CF504440042801E6206865191031 /* RNBootSplash */ = { + 8452CB521ED3366C6AF69DBD07F99085 /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 9986C9FE4567E0B8DC9DB83136204FF3 /* RNBootSplash.h */, - ADA216A86E675AF295541A6639172074 /* RNBootSplash.m */, - 501BFF20F3881E1622FD3269BBA11E9D /* Pod */, - F716B7A14CEE81FC0C54785639804527 /* Support Files */, + 8434817DF7DB6B629F1E9F0F61B96CBF /* RNJitsiMeetView.h */, + 0C9D1F46BBF12863547B9E44C7D331BD /* RNJitsiMeetView.m */, + 46726F35FDD4FA684D6C10085DD089D1 /* RNJitsiMeetViewManager.h */, + 4032C4C557F3A1F04712FAE17E9EAF26 /* RNJitsiMeetViewManager.m */, + BD01DD13B01455AB746709E25A49203B /* Pod */, + A76FAA5823800F3C7AA70AA67AAB84F2 /* Support Files */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = "<group>"; }; 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */ = { @@ -13774,27 +13690,12 @@ name = "Targets Support Files"; sourceTree = "<group>"; }; - 855AEB0CDA61017F31737C00E5FD588A /* Support Files */ = { + 86BFC6B6CDB9FB950F311608F402663D /* Pod */ = { isa = PBXGroup; children = ( - 2EA51A884524618DEA398DF4840AD3E8 /* UMFontInterface.xcconfig */, + CADFC8278F2A60666A8ECF9734046582 /* React-jsi.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; - sourceTree = "<group>"; - }; - 857850255F7F78D7E414E829B4CFAC8C /* react-native-cameraroll */ = { - isa = PBXGroup; - children = ( - DDF2D81F19F254450F97DC57AD30D344 /* RNCAssetsLibraryRequestHandler.h */, - 313C789BE0FC7B4E88B0EA6F25F995EC /* RNCAssetsLibraryRequestHandler.m */, - AC4F966BA5BAE51CD8161E3BFB19A697 /* RNCCameraRollManager.h */, - 910EAD3A58F99D239E1833FF00C63016 /* RNCCameraRollManager.m */, - A0D3FFE2E49B1497F7D35C80BB6905A5 /* Pod */, - 9A584A918B051A1FA0FBE160A8F9176D /* Support Files */, - ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = Pod; sourceTree = "<group>"; }; 86C1DBC084A4CA78A39BE7B53F73F766 /* Support Files */ = { @@ -13806,40 +13707,24 @@ path = "../Target Support Files/Crashlytics"; sourceTree = "<group>"; }; - 86ED65683C976B4ED67459031D220ED8 /* RNRootView */ = { + 87C436A7B1AE8BB6C82E14004284BE3D /* Pod */ = { isa = PBXGroup; children = ( - E382B59B493959CD33D743A3005D0F11 /* RootView.h */, - 393649E868C1F3608372A39A3CC494A3 /* RootView.m */, - D437FAF56633251C1E1A019D2B5E092C /* Pod */, - 0C121E8E5252C89A96BE23702604F7B4 /* Support Files */, + 88FEC41D5E6E03C1B4D0EEC5D1433502 /* LICENSE.md */, + 0CA5DF24E24FDC22CD14E20AA0EDC11E /* README.md */, + A176CFF797D0340E3AF784BA6E4A8770 /* RNDateTimePicker.podspec */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = Pod; sourceTree = "<group>"; }; - 8796180F2E5CE877BEE8B556363C9F6C /* event */ = { + 87E89A208777EC233543893119FBC0F3 /* Pod */ = { isa = PBXGroup; children = ( - 2D0F83ECFB17741986A0CCB29911723E /* event.cpp */, - A534064DAF2097B7FAD56ACB983891BC /* event.h */, + B4393FAEC00309AEE6A2E659D8C2D635 /* LICENSE */, + E954433A769ECCCFBE05DCF2B3D7EA5B /* README.md */, + 79C87FDBC38CAC8DBAC3D2B40FC7405D /* rn-extensions-share.podspec */, ); - name = event; - path = yoga/event; - sourceTree = "<group>"; - }; - 87969B02E0E73B6D5516395C4F4BCA9D /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 0AB7971155BCD8A7254F8A91313704EE /* UMFontManagerInterface.h */, - D4407B2A67DCD1FD532B7B5828CD0191 /* UMFontProcessorInterface.h */, - B82F05E51C44511599746AB13DA52439 /* UMFontScalerInterface.h */, - 9C0E89EE27CFF8B0F933302B9FC14CB0 /* UMFontScalersManagerInterface.h */, - D0F0641275DDD2689F69A3C408E42AB1 /* Pod */, - 855AEB0CDA61017F31737C00E5FD588A /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = Pod; sourceTree = "<group>"; }; 883EEEE4487BD2DE98DCF3C4719CB113 /* Support Files */ = { @@ -13852,131 +13737,149 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = "<group>"; }; - 88BD923918C750D43AE54FF51C027420 /* Nodes */ = { + 8892B424047C7D0329AD9CFF3868572F /* Support Files */ = { isa = PBXGroup; children = ( - 630AE913DA165FDB10106D8C1CD76053 /* REAAlwaysNode.h */, - EF3CFD6D2537A28C48B4E8261ABB906E /* REAAlwaysNode.m */, - 3555285237DF241DFE5ECFC129B82679 /* REABezierNode.h */, - 6C5B51263BD350B31BF3EF3D7C1C316A /* REABezierNode.m */, - BCAB5717996C9E5A189E591F1C07B809 /* REABlockNode.h */, - 224DC4BC11BA41A51020ECB6E6FD820F /* REABlockNode.m */, - D8F21705535D4799AAAAB6D16F91214F /* REACallFuncNode.h */, - A73DBDF91A696083D84B6D4667A82162 /* REACallFuncNode.m */, - 651256C1092CCF9365A098FE18AD3EF5 /* REAClockNodes.h */, - D95779B2CED449A629C8A758700E46AF /* REAClockNodes.m */, - F073E2C45F23CEC46CFA3C6C56AC232D /* REAConcatNode.h */, - CE0812A44198A4CC8E2C964CF5D095B2 /* REAConcatNode.m */, - 4758BA760E88879F33BC50BC967013D7 /* REACondNode.h */, - F11A53A95E9180B8F87AEB4691E62828 /* REACondNode.m */, - 110A2B745F49BAC59EE79316D115A6D6 /* READebugNode.h */, - 9B9321586DD38E7DFD84AD213C8C80BD /* READebugNode.m */, - 3A2A01DC99BBC7CD86517EEED9666713 /* REAEventNode.h */, - 1F25480701B5E717C3AF3FE0D21FA4AC /* REAEventNode.m */, - CF76A83910FDABA60B616D8EEC9794E6 /* REAFunctionNode.h */, - F0FE5864F9B46E49560A65B71ACD345E /* REAFunctionNode.m */, - 98BBD6FFFD50E722EC7012E2A9449011 /* REAJSCallNode.h */, - 126042AC158442964596E9906F817DF5 /* REAJSCallNode.m */, - 2834338D61EB1A76801CD4768032511C /* REANode.h */, - C9718144F08B79B6AE2338040123C354 /* REANode.m */, - DDC39ADDB28B75441E7C09019106CEAF /* REAOperatorNode.h */, - 8C2D0931FD73BA4C466DCE30660AC049 /* REAOperatorNode.m */, - FED0C26864204D28F9566CE99D8F3406 /* REAParamNode.h */, - E6BE4694A82F14E7E3DE46D5F6A06089 /* REAParamNode.m */, - 0217D0E502821EC62D4BC5A63234FEA1 /* REAPropsNode.h */, - BCCAFE8BF1286B919DDE61EC543B8C70 /* REAPropsNode.m */, - AADF067596BCA8EE8C2F51825859E1CC /* REASetNode.h */, - B246F05830DA278B41314EB5D4633A40 /* REASetNode.m */, - F053B45DC8B3349DD2FAEC0223CAD6C0 /* REAStyleNode.h */, - 6B623689BA218C0D34E963D0C41B7614 /* REAStyleNode.m */, - 330F28E14D260FA2752AB8244F045F1E /* REATransformNode.h */, - A1FC6DD984AC4B54F288FAA832419AB8 /* REATransformNode.m */, - 7211C45E379C3DF4CB75612D0FCBEB6D /* REAValueNode.h */, - 1B6067F6B5319589A4F14905A7376E43 /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = "<group>"; - }; - 892FD52D4CF3C3E0C1967B40D2E803CE /* Support Files */ = { - isa = PBXGroup; - children = ( - 2FB8CE87BC7CEB537F1899D1C1324F27 /* UMFaceDetectorInterface.xcconfig */, + 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = "<group>"; }; - 89FBF9041A4BA8A7897E262A3081A2F7 /* Pod */ = { + 889A8CCD4A727BF9B929360941AFBA56 /* Recording */ = { isa = PBXGroup; children = ( - 6BF94CCA9657DA7694ED28B399E68790 /* React.podspec */, + F2C2DFAAE79C00DD3A4A99DCB8ECA3B7 /* BSG_KSCrash.h */, + 4D8A7791A3B0A0EEDC802FFFE8A8DA8F /* BSG_KSCrash.m */, + F526B81DD346CBF3318256EC6D0D00F0 /* BSG_KSCrashAdvanced.h */, + DE5CDE7B990E4422CA317D651285C02B /* BSG_KSCrashC.c */, + 71BD46623AC3B0A68515B1DFAF4ECABD /* BSG_KSCrashC.h */, + 1815B27D3154618D4A51C2618D82DAB7 /* BSG_KSCrashContext.h */, + 99FCA9864B72846B0670BFF06C050B38 /* BSG_KSCrashDoctor.h */, + 7B71C4EC02710E0C2AD933374DC2CBA5 /* BSG_KSCrashDoctor.m */, + 569B2202C973C9A08DF9A19D4DEDE4B9 /* BSG_KSCrashIdentifier.h */, + 6FE28F16D50478462D0AEE7BF714D884 /* BSG_KSCrashIdentifier.m */, + D7F2E42BCDF6367B224D7E349E95B1AD /* BSG_KSCrashReport.c */, + 04EE446FC64B653149F646C077D3D934 /* BSG_KSCrashReport.h */, + 53F09EABC9DB13F31C94C4D730AD53D8 /* BSG_KSCrashReportFields.h */, + B058920ABF87FB0263219FD9D0228A1C /* BSG_KSCrashReportStore.h */, + D8BC6D684FC93C5BBD851B095B4BCA6C /* BSG_KSCrashReportStore.m */, + A8D67A0C91A2C8F802E131D64416F0A3 /* BSG_KSCrashReportVersion.h */, + FEC14D37AD94DAECA2EAF070894A6381 /* BSG_KSCrashState.h */, + F5BE3635EEFB4A7DDF77DAF374D06EF6 /* BSG_KSCrashState.m */, + 7B67AFD966DA52D78F3F3FBEBDE7E78B /* BSG_KSCrashType.c */, + 5979A1FEA57DFC724A635015F53D1860 /* BSG_KSCrashType.h */, + 0D610CC92CA12331CC2CE9B30968B59E /* BSG_KSSystemCapabilities.h */, + C7735874BBB2AF5626E4052A4BD2B566 /* BSG_KSSystemInfo.h */, + 7806EFF9CCD6E7DF393105EA4EFE60C4 /* BSG_KSSystemInfo.m */, + 253DA86CD9850B20CA326647CF689F7E /* BSG_KSSystemInfoC.h */, + BBA405B2C07C8FD5AB3ED645168EEE5D /* Sentry */, + B091B68DE214CCD2CAFE61418F7103BD /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = "<group>"; + }; + 88B74E1BB49EED7D959E5A657D02E81B /* CxxModule */ = { + isa = PBXGroup; + children = ( + 1FFB7D705B4A5244B8A90E9D3A4A6115 /* DispatchMessageQueueThread.h */, + 5AEF694E046418F4A639846BBCA2C17F /* RCTCxxMethod.h */, + 89C4B3B2CD1FDE56C69D142F03EE0104 /* RCTCxxMethod.mm */, + B6D86900F642AF3628250062901E3B6C /* RCTCxxModule.h */, + C9155BBDA5E01B68FF923EEB79990AF4 /* RCTCxxModule.mm */, + D1B3F6A2C254EF6FDD66D17C7F17F393 /* RCTCxxUtils.h */, + 3556FDCD6800754D6B7E16B921BD577D /* RCTCxxUtils.mm */, + C416507DDE2D7C53BF5DDF7DB76AD238 /* RCTNativeModule.h */, + BF99D3FA1B59D96BFE371B6BAC43F123 /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; + sourceTree = "<group>"; + }; + 8AB8D30C72246DC959F930A37B7B0B47 /* Pod */ = { + isa = PBXGroup; + children = ( + 0D17C12C1EAC46D6BAAC64DBECF00650 /* LICENSE */, + E3BAB038B14C3C7D99E760D3B99ABE29 /* ReactNativeKeyboardTrackingView.podspec */, + 77D0503DAB112E0CD3AEB50ADD890083 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 8A39086E1FBA6DBB40E4517BAE493275 /* Modules */ = { + 8B898BCFEE3C304B5241350FFF655399 /* Pod */ = { isa = PBXGroup; children = ( - 65DF166FE6429A2114841E65BA1C4A73 /* RCTEventEmitter.h */, - 8CDECEDFC756D3A0B9DF65B05EB14944 /* RCTEventEmitter.m */, - 12C615B6E53E792D8EFA33542679BDCF /* RCTI18nUtil.h */, - 23DAC1E3C5C972983376E3AECD1A9444 /* RCTI18nUtil.m */, - 6BE812F7876E0DE2BF9725ACF8E93D5E /* RCTLayoutAnimation.h */, - D1FB5ABA9CB31D7349FBDA463AFCD481 /* RCTLayoutAnimation.m */, - DE9FBFA4C50B0AA6DD3EEC0DE507117A /* RCTLayoutAnimationGroup.h */, - 8F68FADC2E5D1F3308B07EF0A1A621E3 /* RCTLayoutAnimationGroup.m */, - 04FFB9C319EA3BC2AF3541DA4BBD1CC3 /* RCTRedBoxExtraDataViewController.h */, - 3438CF072ACC11A4F3EDAD57FF022997 /* RCTRedBoxExtraDataViewController.m */, - 6592B5D56B3CC715C8E023D48FCBE105 /* RCTSurfacePresenterStub.h */, - 9989D8C87CFAF525EEB7533F576B3082 /* RCTSurfacePresenterStub.m */, - 6B1D5ACB4E714B2E52F83C05C0217AF2 /* RCTUIManager.h */, - B6E0B583D7630D9E06B8B31A2AC8E9AF /* RCTUIManager.m */, - FBE2EE1238802256D8C114B7D3785328 /* RCTUIManagerObserverCoordinator.h */, - 3C2607EDF9EC549569171AE3CDECF5D6 /* RCTUIManagerObserverCoordinator.mm */, - AA468CE72F78D8E290F78AED79B788D5 /* RCTUIManagerUtils.h */, - 5B4127266B5EC6DD89FE1F94CCA4B6A1 /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; - sourceTree = "<group>"; - }; - 8A8433F067F31E11C1170F1185538755 /* Pod */ = { - isa = PBXGroup; - children = ( - E2C2A873E82DD1D65819A907A9B45A50 /* UMPermissionsInterface.podspec */, + 3DFD64EA055EB18942E3F17304F94DDE /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 8B3692188B2FAECE0C6254862C0451EC /* Support Files */ = { + 8BB80A3AFC541A6587C0EB1DEC3EA261 /* Support Files */ = { isa = PBXGroup; children = ( - 1847C6B2B3476A22DA71286C7F85C66A /* react-native-background-timer.xcconfig */, - FFE0335CC2830147A383C618C7911125 /* react-native-background-timer-dummy.m */, - 9E4AFAF04692E7EB628AA40DA7F839AF /* react-native-background-timer-prefix.pch */, + F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */, + C75BFFAF2381944841560A7E0DDC913F /* react-native-orientation-locker-dummy.m */, + 75DBF29989ADA8C7616AC7F105CE9D8C /* react-native-orientation-locker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = "<group>"; }; - 8B7C665C2E7180D368D23E8BFD6A5DED /* Pod */ = { + 8BCEEB3D6600C2FBB5F77F8EE638D5B1 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 57AA6F21612F4E776CC7A5A35C390674 /* UMAppLoader.podspec */, + B9E91D21A3AF86FBE679D402F9D847CA /* UMAccelerometerInterface.h */, + 849DF067A0553824027C84BC0C1A09FD /* UMBarometerInterface.h */, + 0CE293A4C586EECE672A67C9E0434A64 /* UMDeviceMotionInterface.h */, + 414461A82EA3444F6A5D1E74A7C041F8 /* UMGyroscopeInterface.h */, + 65F10B2813F3BB5491C67117D19BEB2D /* UMMagnetometerInterface.h */, + 1B54297A29176503CA4448A610338DFF /* UMMagnetometerUncalibratedInterface.h */, + B1B91E7236F20BF2FCEF54D6BA674FBD /* Pod */, + 3AFDD1353BD4156B528830379A890346 /* Support Files */, ); - name = Pod; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = "<group>"; }; - 8BF4DB4ABB90C8D854D243F8B5CA1E50 /* Support Files */ = { + 8C37D369EDB736D2D9FF9A55F1A902DC /* Brushes */ = { isa = PBXGroup; children = ( - 847E5743C00A3FE878DE06813290EA0D /* RNDateTimePicker.xcconfig */, - 6E9382D2335E9D169ADEFF0B624FECC6 /* RNDateTimePicker-dummy.m */, - 184FF60F05BF3303542903463848FD23 /* RNDateTimePicker-prefix.pch */, + 33DDA7B76998A58E33B738D9F35141B1 /* ARTBrush.h */, + 5CDDDB2FC493FE58DBE223EE05AD05F4 /* ARTBrush.m */, + ADAE76A88219B5296DA02CDD4ECB2FBA /* ARTLinearGradient.h */, + D40FE7367A96160310E0FA038F585E92 /* ARTLinearGradient.m */, + A57EAC7845873FDBDBDF56091C146267 /* ARTPattern.h */, + 9EFDB3D608A8D5F202D496AC45456444 /* ARTPattern.m */, + FDD64D0F88E2C0BE02AC4EE251307A2A /* ARTRadialGradient.h */, + 2C4CD1EA00042DB134AE0FCB59D02089 /* ARTRadialGradient.m */, + B25E6C1397474967CB632772D4F63866 /* ARTSolidColor.h */, + D709AB9666286F00ED5D6D6A2F4A8D0B /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; + sourceTree = "<group>"; + }; + 8CBAD4D2E9AB353B6CE65CFFD6FBB0B4 /* Support Files */ = { + isa = PBXGroup; + children = ( + AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */, + 27B47193B9A5F70C9FC551D403944866 /* rn-fetch-blob-dummy.m */, + 8CB45594DD06C32DF7399AF19B9E20E6 /* rn-fetch-blob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = "<group>"; + }; + 8CF10FF34513FF509DBC48925E9D4F6D /* RCTRequired */ = { + isa = PBXGroup; + children = ( + 4D044C0CFBC0C0821B5697ACDCF341F6 /* RCTRequired.h */, + 8082D353BB935CBA6F286A61F7B6D013 /* Pod */, + 8892B424047C7D0329AD9CFF3868572F /* Support Files */, + ); + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = "<group>"; }; 8D4E83E8D422038BA6C1480061F6B510 /* Support Files */ = { @@ -14089,86 +13992,102 @@ name = Static; sourceTree = "<group>"; }; - 8E4133B98ABB1FED1CF4595272EE2301 /* Support Files */ = { + 8DAE3EA2B04E39CA44BE6583A2EA3F33 /* instanceid */ = { isa = PBXGroup; children = ( - 6E7A9A45C06D2CC6E7DD1085FCC88AA5 /* UMReactNativeAdapter.xcconfig */, - 1230732873EB5B79DA0BB896FAA32E99 /* UMReactNativeAdapter-dummy.m */, - 8EFABF5AA13E99C6DCE7483966E12EFC /* UMReactNativeAdapter-prefix.pch */, + CC56E34364676629C753DC57D2AA659A /* RNFirebaseInstanceId.h */, + D24747C3BEA18E87BA7491E443BE13F9 /* RNFirebaseInstanceId.m */, + ); + name = instanceid; + path = RNFirebase/instanceid; + sourceTree = "<group>"; + }; + 8DCD3D3B1FB5056A9167FB1EB3686EA5 /* Drivers */ = { + isa = PBXGroup; + children = ( + D0CD50DECA479B51EAB670564F7B7B7F /* RCTAnimationDriver.h */, + CCDF36D5CBA4D1EAFBFFEB6356372FF6 /* RCTDecayAnimation.h */, + 2E816A440D4FBA6227C86874FABDCD19 /* RCTEventAnimation.h */, + A1302FD8C4F8F08CA345E43026D50654 /* RCTFrameAnimation.h */, + E843670879CA7CD7B3EDC89F66951D99 /* RCTSpringAnimation.h */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = "<group>"; + }; + 8E5881FC3BEBB127BD0C286E3864D336 /* Transitioning */ = { + isa = PBXGroup; + children = ( + BE507034EC91D662EA23C3A4B8002D1D /* RCTConvert+REATransition.h */, + 8A966DDAE0BE49D85728B6C2FEA74EDD /* RCTConvert+REATransition.m */, + 51A6B5727D6DBC4C0896F3F90277D0E3 /* REAAllTransitions.h */, + 63105F52D965E142E96F80DC3CF4FC18 /* REAAllTransitions.m */, + D64AC27FE92DADF4D4A9DB08BDCF0F8B /* REATransition.h */, + 969F4338E2546A7304C7CDCDF06963A6 /* REATransition.m */, + 403F69E50B9F50E302A25797738D2E04 /* REATransitionAnimation.h */, + A8C28AB7DDB0812AAA3FD5A41BAFCD6D /* REATransitionAnimation.m */, + 3B31BEBB5858E81C44FEE36887BB30D4 /* REATransitionManager.h */, + D273679235B8B62AFE2DA61DF071BE70 /* REATransitionManager.m */, + CF6589B4CFEA7DB445518B81CCEA6184 /* REATransitionValues.h */, + D7F56A33A983244B08AECC4C4EEBDAAC /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = "<group>"; + }; + 8F4D25E33086BBCBB9C602AEABFA41DA /* Filters */ = { + isa = PBXGroup; + children = ( + 125B7D56D814DA4086EBBB0FEF39A12C /* BSG_KSCrashReportFilter.h */, + 405FF0F93527FF8267B2465C55E555BA /* BSG_KSCrashReportFilterCompletion.h */, + ); + name = Filters; + path = Filters; + sourceTree = "<group>"; + }; + 8FC1AD4B125CE195870FF370752E772F /* Support Files */ = { + isa = PBXGroup; + children = ( + 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */, + 8FB827D3E661A96BF92BFE5C69281BF0 /* UMPermissionsInterface-dummy.m */, + 45E52094466A02ABEAB86B29FE43D4F0 /* UMPermissionsInterface-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = "<group>"; }; - 8F548AE002AD1E7A584BE81C8352060B /* Support Files */ = { + 9003E6912F730E6E5B567DB34ECDDF76 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 0FF95F0DD796C9317D6EEF4ED17B82F0 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 4B38030C6457042B7E387FF284371FEA /* RNImageCropPicker.xcconfig */, - B468703EF6A868656913D9128FA6C816 /* RNImageCropPicker-dummy.m */, - 1E942D42A0AFC37106633395F03996A4 /* RNImageCropPicker-prefix.pch */, + 447B8DCBF522A8F84954BC51ACD0569E /* RCTVibration.h */, + B40930E9744DF8E998CB3411B59C0FF3 /* RCTVibrationPlugins.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = RCTVibrationHeaders; sourceTree = "<group>"; }; - 8F9983EBD4E9B74E60EC9A9EF0160226 /* Support Files */ = { + 906A2B62F8F15AB2E4172B4607522D31 /* Pod */ = { isa = PBXGroup; children = ( - 3F3BE8EF729EEFBEE87B89FB9A688FBD /* React-RCTBlob.xcconfig */, - 2EEBD729D7FE97E7BB56701E5707CB0C /* React-RCTBlob-dummy.m */, - 29A25EAD683E0A6041E89DADC7DE240A /* React-RCTBlob-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = "<group>"; - }; - 904EA72103A0D905D263CC6004BF7711 /* Singleline */ = { - isa = PBXGroup; - children = ( - E9CAA18AA8123A3DB5C5CEC024D4F408 /* RCTSinglelineTextInputView.h */, - 728156DF3EEBC775292D8814D17E8D48 /* RCTSinglelineTextInputViewManager.h */, - C9A2DEE319766A8749B0B5CFA95F0B5E /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = "<group>"; - }; - 91403F3C180002CA954DA03DA38D9B32 /* Pod */ = { - isa = PBXGroup; - children = ( - DCB9FCCAB7C7A7ADFBD3B5840345B115 /* LICENSE */, - 04E5CAF5FDF2541E751901FE0B665F3C /* README.md */, - 0AB3F97D5621B9EA82EDDDB3AF335077 /* RNDeviceInfo.podspec */, + 7165422E905D316EE0E45C1A6C16A45A /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 914844398E570D06280F83BF12D0B578 /* Pod */ = { + 92344FD2880D552CC774559E9A281B04 /* Reporting */ = { isa = PBXGroup; children = ( - 79EFBC166E91C5EBAAA8AB0F0F7E7D4A /* LICENSE */, - 6625698EFE2D0EDAB5A9C8BE25A6E35D /* README.md */, - 16FDCAAE6F02F3ABD1B96D583CE5999B /* RNGestureHandler.podspec */, + 8F4D25E33086BBCBB9C602AEABFA41DA /* Filters */, ); - name = Pod; + name = Reporting; + path = Reporting; sourceTree = "<group>"; }; - 91DB5BD0A8C5B735EE924B031D01BFFF /* Support Files */ = { + 9274FB8C8494DC72EE774AB0D85D7ACD /* Pod */ = { isa = PBXGroup; children = ( - C48FA75930C200E93FBAE049791C1CAA /* RNScreens.xcconfig */, - EEAF9A2F35338B674A9F23BE5537DF2F /* RNScreens-dummy.m */, - 9156F13D71E1B85F0D1558E2AD650766 /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = "<group>"; - }; - 91E91179A0390A0599A81F524E278F39 /* Pod */ = { - isa = PBXGroup; - children = ( - 38FC571658638D8A3F5B74B23C77C79A /* EXLocalAuthentication.podspec */, + 7D8CAA90AA7C25E6506E2DD0193F8060 /* LICENSE */, + E316BF26AE4B9F5479B1EC5A92FAC816 /* README.md */, + 635C8A490489A52B4F3B315065E607AC /* RNReanimated.podspec */, ); name = Pod; sourceTree = "<group>"; @@ -14436,78 +14355,28 @@ path = "Flipper-RSocket"; sourceTree = "<group>"; }; - 93BE4AF1FF9E8425B2A5F3E22CB4A507 /* Handlers */ = { + 9520B0DBBFDC4748F38F679B65DB42FD /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - 230529220D67496D3FE2C6F935DA5DF5 /* RNFlingHandler.h */, - 531DC503CE497FEFFF6D249545B5C40D /* RNFlingHandler.m */, - EA295EE5938B4F0CC4EB765C948426F1 /* RNForceTouchHandler.h */, - 114720C62A8083FA6E1CAC4FDCB5AA47 /* RNForceTouchHandler.m */, - 0E0309A5FFC71EA2F72127E3E0A4755C /* RNLongPressHandler.h */, - 30CE21B672A1DA765D0CC772CE042C9B /* RNLongPressHandler.m */, - AB0BE974166196D05E4D701E3EF40D0C /* RNNativeViewHandler.h */, - E9F77B6F48D4BF691C865AA8707E3905 /* RNNativeViewHandler.m */, - F31BC26CAEBBD69D8236CB7C324424C3 /* RNPanHandler.h */, - BC28A84E005A3F640663857A5174AFB9 /* RNPanHandler.m */, - DE4914C39A474FEA542A599FA1359394 /* RNPinchHandler.h */, - 8CF500C0C197531A39634EA183DF8298 /* RNPinchHandler.m */, - 90FF22EF610EFB669A5BE580345C18D8 /* RNRotationHandler.h */, - CC2E34550AF64E3D44B047C4BA76E9DA /* RNRotationHandler.m */, - 8AD39818092F0D18054A817784F8F211 /* RNTapHandler.h */, - 3B8289262152BE0ABEB6FC0BCC16E7DD /* RNTapHandler.m */, + 71BA7B037466AF872EABED21FFCA4F3D /* RNCAsyncStorage.h */, + DEF4697C35F84407BB74729FC41F9B7B /* RNCAsyncStorage.m */, + 140F3C7FADB9625463231A741F09EDDA /* RNCAsyncStorageDelegate.h */, + BE577E764A59F5994C39273524AD5854 /* Pod */, + A59C364D559CA50E9E8C97C2BFDFC9CB /* Support Files */, ); - name = Handlers; - path = ios/Handlers; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = "<group>"; }; - 94A66B0888D250E2045DAD98B7C09860 /* React-RCTNetwork */ = { + 9531F5768A307B5B49530A3E3A8CD01E /* Support Files */ = { isa = PBXGroup; children = ( - 6AD4758068A2DA90FF3E153F456A00FB /* RCTDataRequestHandler.mm */, - BB51F09C00EC67FF83319D325DDF2EDE /* RCTFileRequestHandler.mm */, - 887826002D02BFCC7CA9B7E8653787AD /* RCTHTTPRequestHandler.mm */, - 25A4521AEDF5DB7E2947E852A83F7979 /* RCTNetworking.mm */, - 284703F4AE62E032976179B75B48AB6A /* RCTNetworkPlugins.mm */, - AC5A45EEC900C2AEDD220E99C42F75E2 /* RCTNetworkTask.mm */, - D21ECA5BB75C00B48BF1F82ADA6438A6 /* Pod */, - B3E4760EA4EF222F60347113E73BB1AB /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = "<group>"; - }; - 94FFDCF9E717825BBD7519EA339244E7 /* Support Files */ = { - isa = PBXGroup; - children = ( - DF765FEC13D8DF40A9AD2059A97D26A6 /* React-CoreModules.xcconfig */, - A8008C2A3648EB9169EDF02882F4F9DB /* React-CoreModules-dummy.m */, - 754F90B45CB7AE3FDE75B51E0EFA0640 /* React-CoreModules-prefix.pch */, + 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */, + CC60C4C23BBB6DFBB67F6C49C13440A5 /* React-Core-dummy.m */, + 201E31C2C549AC2848CC0559FB4F8371 /* React-Core-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; - sourceTree = "<group>"; - }; - 95595AEF0D3AAB1E047A9D3D43A022DB /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - E41D4705B2AF08A92E7AA63A1FE5E258 /* RCTSettingsManager.mm */, - BF8128D5B323B8A9C9ABA1B70795E667 /* RCTSettingsPlugins.mm */, - E10C2DA576ADB97D59DB22573C83BA47 /* Pod */, - EE7A13395E047C70188E0BB4E4E9EBBF /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = "<group>"; - }; - 95D99E3DA3098E4F2534524FB16D767B /* Support Files */ = { - isa = PBXGroup; - children = ( - B7642B6414675E0BA93185302889C2C0 /* react-native-slider.xcconfig */, - 7DB4AA7C7F31AB538F09CA5E630913AC /* react-native-slider-dummy.m */, - 495865D3D60F68840B36129479BD0EE9 /* react-native-slider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = "<group>"; }; 9613802C46B079F4BF39D050F5CC18A3 /* mux */ = { @@ -14524,46 +14393,68 @@ name = mux; sourceTree = "<group>"; }; - 9782E3122F1ED1FB20137F1EAC3F3C1E /* Pod */ = { + 96386F5ECE4964283EB5AAC739C9389F /* Pod */ = { isa = PBXGroup; children = ( - 441BB89DF713814C009A35EAD6428445 /* LICENSE */, - 84A906EEAD17B92664800378289F8A3E /* README.md */, - 2686F76D2F4EEDD3FBF450F8FE6B69BD /* rn-fetch-blob.podspec */, + 5B1951C1771CD2415AA7C45609EAD28E /* RNFirebase.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 97C508A21587C83737FACDD781418F70 /* Support Files */ = { + 9667D03AE211B034ED4BA1130F8CF72B /* RNBootSplash */ = { isa = PBXGroup; children = ( - CB9883DE9B885D17CF6D276905C31139 /* React-RCTActionSheet.xcconfig */, + 83CDDE079106BB87DDEE8D61B3FBFD01 /* RNBootSplash.h */, + 4F4BB708C72F52907ACD07FE64B773D5 /* RNBootSplash.m */, + 6E0247C37146B20A9E4F1B8571B8ACE2 /* Pod */, + 341A499AADE3A8BFFD90E5EC3690C621 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = "<group>"; }; - 97E0EBC267B44710E326EBD008BFA6FC /* Support Files */ = { + 972B76EE04253E45D40FBCA8CA367118 /* RNCMaskedView */ = { isa = PBXGroup; children = ( - 51E59B35956E3FFBB857B4A547442403 /* RNFastImage.xcconfig */, - 548A65611B99CE2BB5D24D446CCA793C /* RNFastImage-dummy.m */, - AD8A209E7837A1043F88C63C4B960221 /* RNFastImage-prefix.pch */, + 1BFEA28EBCFB4C01668FFB09B9DEBDCF /* RNCMaskedView.h */, + 7FFF036081EEA50E6911CC3C72539F1C /* RNCMaskedView.m */, + 03318E53C1FAE6FEF2FE77CC95DBFECF /* RNCMaskedViewManager.h */, + 8126B9B4A24FA3479FB554D1A0C8D1CA /* RNCMaskedViewManager.m */, + 99B6F142A98382EDA8D050D42F53C91A /* Pod */, + 3DAFC0DFB604B76B028C5C20BAA6AD6D /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; sourceTree = "<group>"; }; - 981D5D6DDD1A98A905410F834E6A2AD6 /* react-native-background-timer */ = { + 9774FAB05080360E08FD24A680CE9B1D /* config */ = { isa = PBXGroup; children = ( - 3908931CC3AD282C86A05F921B3D10D0 /* RNBackgroundTimer.h */, - 8DFC07961C9B216F840267835EAA2811 /* RNBackgroundTimer.m */, - 2C5FBD0031616A28ABD698198FD57D34 /* Pod */, - 8B3692188B2FAECE0C6254862C0451EC /* Support Files */, + DEB422D3B76E77B2B06F217E5FD64CCF /* RNFirebaseRemoteConfig.h */, + A6492D18FCBF482B6DBECD94BCFE3721 /* RNFirebaseRemoteConfig.m */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = config; + path = RNFirebase/config; + sourceTree = "<group>"; + }; + 97AAF911130B9475DD3F2B13B97DC4C7 /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + 59B84CA60CCBACB2094EC597E1D54171 /* UMViewManagerAdapter.h */, + A03BE085C2E0CAA3999ED8B435C119A8 /* UMViewManagerAdapter.m */, + ); + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = "<group>"; + }; + 97ED2B9EAB91405A7030E427358C76EE /* crashlytics */ = { + isa = PBXGroup; + children = ( + 950FA3E66045AE57058D56A5E8E11B95 /* RNFirebaseCrashlytics.h */, + 9F91FBD8C02402B3464620BBA5223D9D /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; sourceTree = "<group>"; }; 989320F3C6C25EB52665992A2024CF1F /* Network */ = { @@ -14592,6 +14483,26 @@ path = "../Target Support Files/CocoaLibEvent"; sourceTree = "<group>"; }; + 98A1BE927C4F65B168E5202DA19ACE90 /* EXFileSystem */ = { + isa = PBXGroup; + children = ( + 58351C11CCD5FF39C4071FB4205A6F18 /* EXDownloadDelegate.h */, + 3489CB37C9B3ACDD44CF38EA4DD561B0 /* EXDownloadDelegate.m */, + 30169015F3924A9D83E887FACFD06434 /* EXFilePermissionModule.h */, + 21885A4ADAD17766C17F964FF29C82FE /* EXFilePermissionModule.m */, + A803CD8A3F7CDDDA5937C6C863FFB920 /* EXFileSystem.h */, + 26F445F6D03A3A82E37268A22BAE1C95 /* EXFileSystem.m */, + 8CB519AF1317C224A0079038A6E765DC /* EXFileSystemAssetLibraryHandler.h */, + 0CCA1E68DD17EC16118BF6A816B65986 /* EXFileSystemAssetLibraryHandler.m */, + E8849E3901042473FCB415D574D15750 /* EXFileSystemLocalFileHandler.h */, + E0DFA6854FAB0AE1641D77286FC5DDE3 /* EXFileSystemLocalFileHandler.m */, + AA7701B2EFA213169AF63ADB928B6CAD /* Pod */, + 83A4A18DC18B9995DB542CC1C225F53A /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = "<group>"; + }; 990F4BECCFFD230DA6A99C0345B9449F /* FlipperKitLayoutPlugin */ = { isa = PBXGroup; children = ( @@ -14640,6 +14551,15 @@ name = FlipperKitLayoutPlugin; sourceTree = "<group>"; }; + 998B5490D353010997DC77BBCBD773F1 /* Support Files */ = { + isa = PBXGroup; + children = ( + D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = "<group>"; + }; 99B24914623FDAF5E10DD8F10C175D91 /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -14657,65 +14577,53 @@ name = SKIOSNetworkPlugin; sourceTree = "<group>"; }; - 99D62C85202B21DF9D714A68F5C2821B /* Support Files */ = { + 99B6F142A98382EDA8D050D42F53C91A /* Pod */ = { isa = PBXGroup; children = ( - D05016C508DC37AF7CB22D455B5E7617 /* EXAV.xcconfig */, - 8DCE5361433B4DC46F98F6EA67124F9D /* EXAV-dummy.m */, - 54E6565DCEDC1F296DBC2C558B1CB935 /* EXAV-prefix.pch */, + 08993EFE6B43F419C92CB656C14C9F84 /* README.md */, + 852FE7BB7610FE35CE2C1A24B3059BC2 /* RNCMaskedView.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + 9B16CDD36FC0DC8908145BE02DB100C6 /* UMCore */ = { + isa = PBXGroup; + children = ( + F2F118877102B5F49DE30F73F4133164 /* UMAppDelegateWrapper.h */, + BD8751552E35893BDF83F6025B06D03C /* UMAppDelegateWrapper.m */, + A77464EF37DA5927C152BFF014210D1F /* UMDefines.h */, + 2767680CE41ED19D766E69468F280AFD /* UMErrorCodes.h */, + BA9D2FECCB6B5D2CFEF057A94D4FCE94 /* UMErrorCodes.m */, + E1C0FD671C82989A3D3C58576B986687 /* UMExportedModule.h */, + AF4B0DD7FBEC49BA7A3A041162A97120 /* UMExportedModule.m */, + 22F8EA0880333E9DA3ED04ABBA625281 /* UMSingletonModule.h */, + AD1C24B6F59776BBD97B229E9442BEC2 /* UMSingletonModule.m */, + D2EAAB1D38023ABD96763E62FA496CC3 /* UMUtilities.h */, + A581FCB78821DDAE95B2AE064BE4DC45 /* UMUtilities.m */, + F2CD6713AD3426DD32DF3BCAA79C2CFA /* UMViewManager.h */, + 94BD5EC2A42468D9F9E45F78B2A3BFAE /* UMViewManager.m */, + B962BB49E4E0F8E072980BAF394911A8 /* Pod */, + 6282EA83099DA2296D034FA6402D0A41 /* Protocols */, + A6821817905619D00A6E31207F8C06B5 /* Services */, + 5C180598BE03068B5075DC5B94B440FF /* Support Files */, + DEC8CA3B88E8770615410AEDB283CC7E /* UMModuleRegistry */, + B193094453D2E436B6A6DC61F359524E /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = "<group>"; + }; + 9C096D918B3C41A584D8DEB2F10A17F6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9781C958ACDEA2F0867D3700ED83C082 /* Yoga.modulemap */, + 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */, + D07EC03A0A4F60605B5636E6D82BDA69 /* Yoga-dummy.m */, + 0CA929BB715BCB547AF38F8F94645458 /* Yoga-prefix.pch */, + 84A91812CFCB70941FF3D33C6FA8F1D6 /* Yoga-umbrella.h */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; - sourceTree = "<group>"; - }; - 9A584A918B051A1FA0FBE160A8F9176D /* Support Files */ = { - isa = PBXGroup; - children = ( - 68B4E0C2B52D4FE00EABDB34434D232F /* react-native-cameraroll.xcconfig */, - 8C2A58DF25870183EFB662264150C3C0 /* react-native-cameraroll-dummy.m */, - 8593CB51AFEBC8938D84F426D41BCE93 /* react-native-cameraroll-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; - sourceTree = "<group>"; - }; - 9A8571433ABA92E38AF77C0814023799 /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - E2DB758AF57D8D5A188AFE035A35C473 /* FBLazyIterator.h */, - 33D95BDFCF516395A611299362841842 /* FBLazyVector.h */, - 42EAFF457EEECF5EF88D2D6CC1E83CE2 /* Pod */, - 09DFD85426871C1F945B131EDD0215A9 /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = "<group>"; - }; - 9A8D681FA1FB6D2372FD42CE7FEFB4E0 /* Reporting */ = { - isa = PBXGroup; - children = ( - 3BD9DF6BF9FF50FC004CDC1DDCD65DAB /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = "<group>"; - }; - 9B9A0AB7D38D784E15AE95835DE4DA7B /* RNScreens */ = { - isa = PBXGroup; - children = ( - 9015B60F6E82801E42FC2A6CE9D47277 /* RNSScreen.h */, - BF9839EEBCBDE13A9BEEB079C11748CC /* RNSScreen.m */, - B33755D1B4082600047A0F3D50E50CFA /* RNSScreenContainer.h */, - E7051E62EA10F5A1688EE25CBA946028 /* RNSScreenContainer.m */, - 85E93A08DAE3DA2001C2932C4B063212 /* RNSScreenStack.h */, - 70C9A99E9FF2B23FF14FEF60FF1BFCFB /* RNSScreenStack.m */, - A8E2EB32A486C6F16DA6A1DE47AD4C26 /* RNSScreenStackHeaderConfig.h */, - 082538BE48CF6F5FB00C13256377797B /* RNSScreenStackHeaderConfig.m */, - 7DE48F489A1DBD7FC281B8BFB30B9838 /* Pod */, - 91DB5BD0A8C5B735EE924B031D01BFFF /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = "<group>"; }; 9C261E7F7BC3443F684F4A8121957597 /* Support Files */ = { @@ -14728,17 +14636,6 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = "<group>"; }; - 9C560BCDAC6F754E85C508CFA143A25A /* Support Files */ = { - isa = PBXGroup; - children = ( - F01C917A36AC6C408C0A8820274D6289 /* rn-fetch-blob.xcconfig */, - AAB8F77D50A37DD55F97E7E8D029A44B /* rn-fetch-blob-dummy.m */, - BEF008EB8566C864335F8BD6BC468ABB /* rn-fetch-blob-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = "<group>"; - }; 9C5F6E097292962D3825124AC6B862A0 /* libwebp */ = { isa = PBXGroup; children = ( @@ -14751,124 +14648,50 @@ path = libwebp; sourceTree = "<group>"; }; - 9D1828AA92DC6E0FA7B099C117B69796 /* Views */ = { + 9CAFE2274405B62D57C3AB6665CE817A /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - F70D4CC6A086B97094BFC4397D6BE441 /* RCTActivityIndicatorView.h */, - 4B0A207F5DECC90BA9748FB44FE35C67 /* RCTActivityIndicatorView.m */, - CA077E51C7E5706C2C646C597E8971EF /* RCTActivityIndicatorViewManager.h */, - 718F0A5747B5FF095A3A0C2CCCA85379 /* RCTActivityIndicatorViewManager.m */, - D4B2EE0A45091956F00825D59910F8EC /* RCTAnimationType.h */, - 659B8AFFFD1878996F6262A0F1A9FCF7 /* RCTAutoInsetsProtocol.h */, - 88B4E0907E49353C8762DA9148CB0D9F /* RCTBorderDrawing.h */, - 28506A3EC5990915B6009CD4332BA1A7 /* RCTBorderDrawing.m */, - 51C13ACF4C333704044F230487F185C5 /* RCTBorderStyle.h */, - C34E79FB63B5C9B536E757A351874A8A /* RCTComponent.h */, - BD32ED358CE32069FAF5DF013F7EDB36 /* RCTComponentData.h */, - 38F39BCA112CDB5A3FE2B699C153AD24 /* RCTComponentData.m */, - 845C6A19B3074C49A09BCB6248F16EA5 /* RCTConvert+CoreLocation.h */, - B046608AA8A7D8A59531002F3211BE4C /* RCTConvert+CoreLocation.m */, - 4655428B02A1A4541AB1D8DE42C67949 /* RCTConvert+Transform.h */, - 0565C8582A36374220B1E5EE36E36BEB /* RCTConvert+Transform.m */, - FFBC35E1ED44B95269A947A8B931A5EF /* RCTDatePicker.h */, - D39C1ADDBE7C4E3812E0AE674209FBB8 /* RCTDatePicker.m */, - D035F17BAE0EC5F3DF65863518DAE9DE /* RCTDatePickerManager.h */, - BA1B06059B19F22260FF27BCD9B70558 /* RCTDatePickerManager.m */, - BEEE1539257DAA24137CF84BA756B2F3 /* RCTFont.h */, - 132BB75E02D031FB28B8179A0D011290 /* RCTFont.mm */, - 40E6ED70362AE84D52339DFDCD6DEC4D /* RCTLayout.h */, - BEB33D2C4ADF660964E3F5A82B96D7C1 /* RCTLayout.m */, - 3224C69845F199046B556C08D2ADBA96 /* RCTMaskedView.h */, - 3CE9F4ABCA1B6001FD7755772C259C29 /* RCTMaskedView.m */, - DCAB7BBA6B2EAFE4A03E8253AD541AAC /* RCTMaskedViewManager.h */, - 650D37CD871A2C3CD4502DF5708EDDFA /* RCTMaskedViewManager.m */, - 8908F075787A5C664E4F06456500EA50 /* RCTModalHostView.h */, - CB34DCE889FBFA2EE97AA7A18364A213 /* RCTModalHostView.m */, - F5FD3E1D74D3259FA481688301021082 /* RCTModalHostViewController.h */, - 96B9B8CD197067EDE176D4D55AB7C171 /* RCTModalHostViewController.m */, - A3A2A948A775EBA953523572A01A49AA /* RCTModalHostViewManager.h */, - 7D9F1CB2823C667DE211588F81B7E924 /* RCTModalHostViewManager.m */, - 0F2B7C17FD11CCB4337CB031447D5287 /* RCTModalManager.h */, - 0D701F5A644EF76C88AA85644359ECD4 /* RCTModalManager.m */, - 8B48725A57C02BE892258A5F0E381FFD /* RCTPicker.h */, - A421CD7BD3D018153A06448950F75D82 /* RCTPicker.m */, - 50E6ED3E1BF88E5E08B9B9EE5B8FF6C2 /* RCTPickerManager.h */, - F7C1A66F01155C20DD7129BC50B2AAE7 /* RCTPickerManager.m */, - 48A09B7FA3DD7062A06F4285D4E67E5D /* RCTPointerEvents.h */, - EFC964092A03DD1B8F70526CE98F50B4 /* RCTProgressViewManager.h */, - 7CB2F905B2A1849FB7D8078F2C1203A0 /* RCTProgressViewManager.m */, - 792A074CA8DB2DC75B300A6053CE8C1D /* RCTRootShadowView.h */, - DDC37DDB0719CCA56D903B6D979E7AE3 /* RCTRootShadowView.m */, - 7577C88EEFDEFCE52F70EC5B346286F0 /* RCTSegmentedControl.h */, - 8812DA8998BC9C1EF976D122B2926602 /* RCTSegmentedControl.m */, - 4730CAE79DB9E448ACFBF47D5A9CF3EC /* RCTSegmentedControlManager.h */, - EB09839249259D0536286005A085F8E0 /* RCTSegmentedControlManager.m */, - 68FF22655FC4BFBC4E4778A6155ECCC8 /* RCTShadowView.h */, - 91E29A53F4EC69F389C3F573D82C0D9A /* RCTShadowView.m */, - 77193EA92359874A8A909A3F19EB06FF /* RCTShadowView+Internal.h */, - A57512E45F1B0781C9F77576467456CB /* RCTShadowView+Internal.m */, - B5DE66979ACFC098CDFA80B17DFB56FD /* RCTShadowView+Layout.h */, - 52F227FBBDB7B39C62D537ED80137800 /* RCTShadowView+Layout.m */, - 451695E95BEB3B65629C4D2E02D043AD /* RCTSlider.h */, - 974628B8ACD3D80A1B6D7318CB062053 /* RCTSlider.m */, - 288B2FD89C645557E49F695B96129A2C /* RCTSliderManager.h */, - 355DED01991AF95805580082EE4D8736 /* RCTSliderManager.m */, - 3EE9497DDA217A30BA230F090A238CC7 /* RCTSwitch.h */, - 41050FCF0778A13F7C853A6BE64BAA9C /* RCTSwitch.m */, - 2F00F28BA9A6B4D31407EB9B4FA91743 /* RCTSwitchManager.h */, - E00807D07985A020D4994F136EB84FA0 /* RCTSwitchManager.m */, - DA79BDCEE32104049B77CE508C31CE7E /* RCTTextDecorationLineType.h */, - 1EBEC90FAEC6FCB04E4466E74D48C5F4 /* RCTView.h */, - 91E98FB986B1050EDE8F591208A677D9 /* RCTView.m */, - 07C26F973618AB9F44097E0D662C8273 /* RCTViewManager.h */, - 4AAA202C801CE16AB694D62DA2603A7C /* RCTViewManager.m */, - B2B470489174C16CAFB511EF1E74C085 /* RCTWrapperViewController.h */, - 23BB6B718434B869AA1574BDD1817223 /* RCTWrapperViewController.m */, - 927951445A92363AB98995673F37BD60 /* UIView+Private.h */, - BD204FFBEA859FC24936E884BE2B3822 /* UIView+React.h */, - 0B00B20AB994D8DF90BA02B6753B4568 /* UIView+React.m */, - C626065BE080D0877225927819A96633 /* RefreshControl */, - 39E892C04282AE8D300EF2874ADB0239 /* SafeAreaView */, - D79B62FB8DCCE39587FAF72BEE64B4E3 /* ScrollView */, + 69257681AA1662D7FD8A126E8B78350D /* RCTAnimationPlugins.mm */, + 87F5C92D04AA2E6A5BA2C09C2275A5C2 /* RCTAnimationUtils.m */, + 8B06148A16E66822E0D7B561CFC1EF7D /* RCTNativeAnimatedModule.mm */, + 85677DAD4E22AAA5382ED8E3BC3CAFC3 /* RCTNativeAnimatedNodesManager.m */, + E16B6D919C776A1E17F2890C104E7911 /* Drivers */, + 46FA891290231E98AD4C1324A1D9AB7C /* Nodes */, + 32FE41D4F8F3D32878FF954773B9BDA3 /* Pod */, + A794A50EF6BFC953EF54BBC06D1B2BEB /* Support Files */, ); - name = Views; - path = React/Views; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = "<group>"; }; - 9D65EE773FA7C79A15F6799DF1364262 /* Resources */ = { + 9CB57DDB312528BA5CBC06E723A62E03 /* Pod */ = { isa = PBXGroup; children = ( - BB806F28280751390314A51739EAB720 /* AntDesign.ttf */, - D32A8531C5A84B660FDFD3B34FD6BFBD /* Entypo.ttf */, - 9F5F8BBBEEB8C43EFA9B35B78BE9DEF4 /* EvilIcons.ttf */, - E94630B1A6B17143160769E249113B3B /* Feather.ttf */, - 5FD992436AAB1A770C9940AE43E0685D /* FontAwesome.ttf */, - 4281C8FC4CD07B1860F60AA34369E863 /* FontAwesome5_Brands.ttf */, - 3183CB576AFDC61926A9EC4D748E02AC /* FontAwesome5_Regular.ttf */, - 3627F3B981C21B4200542013C5E9430C /* FontAwesome5_Solid.ttf */, - CAD8A69F2BC6B6A3844A53FD6E6302AA /* Fontisto.ttf */, - 16C5A63180ADEA316FC29A4B92625EF4 /* Foundation.ttf */, - C785C474B739364BA1A7201403E94C18 /* Ionicons.ttf */, - A03ED0B23682C26061FC7A1BC1C4C227 /* MaterialCommunityIcons.ttf */, - F2E46B32113E903E5A2A9AE6DB1032FF /* MaterialIcons.ttf */, - B95C75C36315816DE5B27F64F845087A /* Octicons.ttf */, - F8BBC38F871B68D71A37F1C564F6AD33 /* SimpleLineIcons.ttf */, - 8DB523F3062331CFA4A9769A4D695450 /* Zocial.ttf */, + F9522507026DB193E512A8E014D681B2 /* React-RCTLinking.podspec */, ); - name = Resources; + name = Pod; sourceTree = "<group>"; }; - 9D6DB9630D9AD1182F07474764695EEE /* Support Files */ = { + 9CD2C11FDE2DF9B15C7996D7296B5456 /* Support Files */ = { isa = PBXGroup; children = ( - 95B08E0DE61263470F88105482BD8162 /* Yoga.modulemap */, - 341402BAC319CA956870770E48DCB3CC /* Yoga.xcconfig */, - 92B1F88420B5770F50963F4972B2105D /* Yoga-dummy.m */, - 7E46F8999705950D8DE71D9DF55BA3F7 /* Yoga-prefix.pch */, - AFECC51B07E34A8F3B2628E70F3F713F /* Yoga-umbrella.h */, + 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */, + 4F672DB4D92F66DE84FD03E7D200DE65 /* UMAppLoader-dummy.m */, + 5540E9A88E41B5FBCBD645E6BE4B9B72 /* UMAppLoader-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + sourceTree = "<group>"; + }; + 9DCC93BF7F53637CB68C43A583C73448 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */, + D17C3735E61F4FB2ACCB176EC13A4190 /* RNUserDefaults-dummy.m */, + 7CD2EA199FD310DC921E66C50B51DC73 /* RNUserDefaults-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = "<group>"; }; 9E4B57EB405798E7F6F950ED64431D66 /* decode */ = { @@ -14878,17 +14701,111 @@ name = decode; sourceTree = "<group>"; }; - 9EFFB280563B4F01586212077EE7CAD6 /* RNCAsyncStorage */ = { + 9EB3A0469E2C86F327A033DBD1FD4F40 /* UMAppLoader */ = { isa = PBXGroup; children = ( - E1BBF166CBC50CC7544F76B3018AED1D /* RNCAsyncStorage.h */, - 10948D14C4E7407ECEE6A3F05531E47B /* RNCAsyncStorage.m */, - A57397291785F67E789FFAF67EE42D81 /* RNCAsyncStorageDelegate.h */, - 393CB78689F70166F7FCA41F7CCE4A03 /* Pod */, - 1E235FFD615940EFB0329F71C57CACC1 /* Support Files */, + 3807015D1473BCE97EBCD824F4768D95 /* UMAppLoaderProvider.h */, + D78966FD8B3B4035E81DC0546AA2E366 /* UMAppLoaderProvider.m */, + 0781F43E500DC52C1BF9264E02070D34 /* Interfaces */, + C617BBE7816A81E36CB3041070423444 /* Pod */, + 9CD2C11FDE2DF9B15C7996D7296B5456 /* Support Files */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; + sourceTree = "<group>"; + }; + 9EC51E4D0DE5067BE5A94F3989AD10BD /* messaging */ = { + isa = PBXGroup; + children = ( + 6D89DE4A9E5689C45C23744162FF7B0D /* RNFirebaseMessaging.h */, + C68C178CF4D65216F2D9DACEAA476D1B /* RNFirebaseMessaging.m */, + ); + name = messaging; + path = RNFirebase/messaging; + sourceTree = "<group>"; + }; + 9F17B9A85DBC2F03DD64744A9DFED441 /* Views */ = { + isa = PBXGroup; + children = ( + 22F9465904A9EF8D7F027216ADBAD985 /* RCTActivityIndicatorView.h */, + 4FFC168E8AAAFFC31E531B9F8EF58A2C /* RCTActivityIndicatorView.m */, + 6A53285CF74D6D28B879D3E7A6A7497A /* RCTActivityIndicatorViewManager.h */, + 4049EA977C8B11EC8AB6CE994017B186 /* RCTActivityIndicatorViewManager.m */, + D9107F10343A9D0842D5085B25F198F0 /* RCTAnimationType.h */, + 4442821F5922C2837AF490FF6733A42B /* RCTAutoInsetsProtocol.h */, + 0ABC7ED6892A1D14E1B7C12C170D4345 /* RCTBorderDrawing.h */, + 6C86C06DD06CDAB3A0E9C5D8B39F53D1 /* RCTBorderDrawing.m */, + 7F0E1885FF6218CDFE9982E05F1A5588 /* RCTBorderStyle.h */, + E6358156D78B68B00D4BE4D149283F3A /* RCTComponent.h */, + 014FD149D02644CEE876F548EC93DB43 /* RCTComponentData.h */, + 01DC61744399BD2FC81739D0D16C7640 /* RCTComponentData.m */, + 4A060F3AD7FF09042B53176DE4F6BE83 /* RCTConvert+CoreLocation.h */, + E749EFFD4D169830F385E39E74FEEAE2 /* RCTConvert+CoreLocation.m */, + 852DDB57329071FE7E417C84D72D8048 /* RCTConvert+Transform.h */, + 490FB0A3ECA38BAD6E8E1167DAD77439 /* RCTConvert+Transform.m */, + 92B46344955C5783FCE009877CFDE98E /* RCTDatePicker.h */, + E434EC2FB629FBB95FFA4D9637BFFBC6 /* RCTDatePicker.m */, + B35CFDE05E5FE5FAFAC03053278BEC26 /* RCTDatePickerManager.h */, + AC334934F62742F915EBBBECD557BA52 /* RCTDatePickerManager.m */, + 7AD27C318E641AEF3FEF91B013B97BEE /* RCTFont.h */, + 72E407D70F10CC8ADED44E16BD591EA9 /* RCTFont.mm */, + 07EC667309D8613638DAC8246AD6FAFD /* RCTLayout.h */, + 60635D6B0CBD0F7C59C17DF1470E9A88 /* RCTLayout.m */, + 4FD3C5F2BB3CAF7B49F02185D0568A7C /* RCTMaskedView.h */, + B7EFEB5088F345DB3CAA9406AFE2B53B /* RCTMaskedView.m */, + 47E8087BF3CD1AC8E9B10155B51E4636 /* RCTMaskedViewManager.h */, + E3F7D9AF8CA85FA31381F3C1E5A53EEB /* RCTMaskedViewManager.m */, + 62BC3E74BA827A2EEF3D1A1840C389C1 /* RCTModalHostView.h */, + 237F3148163949A0F39743C8DE76F8ED /* RCTModalHostView.m */, + ACD580006324A9490802733D59817A1D /* RCTModalHostViewController.h */, + 0556DB0C37E1FB6783E6ADB0D5A4AF0F /* RCTModalHostViewController.m */, + 24C36A97CAC32C557FFA180623410217 /* RCTModalHostViewManager.h */, + D5E964FC44F2AA7D4C3EF7A41690D224 /* RCTModalHostViewManager.m */, + 3A6D3E35BECB150CD5F980483BC52243 /* RCTModalManager.h */, + 858D05B7E99279A54826542B1B5D68B2 /* RCTModalManager.m */, + 01AE0B052526B55F3E3B0A632AC1A9AD /* RCTPicker.h */, + FB4644FF07D75BA088A2DC60B5CF79B5 /* RCTPicker.m */, + D8B10E7B4093EA180B50CC5E3CED277E /* RCTPickerManager.h */, + 8C8A5F2C9FFF91B5BC14FCABE9FBD6CA /* RCTPickerManager.m */, + A27F1F03F7BC60CAAAFB4C8FF1386CAA /* RCTPointerEvents.h */, + 9AE9D6D7F0077A5B4EDED9DB57BCFD8A /* RCTProgressViewManager.h */, + CC4B27BF8CC6D6FBCA5B4FB3FF957EA7 /* RCTProgressViewManager.m */, + 16F0331910FDB15B21D137B5FFB94526 /* RCTRootShadowView.h */, + 7892AF4AD3191D445D336955F63664EB /* RCTRootShadowView.m */, + A462A2E1387C3E05B13E454FD9C7C5C3 /* RCTSegmentedControl.h */, + 99E92B76B0F8521D83C293ABF6FEC47F /* RCTSegmentedControl.m */, + FF265AB52B23A7E06EB3545394C853D7 /* RCTSegmentedControlManager.h */, + BBE416D50F6F76A7D7A8C9AF48F18D14 /* RCTSegmentedControlManager.m */, + CA0E451936088034A8C77715E4FCCF7B /* RCTShadowView.h */, + C5EF509288FDF5231D590D463F153A7E /* RCTShadowView.m */, + 2E426055F0DD1A897CF3CCD3618F3143 /* RCTShadowView+Internal.h */, + 7B0F1967BFB375D4506E99B8131B2519 /* RCTShadowView+Internal.m */, + 770471FC3A474BFDD86AE79038B839A3 /* RCTShadowView+Layout.h */, + 72D80AB440DC034942A6E7653C1A9787 /* RCTShadowView+Layout.m */, + 7190B98479467AC89F1225BBA3158917 /* RCTSlider.h */, + FF15DF6D8710A1D72E233A78C4A9D239 /* RCTSlider.m */, + 7CD860EB0F92142ED856AA5822697739 /* RCTSliderManager.h */, + 2F975ABCF1DDACF01397576F14A4E751 /* RCTSliderManager.m */, + BFA1EF4D9A7595A080E824D231F1C702 /* RCTSwitch.h */, + 69057191801F0C641AB39F2B2D45F311 /* RCTSwitch.m */, + 9CAADB612BE02D149D127DC9EDBD247F /* RCTSwitchManager.h */, + 99410C58C15B024D3AE97571C8B66664 /* RCTSwitchManager.m */, + 69C9C6813386AF2B515E56A11F952C21 /* RCTTextDecorationLineType.h */, + 419D7F99EC80B8052540CD50BC3163FA /* RCTView.h */, + 169B70DFB43463F4A423B7467E996A60 /* RCTView.m */, + 55285077E38ED492DD98E9A9AFB8EB33 /* RCTViewManager.h */, + EB8E7291BDC9D10EED12CC97D6CD1827 /* RCTViewManager.m */, + CC8CE58616903C09E8A1A7FE375264C4 /* RCTWrapperViewController.h */, + EA9D90BC42F1BB4D0B77A103B9C3E35B /* RCTWrapperViewController.m */, + 915FFD88627EF3D1AA7B5CCC61FD9B82 /* UIView+Private.h */, + 106537DDCF13EBC231A968E46FEADCC8 /* UIView+React.h */, + 598C6FCDFC1133042CCDACFFF06EBC6B /* UIView+React.m */, + E2CB1D44D83256CB8E1922DE170EA20D /* RefreshControl */, + 3E947B14F34A43B7B8AA16F72842375C /* SafeAreaView */, + 1371DD7D731AFEFDA3832D1BB954050A /* ScrollView */, + ); + name = Views; + path = React/Views; sourceTree = "<group>"; }; 9F57B8F406A9B892DBC384C760D6FC9D /* MethodSwizzler */ = { @@ -14901,6 +14818,17 @@ name = MethodSwizzler; sourceTree = "<group>"; }; + 9F78B3429D4F86ED2AF0E4190BBE1379 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */, + 2BCA7D25953AD7B71A4DDEF46B0CFA17 /* RNRootView-dummy.m */, + B3C7C8627F248FF71686F8F15C3F7609 /* RNRootView-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = "<group>"; + }; 9FC7A13AF2880819D9834D74985F03CC /* Flipper-DoubleConversion */ = { isa = PBXGroup; children = ( @@ -14928,14 +14856,64 @@ path = "Flipper-DoubleConversion"; sourceTree = "<group>"; }; - A0D3FFE2E49B1497F7D35C80BB6905A5 /* Pod */ = { + A0658E2834376E3368980A1D16C8DED2 /* React-Core */ = { isa = PBXGroup; children = ( - 1B7DA6E29F3E1B2684FFD09CCDDAF7D0 /* LICENCE */, - DF0EFB979CA6FE4153621B3AA05D26A2 /* react-native-cameraroll.podspec */, - 076E145788164E8C598B00518B182087 /* README.md */, + C8DFAEF4A90ADEF17C27829CB82C9254 /* CoreModulesHeaders */, + F7F29CA3955DD6A9E7580B2AE49F58B0 /* Default */, + 382ACA6805D7C3F9D9D3CA567E473EFF /* DevSupport */, + F912E8ED5AFD7666BCE2AA6A1AC09007 /* Pod */, + 6DCDF5885F39E87899007D7E573BD9F3 /* RCTAnimationHeaders */, + 48153B400849E5B644FCCB7A294624BC /* RCTBlobHeaders */, + 5727CC7C56F6EF1765CCAC3649378E02 /* RCTImageHeaders */, + ABEDAF71AC3EB113DF01806FB85B8953 /* RCTLinkingHeaders */, + 6EC6ED43651444E71B6892389C47FB32 /* RCTNetworkHeaders */, + 20A93AD6805BACDE104F15F9F7D4FF14 /* RCTSettingsHeaders */, + BE77DE8335B20A606E4200851DA790A9 /* RCTTextHeaders */, + 9003E6912F730E6E5B567DB34ECDDF76 /* RCTVibrationHeaders */, + 668B7AEA7CA878FC7C3990DB38A2D2E7 /* RCTWebSocket */, + 9531F5768A307B5B49530A3E3A8CD01E /* Support Files */, ); - name = Pod; + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = "<group>"; + }; + A0D9B248FFE56CD990303E25C6C2D7C5 /* RCTTypeSafety */ = { + isa = PBXGroup; + children = ( + 710B3241F8E7A3841B4E7BFC4FE094BB /* RCTConvertHelpers.h */, + 3B47F771593D230817BD77F43EE081FC /* RCTConvertHelpers.mm */, + 8813047D84809D331325E58DD5EC4EB6 /* RCTTypedModuleConstants.h */, + C90FC567524FA661866C611EA3773C32 /* RCTTypedModuleConstants.mm */, + CE48D817A8B89392554ABCE002A6C2B0 /* Pod */, + 1C7BEFEF7EE832B9363224727E1DE8FD /* Support Files */, + ); + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = "<group>"; + }; + A1604653D63D02B350460457540D8A9D /* Handlers */ = { + isa = PBXGroup; + children = ( + 63A1581D25708EBDFC5772BEF67E7B5B /* RNFlingHandler.h */, + DF0598EC4E96419F8C605A212DF295D8 /* RNFlingHandler.m */, + 546950BF37FA3C1CC3E6F29E4B25EB69 /* RNForceTouchHandler.h */, + 0FD9D4DA6F7E2E53B3677395C1BA2F28 /* RNForceTouchHandler.m */, + F688B0918BF24C5CD7FA3EAC9AEDA883 /* RNLongPressHandler.h */, + 44AF5B74897837122FCB1F6C88514382 /* RNLongPressHandler.m */, + 0094CAE67569F4423CDD1130F0BDA500 /* RNNativeViewHandler.h */, + 8C108E508B53EF36687AA3DDC919D9B0 /* RNNativeViewHandler.m */, + 7F4B7D09C49BFC8FA482BFC030DC70EA /* RNPanHandler.h */, + 93C833509B4E07D36E97B0CAA0070E83 /* RNPanHandler.m */, + 11B241AA9D04AEF43CDC2F805CE7DCE3 /* RNPinchHandler.h */, + 3E43154BEEBFE6BDFF52BFF59F2F5CA1 /* RNPinchHandler.m */, + CD9F04093EDD60E5467A82D034D381C9 /* RNRotationHandler.h */, + 74E14DD5FD83AE8B00EBE307C8DB6C94 /* RNRotationHandler.m */, + CEB6982058473F3EB5B8DA8791154910 /* RNTapHandler.h */, + 85A6112AD0D87A2AE6595A4C3628D59D /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; sourceTree = "<group>"; }; A186D62CD75B4C2386BF882528028363 /* Frameworks */ = { @@ -14946,17 +14924,6 @@ name = Frameworks; sourceTree = "<group>"; }; - A26D78441EC305905545EC0F11757CDA /* internal */ = { - isa = PBXGroup; - children = ( - D474600A5BBBA68256658AEBABE66F84 /* experiments.cpp */, - CE304DE590FA295283860C223B5CA63E /* experiments.h */, - 7AE2D6BDEEBA98854197BBBC0B915FAA /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; - sourceTree = "<group>"; - }; A2907C13BCD5C9CCF01CBB54E748272C /* glog */ = { isa = PBXGroup; children = ( @@ -14978,6 +14945,60 @@ path = glog; sourceTree = "<group>"; }; + A3271E912B468BAE0AB8F61165F6F7C8 /* Pod */ = { + isa = PBXGroup; + children = ( + B0C916D794C3FE779C110E14F1BA1A61 /* React-RCTImage.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + A35095311AF5DBAB81EC57FA2E743FB5 /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + 67AE65B8CE4FC27E0BC463F86E0F5521 /* UMFontManagerInterface.h */, + E3B80F371ADCB8A43C619930E4C88649 /* UMFontProcessorInterface.h */, + ABB47D5BD2CA888AF3BD370CF1BD2E2B /* UMFontScalerInterface.h */, + DA2317BAB68F0AA88BEBBD1092C9C171 /* UMFontScalersManagerInterface.h */, + 26C9B498EF4A2B893A6E333055FC80F7 /* Pod */, + F9889497D7C30B996D5B89D7D01F5109 /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = "<group>"; + }; + A36DFC13B58A860E716ECB6AAF977EAF /* Pod */ = { + isa = PBXGroup; + children = ( + D9B37A15E0FA6CD3DB37864804AD63AD /* LICENSE */, + 37B4ECBC815DD0545E6E71B8A58F910B /* README.md */, + A07458186537F860067BEEAE8BBAE3F4 /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + A3B05376FDB6A26061C1294D424047E9 /* Support Files */ = { + isa = PBXGroup; + children = ( + EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */, + 6FBEC66F0A4DAC6123D0B270954B7004 /* EXHaptics-dummy.m */, + 9E4ACD2D1BB805CB1FE0BC1C0930A8E6 /* EXHaptics-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; + sourceTree = "<group>"; + }; + A3E5AFB8194CA5023FD4BDCEAA48BE12 /* Support Files */ = { + isa = PBXGroup; + children = ( + 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */, + 33C501A1A12B23A1737140EC045E0289 /* React-cxxreact-dummy.m */, + 2256E6BC3F5D843D3102CE2D02C1C321 /* React-cxxreact-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = "<group>"; + }; A4CC2200E01FC18969857656BE433289 /* Support Files */ = { isa = PBXGroup; children = ( @@ -14987,6 +15008,16 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = "<group>"; }; + A506EA6E3846229A18CA5F2908FD8312 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 8604E2095003058E3A036F99D16F0F0E /* RCTUIUtils.h */, + 468376E377086F72089C0879AD2F764F /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = "<group>"; + }; A580EE318508D231BD609293533E7D94 /* Flipper-PeerTalk */ = { isa = PBXGroup; children = ( @@ -15004,6 +15035,17 @@ path = "Flipper-PeerTalk"; sourceTree = "<group>"; }; + A59C364D559CA50E9E8C97C2BFDFC9CB /* Support Files */ = { + isa = PBXGroup; + children = ( + 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */, + A7FF20675CB7892F4FB555C651D6B8E5 /* RNCAsyncStorage-dummy.m */, + 487E52295EA3E526B90F88CD0BCEB60E /* RNCAsyncStorage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + sourceTree = "<group>"; + }; A5DFD8F3CE79E687745562BF632A87FB /* FlipperKitReactPlugin */ = { isa = PBXGroup; children = ( @@ -15013,24 +15055,59 @@ name = FlipperKitReactPlugin; sourceTree = "<group>"; }; - A7529BA2A34CB54E7D1F4D9DA0DEC993 /* Support Files */ = { + A6821817905619D00A6E31207F8C06B5 /* Services */ = { isa = PBXGroup; children = ( - 30D0D4C3F5916BC4D68C3E0DBCC9517E /* React.xcconfig */, + 53827A1BAA34745F5753731158F1E88D /* UMLogManager.h */, + 8DF6BA5C53B6AD87C2C553B17AC43728 /* UMLogManager.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = Services; + path = UMCore/Services; sourceTree = "<group>"; }; - A7CE892716524D2BE2A785D3FA8D84DE /* Singleline */ = { + A6E1F4EB28B3E74FF1696389AFBBF959 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - 6210D07A896201E57DE39B266F754E6E /* RCTSinglelineTextInputView.m */, - 086C0B6D8BCAA062779CA9D8FF3C63EB /* RCTSinglelineTextInputViewManager.m */, - C256B4AB5F0A646BC74D4EA362C2B2AE /* RCTUITextField.m */, + 45E343BF066A1B734C22DAC9C8A99AFF /* ReactNativeShareExtension.h */, + F10EED5C802D21F194A7C2B7067A4348 /* ReactNativeShareExtension.m */, + 87E89A208777EC233543893119FBC0F3 /* Pod */, + 7F1872A0F8CAB49A4B206C243EDFE667 /* Support Files */, ); - name = Singleline; - path = Singleline; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = "<group>"; + }; + A76FAA5823800F3C7AA70AA67AAB84F2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */, + D826E60BC234B9FF7AD9EE10C96EE99B /* react-native-jitsi-meet-dummy.m */, + 4BDA53501828E67B064CE59174B180E7 /* react-native-jitsi-meet-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = "<group>"; + }; + A77C70875B263AD408C51340B324E14C /* Support Files */ = { + isa = PBXGroup; + children = ( + CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */, + 7D362AD8B48052F1E3700D074E0C392D /* ReactCommon-dummy.m */, + FB45350C9346A722E8E74112BC52B443 /* ReactCommon-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = "<group>"; + }; + A794A50EF6BFC953EF54BBC06D1B2BEB /* Support Files */ = { + isa = PBXGroup; + children = ( + BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */, + 71BDCF30F98EA76B27C11322BBFACB3F /* React-RCTAnimation-dummy.m */, + F04DF803FCB058655E2F5A9DF0317A24 /* React-RCTAnimation-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = "<group>"; }; A83DA6DA2378B2318F380658C99E3BB6 /* OpenSSL-Universal */ = { @@ -15043,27 +15120,25 @@ path = "OpenSSL-Universal"; sourceTree = "<group>"; }; - A8A4DC814639097E29EFD10741861692 /* Pod */ = { + A851C3BE2903E1B060152E7E347B1778 /* Pod */ = { isa = PBXGroup; children = ( - 5069F82DA01299977ECB909E9DEF164F /* React-jsinspector.podspec */, + CBAAE47D598AD40CA21FEA1FD17438C2 /* LICENSE */, + 15AF66B81DCB43247B4AF0E6E1F095FF /* README.md */, + E7201C8B292DF82622394CC050A937B9 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = "<group>"; }; - A9EFF81D0E42440C6B2289C84A695297 /* Profiler */ = { + A8B83696E0E7CD4FB94BC72281F8A6F5 /* Support Files */ = { isa = PBXGroup; children = ( - 63AF042D109CBE04A5922843DED1D811 /* RCTMacros.h */, - D084E021ABBBB9628CD914A2E7AC035E /* RCTProfile.h */, - C74681DA52AC839FBA23E361D4BD58F0 /* RCTProfile.m */, - 8819F7EA9C0EBC09B4A9BA91D2714B72 /* RCTProfileTrampoline-arm.S */, - EAD6E7A22E4E9C658828EBAEFFAEC007 /* RCTProfileTrampoline-arm64.S */, - 73A1A47BA2AAE5E8122BE06317B1CF8B /* RCTProfileTrampoline-i386.S */, - 763282B0AA5AD125E8AEBE9BF2A379AC /* RCTProfileTrampoline-x86_64.S */, + 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */, + 7E6E3D47CFDBFB8BA79AA8C7A1BDD36C /* react-native-notifications-dummy.m */, + 954BA722E978DF07D5EA4D46C7C691A5 /* react-native-notifications-prefix.pch */, ); - name = Profiler; - path = React/Profiler; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = "<group>"; }; AA263D406301E7A33D7DB976123A6EE5 /* Support Files */ = { @@ -15077,44 +15152,33 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = "<group>"; }; - AA78A5FF4D451087D15930D8E7BEAB29 /* Pod */ = { + AA7701B2EFA213169AF63ADB928B6CAD /* Pod */ = { isa = PBXGroup; children = ( - 373F1A7D3589BEC36FAC2530D2E9F763 /* EXWebBrowser.podspec */, + 9C98121B84B233D079C9A3CE83E8708C /* EXFileSystem.podspec */, ); name = Pod; sourceTree = "<group>"; }; - AA9742F6FF1E8ED297A7834189E170CC /* Pod */ = { + AADFED7DA59B6D90F68793A8CF646CED /* Support Files */ = { isa = PBXGroup; children = ( - EAC2DE31617C3ED5E7C1BD3D966AC038 /* React-cxxreact.podspec */, + BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = "<group>"; + }; + AAE19ABFC8C24890883C42A5C0419BF9 /* Pod */ = { + isa = PBXGroup; + children = ( + 1EAA8503571E0E242647CBE65A879EB2 /* BugsnagReactNative.podspec */, + 214943770AA62639A6B229CCD7B6B50D /* LICENSE.txt */, + 33717BADD5994F7219D8F0E327A52F29 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - AAA9FB6BCF4CA1A6654123A787787553 /* notifications */ = { - isa = PBXGroup; - children = ( - 6509F99A2B26E0DC23794301BE53B4AA /* RNFirebaseNotifications.h */, - 892F5AE1354CFFA17AE1881B08925A3C /* RNFirebaseNotifications.m */, - ); - name = notifications; - path = RNFirebase/notifications; - sourceTree = "<group>"; - }; - AAD15AD7B980E7864D2AD6FF94720F28 /* EXHaptics */ = { - isa = PBXGroup; - children = ( - 5B4F226B18548F31137F52D5071D0332 /* EXHapticsModule.h */, - 175B5B65554B0DB154EFC8DBF39DBA6B /* EXHapticsModule.m */, - BC80100E6509F29197E61A46A2A225DC /* Pod */, - 52433805CAB92A5992B6CE75C66ABC80 /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = "<group>"; - }; AB3EBDE4519C9E4109B9BDD8104C2307 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15126,50 +15190,42 @@ path = "../Target Support Files/nanopb"; sourceTree = "<group>"; }; - ABE4E025EA70FECD26CC18A75425C427 /* UMImageLoaderInterface */ = { + ABEDAF71AC3EB113DF01806FB85B8953 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - 412659A6BC82EC70D3FD25F062A09510 /* UMImageLoaderInterface.h */, - B505309F1EFCD09879CE411A4B35E54E /* Pod */, - 8262554ED67B3F4FD3D4D27CDD2A0BBD /* Support Files */, + 7A2332A624FF39009F67CC3A477687DB /* RCTLinkingManager.h */, + 25A6614C17B736AC115629DC8B42E299 /* RCTLinkingPlugins.h */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = RCTLinkingHeaders; sourceTree = "<group>"; }; - ACA6E5C19DEEEC062369B82DE1C5C4E1 /* Pod */ = { + ACDDDEAAB46330E719903EA3FA9FADCC /* jsi */ = { isa = PBXGroup; children = ( - 11E028B27968896CF90EA5A8183EC38E /* React-RCTAnimation.podspec */, + 67BD8F0F05A2995677B644E6C936AA2D /* decorator.h */, + FE3950213BA5881CF4D302913A641927 /* instrumentation.h */, + A73FCFE546A7888540B3404F38F752AC /* jsi.cpp */, + 50E502CB2B7A1EB5FBF82EFA8C9B927F /* jsi.h */, + E947376F560B801ED9ED40D457FF7E09 /* jsi-inl.h */, + 264B852CD3B4070CAAE523CA5FFBEC83 /* JSIDynamic.cpp */, + 7C8EBCA61DFAD0D306BADBEE83374B50 /* JSIDynamic.h */, + F2A2A89B3C14D61E41B4004651846E25 /* jsilib.h */, + AF316CBE0CA5A9ADFD961E4ED274B55D /* jsilib-posix.cpp */, + F982B0E52AB2E4E1B81DDAB4B8F60CC1 /* jsilib-windows.cpp */, + B48188F0A471F30821CE698FBF7E9133 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = "<group>"; + }; + AF3F289D9904231702C2FF5D5FC55B11 /* Pod */ = { + isa = PBXGroup; + children = ( + DDF9A745239F49B68E9F0B8533915281 /* react-native-slider.podspec */, ); name = Pod; sourceTree = "<group>"; }; - ACFAF6C8F1777A4A09EEF313FBA7B772 /* LNInterpolation */ = { - isa = PBXGroup; - children = ( - D8E59B66F081BE096170439BC02D93F4 /* Color+Interpolation.h */, - 62EE3DA6C710D0E10B6C47CF18F77326 /* Color+Interpolation.m */, - 51A91662661DED53F35DE951BD775BF4 /* LNAnimator.h */, - 6B75DA3423AA1866F8885F8B7BD7956A /* LNAnimator.m */, - 77274FC94A05E59491311F7E744A7559 /* LNInterpolable.h */, - 97DEC7A80837A1FE22297238F6EC9BD9 /* LNInterpolable.m */, - D9CABB331FF8AD1477F019687C4F9B7A /* LNInterpolation.h */, - 069DB67EF6B2F8AA995630F6F9E2282A /* NSValue+Interpolation.h */, - ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; - sourceTree = "<group>"; - }; - AEF0015EF93EA50562D5B68D8F072E4E /* platform */ = { - isa = PBXGroup; - children = ( - 25659465B60D22385654AAE7C908C296 /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = "<group>"; - }; AFC655D94C7B80D79646B7EF072A66F0 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15181,42 +15237,122 @@ path = "../Target Support Files/glog"; sourceTree = "<group>"; }; - B0DCA7F8B4443DD7B893C9F67663F892 /* Multiline */ = { + B091B68DE214CCD2CAFE61418F7103BD /* Tools */ = { isa = PBXGroup; children = ( - 25AA79157C4CDF8239CC3B7D64E6E39B /* RCTMultilineTextInputView.h */, - B0821E0D1250AB35A564499E2E20FE1D /* RCTMultilineTextInputViewManager.h */, - 53A96DF8044C623DB08981ED6E22EDAD /* RCTUITextView.h */, + 4CBCF12FDA5C1595B8125D84D561102E /* BSG_KSArchSpecific.h */, + 257204B30240739B7940D1A0D164DF58 /* BSG_KSBacktrace.c */, + E12ABAFF3171D02F51399E7A8490FC79 /* BSG_KSBacktrace.h */, + 696B1C6494D9F35BC815B814521219DF /* BSG_KSBacktrace_Private.h */, + 7F5B93B33A7BFFBA1E32BDBAB88A5605 /* BSG_KSCrashCallCompletion.h */, + CED37D403F851EC64D48C2E6D7D32431 /* BSG_KSCrashCallCompletion.m */, + CDD786035D3470DAC419646B3A0A7E2F /* BSG_KSDynamicLinker.c */, + EBCD948AC4674100418902BD3A89E2E3 /* BSG_KSDynamicLinker.h */, + 7D5815080B2F35050BC245DC143DE4B1 /* BSG_KSFileUtils.c */, + 988BA3376729A3D79C86FB6308A2522D /* BSG_KSFileUtils.h */, + 86882A8B995EB53F1E9734757EBF13B7 /* BSG_KSJSONCodec.c */, + EEEF1FEF57923E087FF4D9233211B421 /* BSG_KSJSONCodec.h */, + 65512EE3A272FEA187D7F68BB2CBF52A /* BSG_KSJSONCodecObjC.h */, + 086D2E21CD2C375481D131006EE2FA13 /* BSG_KSJSONCodecObjC.m */, + 7122B0301CE97FCD1569C75445060E4F /* BSG_KSLogger.h */, + 393719E8E07E42AA1712335F0D76BD52 /* BSG_KSLogger.m */, + 80123E4CE5856A3193DD48852416B8D4 /* BSG_KSMach.c */, + 4861260C10C20CC6A6F44A2E9425059B /* BSG_KSMach.h */, + 2E8C1DBF25BB49301681AE4675992A9A /* BSG_KSMach_Arm.c */, + C1B8302E6144ACBFD42B7B1CC9BE1127 /* BSG_KSMach_Arm64.c */, + ED01C7BBEE2469668C100E6C64B6B39F /* BSG_KSMach_x86_32.c */, + AB19C2DA349B77375CF0B72E4B2AB3EB /* BSG_KSMach_x86_64.c */, + AD9C7858F5095094776156A4627310E3 /* BSG_KSMachApple.h */, + 880C494587018B97FA8145B269186028 /* BSG_KSObjC.c */, + 6FC0D0166FB2595C25A22DF7B58C4BA4 /* BSG_KSObjC.h */, + 0F47718EF009AF92BE248AED9D69506D /* BSG_KSObjCApple.h */, + 9A2B89C600999072980916EFDBA63AEA /* BSG_KSSignalInfo.c */, + 6D45484A1A289F44F405566817D9650B /* BSG_KSSignalInfo.h */, + 598B021AE50CDB012A9AFF42DF032658 /* BSG_KSSingleton.h */, + 005FE8CEE0A32FC4A24106623708ACF3 /* BSG_KSString.c */, + 18B25B2B339EA2F0D269DA97D6979384 /* BSG_KSString.h */, + 3E739FFFAF59E0686A65318682F53F97 /* BSG_KSSysCtl.c */, + 8B3FA3257FB94308CDE8DD831FA9ACF1 /* BSG_KSSysCtl.h */, + 228CEFF2E2C187172950B2CE3A62B9A8 /* BSG_RFC3339DateTool.h */, + A4E651B07840425D4D95B5723F1449AE /* BSG_RFC3339DateTool.m */, + 5D2D1A48C5247A0B54FA16DBF05D106B /* NSError+BSG_SimpleConstructor.h */, + 745626DAF8E2FDC51B4CEC6A916584FB /* NSError+BSG_SimpleConstructor.m */, ); - name = Multiline; - path = Multiline; + name = Tools; + path = Tools; sourceTree = "<group>"; }; - B0FBA4DDFBD469FD8FDAD62F174F022F /* UMConstantsInterface */ = { + B1276E2C97F91445784BC454EF91560D /* Support Files */ = { isa = PBXGroup; children = ( - 624354EAD040C154C25AF8A3B25D7F36 /* UMConstantsInterface.h */, - EB06C669D1041DC1D266E975493E474C /* Pod */, - CE6673E1ED99093C70B2218633BE65A1 /* Support Files */, + 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */, + 564FA813A54C5B41E4AA514B0CE1DB19 /* react-native-background-timer-dummy.m */, + C7FC31A9FFCC4A9ABDDD38B97CF17C38 /* react-native-background-timer-prefix.pch */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = "<group>"; }; - B1D9846B3577AF237B523F334EAEACE7 /* DevSupport */ = { + B158B4AE90EA12A4C7218C90AA928024 /* ReactNativeART */ = { isa = PBXGroup; children = ( - 11B6A8DFCAF453C51D89CE86CB3AAC94 /* RCTDevLoadingView.h */, - C5393A9EBBA821A9367B0C5547C3AE4F /* RCTDevLoadingView.m */, - E9091C7BFB49BB42EBA16E56F1E5EE79 /* RCTInspectorDevServerHelper.h */, - AD30C5FCAE78AB3C213EE790DC5B16F1 /* RCTInspectorDevServerHelper.mm */, - 050E27E3EE0CA10437F5D07EEEF18F99 /* RCTPackagerClient.h */, - 34A8DF0A198A06F689AE0C2F60D179D1 /* RCTPackagerClient.m */, - DD2D00F0F5AF73FC7818CEA8FC5F8E82 /* RCTPackagerConnection.h */, - EE932DAB707565892DA4779DFA205726 /* RCTPackagerConnection.mm */, + 47CD048DB4EE75F4B79A8E53249E3012 /* ARTCGFloatArray.h */, + A1D6AF6DB4FEDD98B983F99933FB44AF /* ARTContainer.h */, + 56008A9DB03796D3639D33CDA5BD9263 /* ARTGroup.h */, + CBF1B2A24DF85F35EA84548F4AB66F11 /* ARTGroup.m */, + 6DD091C6F83EE0CD038105910C0ADDFD /* ARTNode.h */, + 1BA71CFB5BE743092D975B4EF33ABE86 /* ARTNode.m */, + 56EFD8A78E58DE590D240B9A06419AED /* ARTRenderable.h */, + 755629860A319CC7A0CAC31018519309 /* ARTRenderable.m */, + 0EA859D080F5B72CD9E8BD9639211BF7 /* ARTShadow.h */, + C68D2008F965DB8E53784194B227ACE7 /* ARTShape.h */, + 334755F233628245C1D01956028DA931 /* ARTShape.m */, + 2185D5433F48B8B084131511CFF6F88A /* ARTSurfaceView.h */, + 492536DC8DE6C57B7A06571A85F557EA /* ARTSurfaceView.m */, + E265D20CED969AF5718CC2576B0D2FCC /* ARTText.h */, + BB595745BB33ED2B6577CE4E3F7ED950 /* ARTText.m */, + C8B49794982FBDADB0177CBE38BCD190 /* ARTTextFrame.h */, + 5E79C9C256AF6B3FA26D8859642FD8E2 /* RCTConvert+ART.h */, + 9675F13CB46425163B7D8B264DAB751A /* RCTConvert+ART.m */, + 8C37D369EDB736D2D9FF9A55F1A902DC /* Brushes */, + BDAECD2C367AAC449C56E51AD6DC9C0F /* Pod */, + 3B889B9D29E83886500CAAE90738CE5B /* Support Files */, + 5D8DBD031C93AE6D46EAC75B0765F98F /* ViewManagers */, ); - name = DevSupport; - path = React/DevSupport; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = "<group>"; + }; + B16515C2C4EEF83313727B33CC0AF6C5 /* firestore */ = { + isa = PBXGroup; + children = ( + 3481A38292488F28E5A6CF01D5EA7CCE /* RNFirebaseFirestore.h */, + A22165C603CF86BBA62AFC8C08B2D7EB /* RNFirebaseFirestore.m */, + B33E2DA487D6E6682DCF63E4E5299C0A /* RNFirebaseFirestoreCollectionReference.h */, + A49BFFF090944480DC816615C37D8111 /* RNFirebaseFirestoreCollectionReference.m */, + 4FF2675301A1914717195CB49B661D97 /* RNFirebaseFirestoreDocumentReference.h */, + A4D47E197DC0F3E2DBF3C4445BF0A1AC /* RNFirebaseFirestoreDocumentReference.m */, + ); + name = firestore; + path = RNFirebase/firestore; + sourceTree = "<group>"; + }; + B193094453D2E436B6A6DC61F359524E /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + EAE2BFF0F123F1A27CF0D9AC2F84DA1A /* UMModuleRegistryProvider.h */, + 0D33A934B640D0010EFD4513CA46B01A /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = "<group>"; + }; + B1B91E7236F20BF2FCEF54D6BA674FBD /* Pod */ = { + isa = PBXGroup; + children = ( + 671E06E02DB17731102E25AA92C08C8D /* UMSensorsInterface.podspec */, + ); + name = Pod; sourceTree = "<group>"; }; B1EA20399536EBFC59E786482C1A6829 /* Support Files */ = { @@ -15230,16 +15366,26 @@ path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = "<group>"; }; - B22A617BF20D4FD09BCA7B38B0C01305 /* Pod */ = { + B21622C79F6C89777264A45D79B1FA2F /* Pod */ = { isa = PBXGroup; children = ( - B35331924E53F756D2A262665CAFF1D7 /* LICENSE */, - 174FDE564279609478619CA73EB8085C /* README.md */, - 07C897057324A69187AF5560B5B5EA65 /* RNReanimated.podspec */, + 76F37DAA3A95559FFCCCFFF85F3DAF6B /* KeyCommands.podspec */, + 46CDFD5D6F50620F9E7601E85A37F8BE /* README.md */, ); name = Pod; sourceTree = "<group>"; }; + B2E0801108999F3761F4C729D3A56735 /* Support Files */ = { + isa = PBXGroup; + children = ( + FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */, + 3F74F63D4500638E176854142E804CF0 /* EXWebBrowser-dummy.m */, + 3BD7115DD0B67CF8A67D86E8BC7DA72E /* EXWebBrowser-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = "<group>"; + }; B339121AFB1DAA8FF0BD501266DE4AC6 /* Pods */ = { isa = PBXGroup; children = ( @@ -15281,27 +15427,6 @@ name = Pods; sourceTree = "<group>"; }; - B3A287AE33969D28E568F7227EB65920 /* instanceid */ = { - isa = PBXGroup; - children = ( - DB3AE7668469F5B9715A650DC690B653 /* RNFirebaseInstanceId.h */, - B568BC4B29D62AFA87FD044049876E36 /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; - sourceTree = "<group>"; - }; - B3E4760EA4EF222F60347113E73BB1AB /* Support Files */ = { - isa = PBXGroup; - children = ( - CFB14C09F6C834BAF8A5DDD154F9B375 /* React-RCTNetwork.xcconfig */, - D2C325A320B7B94BD286CBB4D14D1FC6 /* React-RCTNetwork-dummy.m */, - B7000D24A1046006FD2A71AEDB7026B2 /* React-RCTNetwork-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; - sourceTree = "<group>"; - }; B3E7BE49317D58756C4018E5F36FEB20 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15313,111 +15438,97 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = "<group>"; }; - B4CB3E457CE6C3C54FF9CFC26D394344 /* Support Files */ = { + B5E11CB613A779916E7F21DEB93AE85E /* Pod */ = { isa = PBXGroup; children = ( - A5EC5AC6C9B3D5D80D2091F757CE3A1B /* react-native-appearance.xcconfig */, - E869A8A07CB6426933833FFF38AF4642 /* react-native-appearance-dummy.m */, - 1D39AA2C6CCD4EA4CF03EE13E54F2838 /* react-native-appearance-prefix.pch */, + D1C4E2EE1DD85B0A8D9625A1B772A0E7 /* React-CoreModules.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + B5F9093B727DD693B4CC0DFC7E060F79 /* Pod */ = { + isa = PBXGroup; + children = ( + 6EB58EEC2B6F73BEA176EED8631D3D8B /* Yoga.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + B73E7CFDC5C98804E383184483AC74CE /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + 52FA14C797DD21BCB477C6135376D908 /* RCTAnimatedImage.m */, + 0390D837DA5045FC965D96C06FEA2E00 /* RCTGIFImageDecoder.mm */, + 0AD76653381D66158768E50C092B7044 /* RCTImageBlurUtils.m */, + 6602B30C16434EE37FC3C9EF28A5CFC4 /* RCTImageCache.m */, + D6318E5B6B7DC173B03E2ADAA68800A5 /* RCTImageEditingManager.mm */, + 0E9EB4975C32273C8AEBFDF1B620302B /* RCTImageLoader.mm */, + 8FFCAD5827966A8DE8809D1414255B0E /* RCTImagePlugins.mm */, + 42D90568CF9B3800373795CB9CAD8F84 /* RCTImageShadowView.m */, + A61C638B1EA38EE4558EF4004C289962 /* RCTImageStoreManager.mm */, + 71B79A38172EF9EE71FB0A05E099512E /* RCTImageUtils.m */, + E0FB7A2BCB26E6FA7FAF1995311D73E2 /* RCTImageView.mm */, + D406B162AD1A9BB2D5ED8E49D2583638 /* RCTImageViewManager.mm */, + C3F72457D7FEF7EA647F6E8C29B3C62B /* RCTLocalAssetImageLoader.mm */, + A8134D4E8FEF2248A87CFF788DE69B83 /* RCTResizeMode.m */, + 3F08A534E16C64957338A0CE5064E4C0 /* RCTUIImageViewAnimated.m */, + A3271E912B468BAE0AB8F61165F6F7C8 /* Pod */, + E119E86D0D9F2598206AE74C0CEA3961 /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = "<group>"; + }; + B77022EF9FCD3553CDC99FBE6A7BD67F /* Support Files */ = { + isa = PBXGroup; + children = ( + 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */, + 64D2B610AE30090AFFD9BBDEDEF1E802 /* UMReactNativeAdapter-dummy.m */, + E6C0E11D8A8B1FD548645D7202DE152B /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = "<group>"; }; - B505309F1EFCD09879CE411A4B35E54E /* Pod */ = { + B78B1DBF453E454509BFB3D0897999F8 /* RNFirebase */ = { isa = PBXGroup; children = ( - 314B00F0556129330C28971515652AF2 /* UMImageLoaderInterface.podspec */, + 0021C6A7A997A06C2776B974C7821251 /* RNFirebase.h */, + F9AB58141DE09EF4AC8B4F0FDA2A9CD1 /* RNFirebase.m */, + AC58807FCD479A6F2650B746BB4FBFFD /* RNFirebaseEvents.h */, + 3A958F3EA31FFEE89B58963F03BF74DF /* RNFirebaseUtil.h */, + CB92A840388D3EF7251E8F98F6D2AAB3 /* RNFirebaseUtil.m */, + 2FA0C6D639432EE8DFAC57838149B797 /* admob */, + 2D72F126EFB0E398EAA00DFDD5FA3D53 /* analytics */, + C4560E7CEC82A107517324995480A5EB /* auth */, + 9774FAB05080360E08FD24A680CE9B1D /* config */, + 31BD69B02DD95AE19BDEF00CBF3B2110 /* converters */, + FE3321F275BD510255767253D40784E4 /* database */, + 02D77A59F48F6CF6CE6E56CC8773D443 /* fabric */, + B16515C2C4EEF83313727B33CC0AF6C5 /* firestore */, + 49BD3AF8011731CAB5B74BC47B217734 /* functions */, + 8DAE3EA2B04E39CA44BE6583A2EA3F33 /* instanceid */, + 1DDFA0F74E6D017333791440D900A927 /* links */, + 9EC51E4D0DE5067BE5A94F3989AD10BD /* messaging */, + 7EE3544DA9E98A093DF27C96D4BA0D38 /* notifications */, + 398373FEDD58B0002DF4A8922B961C5A /* perf */, + 96386F5ECE4964283EB5AAC739C9389F /* Pod */, + 74146D9398475B1693B69D4B9FD9BBC4 /* storage */, + 27969F211D2B111C527161B1D1A8B553 /* Support Files */, ); - name = Pod; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; sourceTree = "<group>"; }; - B694296159DD104601DE3BA55D85DD71 /* RCTWebSocket */ = { + B8F57D72DC04B41E16473C12A8D9F4E3 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 39938D64691205D235E91657B49CF7AD /* RCTReconnectingWebSocket.h */, - ABB1C48E91B0A73397FE4BB9D665CC5C /* RCTReconnectingWebSocket.m */, - FD5387872CDB3E69D6850D5774F27155 /* RCTSRWebSocket.h */, - A91D4BB1CF8EFD075D25BCF7E2FCBB8A /* RCTSRWebSocket.m */, + DFBED849C843D4DF967E45C83D99233F /* UMImageLoaderInterface.h */, + 7505E5DB8D9EFBE6FCD2951D962F1DFF /* Pod */, + AADFED7DA59B6D90F68793A8CF646CED /* Support Files */, ); - name = RCTWebSocket; - sourceTree = "<group>"; - }; - B6EE75D1718608927B62F2C5E0417A2F /* Pod */ = { - isa = PBXGroup; - children = ( - E149D55AB227DED9274F7106EA694571 /* LICENSE */, - 57FE4AF464DCBE7EDA14ABEBF64561DF /* README.md */, - F25E7536751C2FA216D8D242DACFC975 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - B82FFB60A82862DAAAD92C50BF436B57 /* admob */ = { - isa = PBXGroup; - children = ( - E827B7CB614E1DB064A1F38E83EB9BD7 /* BannerComponent.h */, - E7C9FE89F9AB0D18A6131735809E51F6 /* BannerComponent.m */, - 7603C904A0910EE79192F547E1A180B7 /* NativeExpressComponent.h */, - 53D1D015FAA87C1F89DCFE418908A9FD /* NativeExpressComponent.m */, - 5F4113C049E565A753E96474638C645F /* RNFirebaseAdMob.h */, - 49B4816434FB935DF284754497A2BD3A /* RNFirebaseAdMob.m */, - 826B3447206F1745AE60ED9BE8E12E35 /* RNFirebaseAdMobBannerManager.h */, - ED314843F95989212830490987759EAE /* RNFirebaseAdMobBannerManager.m */, - 72446B354D5BD5E6C67A34FFA3A5735E /* RNFirebaseAdMobInterstitial.h */, - 77EB8DCB463F84D34C3F69C528F50742 /* RNFirebaseAdMobInterstitial.m */, - 310B657865ECF27AB6D535AE434CDF1A /* RNFirebaseAdMobNativeExpressManager.h */, - EBE9E3426A9471A947A2DE6F39932D8F /* RNFirebaseAdMobNativeExpressManager.m */, - 38E0016D738D88DC9345BAE075747225 /* RNFirebaseAdMobRewardedVideo.h */, - 370D292975A2043376B9EA3E171BDC19 /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = "<group>"; - }; - B8C5F396ACF1B1D550B4387802BAF107 /* Pod */ = { - isa = PBXGroup; - children = ( - 3F77483F54D414C3E112B08D4D728DFB /* UMCore.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - B8ED2539A3E882E05F147911A6A60FC3 /* Yoga */ = { - isa = PBXGroup; - children = ( - B90C3A1CB6DC08458A426E77842E86BE /* BitUtils.h */, - 5668C85563C49F42A1762165DACDAD21 /* CompactValue.h */, - 29C24C17132AC96C2E62EE137999E4C3 /* log.cpp */, - E72FBF0AEE83F73F90CE44640BC5EB14 /* log.h */, - C90AD6F3E02455B90B994E4FFAC8DCF6 /* Utils.cpp */, - B0C504425206F886868AA7DB1977B097 /* Utils.h */, - E061973D73ADE6AD2D3FC6242AF841B5 /* YGConfig.cpp */, - E549D723E9E63DB2CFBF963489EB1B49 /* YGConfig.h */, - CE2D93B945FDF19FA985C560D0CB193E /* YGEnums.cpp */, - 117A0DB2224053B6BA37DF19F0CFFBBC /* YGEnums.h */, - 0F4A75DABC320B067232557DA63A14E9 /* YGFloatOptional.h */, - 1974D8C56D7F0E626306A9601ABC0444 /* YGLayout.cpp */, - 41CAECA76E8396085CB984BF6927F6A3 /* YGLayout.h */, - 3425EA6F10A8D06F7055B161E70740CF /* YGMacros.h */, - 80B7EC3C5207935654289284D7F350C6 /* YGNode.cpp */, - C3B53679E1F1A2D3957C5AA499F38D05 /* YGNode.h */, - 86F08F17891CC92363BE2CD68AEB70E7 /* YGNodePrint.cpp */, - A22D8E1F764C39C22E2B1892BF3E1083 /* YGNodePrint.h */, - C4C59082BABF59E77460D9147952C110 /* YGStyle.cpp */, - 2D1612B5B2E0995F0BEF81686283D1DA /* YGStyle.h */, - BFE66F7C9D1EFDB9D680C84B0EAD5B43 /* YGValue.cpp */, - 26468D7FEAB555E9EB117944B5F283BA /* YGValue.h */, - D60E5E8BED0B269304BB74C21A161540 /* Yoga.cpp */, - A7A3F3F6748EF1A7AF335A3A5A8D5A59 /* Yoga.h */, - DC0CB3F9986633C22527E056791EE997 /* Yoga-internal.h */, - 8796180F2E5CE877BEE8B556363C9F6C /* event */, - A26D78441EC305905545EC0F11757CDA /* internal */, - 752D71CA946D10C2298F953F681E8AF5 /* Pod */, - 9D6DB9630D9AD1182F07474764695EEE /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = "<group>"; }; B920091D48FC8098669E55B8AC1CFE99 /* Logger */ = { @@ -15430,6 +15541,14 @@ name = Logger; sourceTree = "<group>"; }; + B962BB49E4E0F8E072980BAF394911A8 /* Pod */ = { + isa = PBXGroup; + children = ( + 81EB6C170B6F2790F1A5CDC47B7D2621 /* UMCore.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; B98D042EF0D09C77B29011D5E50F7528 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15441,72 +15560,15 @@ path = "../Target Support Files/Flipper"; sourceTree = "<group>"; }; - B9C80136A504B5F41D880E892035B1A1 /* react-native-orientation-locker */ = { + BB278DC67451484CB26D3BB9DA9FF098 /* Support Files */ = { isa = PBXGroup; children = ( - F423EC0AA39FB85AE48D72DC71581328 /* Orientation.h */, - C7B0CBF67643CF4AFC843A4A0E8AB977 /* Orientation.m */, - EDBCA63E5E13884B556DCA5E90394B73 /* Pod */, - 69069F46CC7080FAC7A05CEF8467AB14 /* Support Files */, + DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */, + C7D5215B0BDA835A65F4F5C7BB27358B /* react-native-webview-dummy.m */, + FC1EDE67008215F51101F35C2C193913 /* react-native-webview-prefix.pch */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = "<group>"; - }; - BA5BA13AABAFFCE03D6DE672987B4FB3 /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - 84FDCF90B211EBB70535DC8B9BE5BBD0 /* BugsnagReactNative.h */, - C04F4DB4A4F8808EC3E0FF9F578B211F /* BugsnagReactNative.m */, - 5329ACAFFA02761D505B6FE0C1BEECC9 /* Core */, - 4899F41473643197973253C559FFC19D /* Pod */, - 14B4D53599EDDF5D183F05DE886C67A2 /* Support Files */, - F8ADC99942C15C3141F8D294D8A07E7E /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = "<group>"; - }; - BA61E394518E8480D875135ED50890E5 /* Services */ = { - isa = PBXGroup; - children = ( - 1BBF42452DD7D486BD4061A92DE81C7D /* UMReactFontManager.h */, - 04DE0F5DFBD03C92CCB6615F8DFEC826 /* UMReactFontManager.m */, - 3726B6E0CB5EBEB17A4C0E84EEBB1680 /* UMReactLogHandler.h */, - 7CB0861E30B6758176AECDD59A49C73E /* UMReactLogHandler.m */, - 3253FD23B394327D3C8FD8D7F6FD570B /* UMReactNativeAdapter.h */, - B6F9F585F3BB8BFD7D6F872E00E288CD /* UMReactNativeAdapter.m */, - 7337DCFAD82B5FAECF100A4D20AA7CFF /* UMReactNativeEventEmitter.h */, - F0D73E173764C933D18F25FDB16526AB /* UMReactNativeEventEmitter.m */, - ); - name = Services; - path = UMReactNativeAdapter/Services; - sourceTree = "<group>"; - }; - BAB886CAB19809A369E2B7496F803007 /* CxxBridge */ = { - isa = PBXGroup; - children = ( - D31EA8233E3639B263378A34EE099B6C /* JSCExecutorFactory.h */, - BFC97B991341A398907D208BF58A1650 /* JSCExecutorFactory.mm */, - 81DBFB6FC23DD895FC46ACA29C74B980 /* NSDataBigString.h */, - E135CA8515BDADC2DBF4D894D71C070C /* NSDataBigString.mm */, - 7D11B6321D9730F81486436992CDA244 /* RCTCxxBridge.mm */, - D5052E64C6BD6F5D2C5451252F1AA7CE /* RCTCxxBridgeDelegate.h */, - ADB31A9382EFF429B7FA98835F28AB2D /* RCTMessageThread.h */, - 61D33EC39F8A38E08EF5019D147D8062 /* RCTMessageThread.mm */, - 33B913E6B0D46E4ABC3598B1B632F213 /* RCTObjcExecutor.h */, - 470D0A90080CEFFB6CB17D10B442265C /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = "<group>"; - }; - BADDEA11E68ED4D4903047D2E68E2403 /* Pod */ = { - isa = PBXGroup; - children = ( - 2B8503A5D52E175AE5FEB27FA1115608 /* EXFileSystem.podspec */, - ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = "<group>"; }; BB3E784A18938CCD06E24D8E7F25C2AF /* FlipperKitUserDefaultsPlugin */ = { @@ -15520,31 +15582,142 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = "<group>"; }; - BC80100E6509F29197E61A46A2A225DC /* Pod */ = { + BB416D09935503139FB6AE6415BBD8BB /* React */ = { isa = PBXGroup; children = ( - 8BDB5C0D09E069EA82A33EB44AA4C679 /* EXHaptics.podspec */, + EAEE84EB9B060156B96B3351EE413571 /* Pod */, + 2D4B7CB9373E72892986C0D392C3826E /* Support Files */, ); - name = Pod; + name = React; + path = "../../node_modules/react-native"; sourceTree = "<group>"; }; - BC89604F2509DA0136CCA2E7E2F5153C /* Pod */ = { + BBA405B2C07C8FD5AB3ED645168EEE5D /* Sentry */ = { isa = PBXGroup; children = ( - F3A9CBDC59D024D20C64F6823F5D667D /* React-jsiexecutor.podspec */, + 3D4D955BD35DCD869F66D0B9054109D3 /* BSG_KSCrashSentry.c */, + 3334E27A81D92C38902F3EF06E65C508 /* BSG_KSCrashSentry.h */, + 29C61B48928ACB47767C42DC8802C61C /* BSG_KSCrashSentry_CPPException.h */, + 97C7F766B25433997B07B1C978B966FC /* BSG_KSCrashSentry_CPPException.mm */, + A055F23165266D3F07A6EDFF9AB5D5C8 /* BSG_KSCrashSentry_MachException.c */, + E264446847198B24564078FFE2989119 /* BSG_KSCrashSentry_MachException.h */, + A4434D42050CE6D5CA8C346DB7F50E9B /* BSG_KSCrashSentry_NSException.h */, + 865498C402B4E5F0DD79725D4441BC07 /* BSG_KSCrashSentry_NSException.m */, + FB5A0CD79F1E53BE13EB6F4C591D9B13 /* BSG_KSCrashSentry_Private.h */, + E3ED780732B909991C8A1D797B113375 /* BSG_KSCrashSentry_Signal.c */, + FD80D3557B7F95C1F231BFF7DD19C97F /* BSG_KSCrashSentry_Signal.h */, + 8DF9F18D426A2953F9EBA4E425050B81 /* BSG_KSCrashSentry_User.c */, + EF588114EB45D0C58E840F95E882905C /* BSG_KSCrashSentry_User.h */, ); - name = Pod; + name = Sentry; + path = Sentry; sourceTree = "<group>"; }; - BE70ACB1E9C000015261CEA6DC1C4D80 /* Support Files */ = { + BBF622B0872DD0A727D4286909932110 /* Support Files */ = { isa = PBXGroup; children = ( - 98EC4E89DD324DCC11248145EC58BDEA /* EXFileSystem.xcconfig */, - 8878BFA91A7BC7E75874E981339E9AD2 /* EXFileSystem-dummy.m */, - 1D7736C3A612CA7E71D18CBA61252B5B /* EXFileSystem-prefix.pch */, + 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */, + 00E07C03A34E87743AE4F9B6459A323F /* RNAudio-dummy.m */, + C82F14F48778D57E2106F1FC0F8D0326 /* RNAudio-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + path = "../../ios/Pods/Target Support Files/RNAudio"; + sourceTree = "<group>"; + }; + BD01DD13B01455AB746709E25A49203B /* Pod */ = { + isa = PBXGroup; + children = ( + 1570FACE560EB764A1AFB2E1F37E5A60 /* LICENSE */, + FA45D31E77F2ADC94723D36D93225EB8 /* react-native-jitsi-meet.podspec */, + E214B9CEE51A727C5AE4AC727593DE85 /* README.md */, + ); + name = Pod; + sourceTree = "<group>"; + }; + BDAECD2C367AAC449C56E51AD6DC9C0F /* Pod */ = { + isa = PBXGroup; + children = ( + 41A197D6922541ADF732712A52AEC561 /* api.md */, + D2424BAC76F59F7526912D76CB7E6E11 /* LICENSE */, + F5C25C555092FBD964CC1EE884307AF4 /* ReactNativeART.podspec */, + E72085AB6706EBC6398EC9DE1C48257A /* README.md */, + ); + name = Pod; + sourceTree = "<group>"; + }; + BDDAE384541621DBCA3E2A0C0F5741C7 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 7181B076C72B5D8B4BAB9CA9A56A536E /* RCTConvert+RNNotifications.h */, + 97C30C1EC16E4D7BF1E3192F02285C77 /* RCTConvert+RNNotifications.m */, + 139C71A179C549AB4501ED4EBB6C2E10 /* RNBridgeModule.h */, + 0221AC15766186E7DCF679FB4AD3B495 /* RNBridgeModule.m */, + F264626D6307524A77063BDB881ED581 /* RNCommandsHandler.h */, + 3123946DEF3421A12E9BAE834F1E3C63 /* RNCommandsHandler.m */, + 6F6BDE235AC6D6B65B136696A1278875 /* RNEventEmitter.h */, + BB9E5B3EFEA74F851055B14191C29B87 /* RNEventEmitter.m */, + 32D6692C58A15CAE118365DE54D97957 /* RNNotificationCenter.h */, + 06B2203029C3C3AFCDD5DD5318FFCC4F /* RNNotificationCenter.m */, + 2B3EB9B2850535DAE8A7F3F6AFD80475 /* RNNotificationCenterListener.h */, + 027A4BDF040FB5089179212613E3B3A1 /* RNNotificationCenterListener.m */, + F24DF451B924756AB9891D0AE05E825D /* RNNotificationCenterMulticast.h */, + 755098AE1D1B51F73FA9D687E6F48A81 /* RNNotificationCenterMulticast.m */, + 6109228AD003D537CE60FBA075433CAB /* RNNotificationEventHandler.h */, + 6DAA73BB8821C72D48536DF5F9AF61C2 /* RNNotificationEventHandler.m */, + C0597431E55F8169E3324DC6051A3CD1 /* RNNotificationParser.h */, + 076DABD1E77AED8A0B388AFE75D74F9D /* RNNotificationParser.m */, + E1551C8062D1ED0104DBC41541A65C2F /* RNNotifications.h */, + 1F65ADC86C3EEA501595787CC5B00FF0 /* RNNotifications.m */, + 556767749DE24538CB02EBA61C2DAA2F /* RNNotificationsStore.h */, + 80A2AE040566CF877A70391D5194AF89 /* RNNotificationsStore.m */, + EF474563AFA5D4DE1AE9D6DEAFC3ED60 /* RNNotificationUtils.h */, + F2B2FB1E278B24DF0352FFF93299CD9B /* RNNotificationUtils.m */, + 425948E172F368C6A68D1CED6CBE3686 /* RNPushKit.h */, + 207A93E311A2B2567CB197FE30D9BFD6 /* RNPushKit.m */, + 505C5615C155C91CD06C7CF8DEF8CD78 /* RNPushKitEventHandler.h */, + 1168C19E7D2E04FB41C7C7B44D739771 /* RNPushKitEventHandler.m */, + B50440F83C769FB72C446E4454AFE6D2 /* RNPushKitEventListener.h */, + BFFC411F07683C9450E4200CA2760991 /* RNPushKitEventListener.m */, + 12A0ED8E743693028028E41630057E01 /* Pod */, + A8B83696E0E7CD4FB94BC72281F8A6F5 /* Support Files */, + ); + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; + sourceTree = "<group>"; + }; + BE42C93098C250F9D4E032275E565041 /* KSCrash */ = { + isa = PBXGroup; + children = ( + 889A8CCD4A727BF9B929360941AFBA56 /* Recording */, + 92344FD2880D552CC774559E9A281B04 /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = "<group>"; + }; + BE577E764A59F5994C39273524AD5854 /* Pod */ = { + isa = PBXGroup; + children = ( + 41222C666A8F46E06A91673973BAA9B5 /* LICENSE */, + 05682E662630AA75EC110F8237BDF8A1 /* README.md */, + 461A9A49911068228783AD7F9A834FE9 /* RNCAsyncStorage.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + BE77DE8335B20A606E4200851DA790A9 /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */, + 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */, + 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */, + 20676D7B672826C1AA5B9A6C4309BC23 /* BaseText */, + C6F3752733D79FEC9812F69FA82D43CF /* RawText */, + 6F15F43CF59EBD3FE36178D3FE19AF83 /* Text */, + 750974AD76AFC9A117C512C8FF99C99F /* TextInput */, + F27F1439852F8F9954EDEF8830B926F3 /* VirtualText */, + ); + name = RCTTextHeaders; sourceTree = "<group>"; }; BE85ABB6AF9EFE96E4A3DC4C454718C9 /* AppDelegateSwizzler */ = { @@ -15562,102 +15735,6 @@ name = AppDelegateSwizzler; sourceTree = "<group>"; }; - BEC3BACA2CF6A366F4B022A7E01F2DAD /* Products */ = { - isa = PBXGroup; - children = ( - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, - 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = "<group>"; - }; BF55D5514E5A01C1AFA1892515FCF31B /* Firebase */ = { isa = PBXGroup; children = ( @@ -15668,123 +15745,123 @@ path = Firebase; sourceTree = "<group>"; }; - BF9D44F3756591B39F67054331483385 /* UMCore */ = { + BF94B8329559E0061A13D6AFB05B5ADA /* callinvoker */ = { isa = PBXGroup; children = ( - D13696AB91A111CF4B17AF8A82344F04 /* UMAppDelegateWrapper.h */, - C33183C92E539AF4523A9F436DED40AC /* UMAppDelegateWrapper.m */, - 20A589512E058D378E9A880B6CBFD571 /* UMDefines.h */, - 1842A48AF0D9C5453962C98B9419C9D1 /* UMErrorCodes.h */, - 29712B2787A0895DF45ABF7303567E67 /* UMErrorCodes.m */, - FF88F70BF52D7867F297C5EE3C6F2391 /* UMExportedModule.h */, - 6C2BB83A4306C3912617A2AE64EDD900 /* UMExportedModule.m */, - 4EEE3FBCA4F3B5B6E24A0D8BA30C7F79 /* UMSingletonModule.h */, - E7B025D77E52CA63911A1BB4392E9E97 /* UMSingletonModule.m */, - D4120D59CC721ACCDF291C39035972A3 /* UMUtilities.h */, - D4A9E51410AB7F4702A0ADFB8E6F9F78 /* UMUtilities.m */, - 53CD110FCD349863CA704AC151DEEAA3 /* UMViewManager.h */, - 5F61EA0F96EAB1BD9DD7607D35EAF450 /* UMViewManager.m */, - B8C5F396ACF1B1D550B4387802BAF107 /* Pod */, - 4FA0FC2594CED1476C399C8251FC4937 /* Protocols */, - E2C518FF773F00C09B6D8CCE47FB65C8 /* Services */, - 40F5E59076FE7BEB3EB6C65E4796F9C9 /* Support Files */, - 390FF389E0EA03B2D2D4311ECB6A47E6 /* UMModuleRegistry */, - 1066765BA6708A7B64F5D2E9228D7722 /* UMModuleRegistryProvider */, + 07B3A957AE8A7C65C2F2CCA813376074 /* BridgeJSCallInvoker.cpp */, + 92A866209B909FF7DE356B121586DBA3 /* BridgeJSCallInvoker.h */, + 5BE507CE36D4C90FBA38F2E85F6EAAA3 /* CallInvoker.h */, + 04EC9F608FFDDB8D66E233F17B837EDC /* MessageQueueThreadCallInvoker.cpp */, + 7675103AA92A4E8D188145E91E92730B /* MessageQueueThreadCallInvoker.h */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = callinvoker; sourceTree = "<group>"; }; - BFC50070720434290AE167887167E90F /* Interfaces */ = { + C076B18B99D55846D0A83D7EEE683197 /* Core */ = { isa = PBXGroup; children = ( - 2B260C54E830F6E4E7F93F1EB1025642 /* UMAppLoaderInterface.h */, - EDE955A99A27ABE9C59CA46E37804FE9 /* UMAppRecordInterface.h */, ); - name = Interfaces; - path = UMAppLoader/Interfaces; + name = Core; sourceTree = "<group>"; }; - BFDA2FBDF9F04681C07B3AC0969FC1D6 /* Development Pods */ = { + C0F281592EB296CFCE74AEDBE0C5C710 /* Base */ = { isa = PBXGroup; children = ( - BA5BA13AABAFFCE03D6DE672987B4FB3 /* BugsnagReactNative */, - 1B956E7D14428DDF149BCD26D3DE6281 /* EXAV */, - 50AFE2E7C1F993C6879EBC82A369606E /* EXConstants */, - CF2F2D558A38D83939071E532724D2B7 /* EXFileSystem */, - AAD15AD7B980E7864D2AD6FF94720F28 /* EXHaptics */, - E6D4F9AF52088E1E211965060E092C2C /* EXImageLoader */, - 1DC653E041BB03EFB74A336B517AB655 /* EXKeepAwake */, - 428000AE59276945EC7A4938FF10E036 /* EXLocalAuthentication */, - C3AB8A18231B5688EDFF50D20B3DC752 /* EXPermissions */, - 2F5D2C99F88871CD85E8CCDBC179FB9F /* EXWebBrowser */, - 9A8571433ABA92E38AF77C0814023799 /* FBLazyVector */, - 5FDEE830B476B40046EC098DB043298E /* FBReactNativeSpec */, - 5489B7104EE42C8A74EB48577156EAF8 /* KeyCommands */, - C26BE33995885F3ABAE3B9FA3EB3A09B /* RCTRequired */, - 21E4AC9388DEEFC886F07536424ADAA0 /* RCTTypeSafety */, - F2780D2B1E9EF6BADB8D95D02B79B3F8 /* React */, - 41592E62DE86CDAE027510190D643C6A /* React-Core */, - 794C30AF21D930855DA44DF7332B4BCF /* React-CoreModules */, - 16E72F50B32FEBF51A1AAD7F3C871B87 /* React-cxxreact */, - 19809BC4977E525CB0AF5C92382612E4 /* React-jsi */, - 03845CEA6079EA91BBBBFAF3B2086F2B /* React-jsiexecutor */, - 60550506AD95810E4AF5346947153D23 /* React-jsinspector */, - CBA01CF69FAFB4EACE87D1C82356D0DF /* react-native-appearance */, - 981D5D6DDD1A98A905410F834E6A2AD6 /* react-native-background-timer */, - 857850255F7F78D7E414E829B4CFAC8C /* react-native-cameraroll */, - 1477A0CE6903E97E1643BE3356EFEF1E /* react-native-document-picker */, - C920C91601CB6A097E118F66DE6C5AA2 /* react-native-jitsi-meet */, - 4DD3475CBE7B751603F8D259B1B13D7C /* react-native-notifications */, - B9C80136A504B5F41D880E892035B1A1 /* react-native-orientation-locker */, - F2158120FC088546050D8E4C3A683A5F /* react-native-slider */, - 3E2A33B78714E12195DE6FCFEAA2220C /* react-native-webview */, - 06F749594BEE2125FF8D9F39DF424D7D /* React-RCTActionSheet */, - E2E5F413225D77E3905ADEFBFF02DA36 /* React-RCTAnimation */, - E005FE124301CB0F9580BB5861F2007D /* React-RCTBlob */, - 054D66B7F032C6DA5F0F9E0AC9DF8A7A /* React-RCTImage */, - 7EAE45D485BBA63F1DA64D279E895718 /* React-RCTLinking */, - 94A66B0888D250E2045DAD98B7C09860 /* React-RCTNetwork */, - 95595AEF0D3AAB1E047A9D3D43A022DB /* React-RCTSettings */, - ECC3A5D45AEDECFFEF0DE5CA3D400DED /* React-RCTText */, - 307E96105CFB7A386F5A70861D119F6F /* React-RCTVibration */, - 764BA6DAA1DC04703C06D53D240A425B /* ReactCommon */, - 65B064FB6C42C840E4E796FC0692A16C /* ReactNativeART */, - F19733C174C593BFCC60794E4DC57234 /* ReactNativeKeyboardInput */, - 3C5B376FD7E2EC1E76B9739F339172EA /* ReactNativeKeyboardTrackingView */, - F5287678E969C903F21780DEA81FE80C /* rn-extensions-share */, - 19845FC48175939F48DC663AD077EA5E /* rn-fetch-blob */, - D5D4DF678BB25631904489F3EA991B98 /* RNAudio */, - 8465CF504440042801E6206865191031 /* RNBootSplash */, - 9EFFB280563B4F01586212077EE7CAD6 /* RNCAsyncStorage */, - 26CE502A321C7C519F52CAC2029CE073 /* RNDateTimePicker */, - 1C7E00B22CFBC430B343CAF7F01DB93D /* RNDeviceInfo */, - FD000F1BD6F6B1A268A3732E4FD5710C /* RNFastImage */, - 3BD10707BD28727A58B333DD32ACC328 /* RNFirebase */, - E1F2B622173ED4F8FB7498CA97BEE072 /* RNGestureHandler */, - 73686C923ACD519ECF3D124F5D98242E /* RNImageCropPicker */, - 0CF4DFE4749C3A183F2E33464AE60885 /* RNLocalize */, - 1C4D8D0D17E41E848B0F6E6922C4E7F2 /* RNReanimated */, - 86ED65683C976B4ED67459031D220ED8 /* RNRootView */, - 9B9A0AB7D38D784E15AE95835DE4DA7B /* RNScreens */, - 62C9383F2C726C03122BF58BFE603396 /* RNUserDefaults */, - 18ACD9BA2EDCB22E9DE782AA93D19EF2 /* RNVectorIcons */, - D4D95AB4FB5CFF4E4078A0DA92F272C7 /* UMAppLoader */, - 47ABBBF67EAC68F9275DD564336921FD /* UMBarCodeScannerInterface */, - EC486061DC2A64BDEE4A2840FB63EB9C /* UMCameraInterface */, - B0FBA4DDFBD469FD8FDAD62F174F022F /* UMConstantsInterface */, - BF9D44F3756591B39F67054331483385 /* UMCore */, - D12A733137613248F36931DC8F9F4101 /* UMFaceDetectorInterface */, - 1087E63CCEF61E3F2CA41944475F471F /* UMFileSystemInterface */, - 87969B02E0E73B6D5516395C4F4BCA9D /* UMFontInterface */, - ABE4E025EA70FECD26CC18A75425C427 /* UMImageLoaderInterface */, - E322634F2D1D5B30319479623445A408 /* UMPermissionsInterface */, - F5EEFE9AE1C32B9A0640493A5447406C /* UMReactNativeAdapter */, - 5B231FA8EFE8A6C0001A7F518E944ECB /* UMSensorsInterface */, - DCAAB6A5D8ADE6A10EA71415D4B26DDB /* UMTaskManagerInterface */, - B8ED2539A3E882E05F147911A6A60FC3 /* Yoga */, + 167D5828800E44CC2451087243F40F39 /* RCTAssert.h */, + 89F39CC71B68E39ED4ADE43058483368 /* RCTAssert.m */, + A4392652ED21B6B19AF66D94D815A783 /* RCTBridge.h */, + F5E4192AE7921B806BBB7C8B4A0FCB3C /* RCTBridge.m */, + 2C3DD063E32E5E8662D6A1C1443DB935 /* RCTBridge+Private.h */, + 55DC61064D7A4D14AA291832CD233B1F /* RCTBridgeDelegate.h */, + E427264B56A7CEB31CA0BF7DDE13B5BB /* RCTBridgeMethod.h */, + 153B693BA836AD28207153834B3D3DC0 /* RCTBridgeModule.h */, + 78D642BD074ECBCE98D84E1D1F747F5C /* RCTBundleURLProvider.h */, + 81BDB57F53D39DBC0E0DE2D840B68111 /* RCTBundleURLProvider.m */, + 7CD7A183075FACE684460A00E3C0C0FF /* RCTComponentEvent.h */, + BC2F7696C4C7E09B59D4C3ADB56340D2 /* RCTComponentEvent.m */, + 2428F07E26FB454DF0A967A4F6AE3FA0 /* RCTConstants.h */, + 483B294389BFC1A333B174C9EE7424D3 /* RCTConstants.m */, + A38575B3B8EA9243005150A893EA2112 /* RCTConvert.h */, + 93F4EB0ABAEF7024B00B36EB5E3A629B /* RCTConvert.m */, + E2C653BA98A073B45B33E340C973D86D /* RCTCxxConvert.h */, + C02BFBD577016E09BB0A9A67D08B7290 /* RCTCxxConvert.m */, + 77BD6C3E902223EC8E562A2F277B8BD5 /* RCTDefines.h */, + 6B89925743BFA191F4C929424A14E0F0 /* RCTDisplayLink.h */, + F61E79DC7918C604DB071008644B48B7 /* RCTDisplayLink.m */, + 9B38541B457DEF769B21EBCD7B0AEA4B /* RCTErrorCustomizer.h */, + 6EAFFD70428079BCAC361B34C85BE3B6 /* RCTErrorInfo.h */, + E1DE80D90C565FAD31CC5F26AECDF252 /* RCTErrorInfo.m */, + 53053026D8C22321912DFDD101F6F9F3 /* RCTEventDispatcher.h */, + 0FF0ADF5DC6D3FF308AECA808C0C7E30 /* RCTEventDispatcher.m */, + 79FEFB251B624E2112058C5823DFFBCA /* RCTFrameUpdate.h */, + 8184F44209E35FCFB3882EFAB43FF84C /* RCTFrameUpdate.m */, + 459E720AF3048001A28D86AB1813580C /* RCTImageSource.h */, + 50E59B9EDF6B2622F3A594660EB04AF5 /* RCTImageSource.m */, + 2CA5D52946D5146220F0C1D6E7DA0956 /* RCTInvalidating.h */, + EDD44CAE1181AC6836BA7E115466AF2C /* RCTJavaScriptExecutor.h */, + 0C821B113E261AE5237AE0BEC3E208B7 /* RCTJavaScriptLoader.h */, + C204583E3149ED5B14004D44F70870B6 /* RCTJavaScriptLoader.mm */, + BAA23C1CF418176CF23145E87404A612 /* RCTJSStackFrame.h */, + 19C43E2021D34953E63B6DF7BD3DCB2B /* RCTJSStackFrame.m */, + 3C2FCFF1B74797ED46F81119F1ACFE14 /* RCTKeyCommands.h */, + 0230A9B1EF23B78768AEC32DC03858BC /* RCTKeyCommands.m */, + 0981862D8B4B0A9BF6D227952C1B5AB8 /* RCTLog.h */, + 63A4E654F582CBCE2393A56FB247C076 /* RCTLog.mm */, + C894BDC9326638A226C65B45A7437B07 /* RCTManagedPointer.h */, + D882CD265BAAC8C8EB8DBD2BE886AF69 /* RCTManagedPointer.mm */, + 13073D43FC4026FEFC9288215CA8B051 /* RCTModuleData.h */, + 5925DB433330BD08AA33FABBF4FCA52E /* RCTModuleData.mm */, + BF23D26AA25EEC70A3E23E9191AEF7C8 /* RCTModuleMethod.h */, + 2684476A26F9AA36378CCD73BB417EC2 /* RCTModuleMethod.mm */, + 378045A1235160477787871E19B23164 /* RCTMultipartDataTask.h */, + F6D896DF889FC496FE599DB11FA9E0D3 /* RCTMultipartDataTask.m */, + FEDCC95D19CBA4FE7AA7D755C04571E0 /* RCTMultipartStreamReader.h */, + 7007E718875B8F5572CFEFC35B2EFF4B /* RCTMultipartStreamReader.m */, + E6B5011534201E3763AB22784CE8E753 /* RCTNullability.h */, + 87F05A51C7F86B2D2B14B62F6F1248FC /* RCTParserUtils.h */, + F0F8ECDEFFE4E135FB39B000FF214874 /* RCTParserUtils.m */, + AE94C387DBEC7942C7E5AAA1ACC5C13D /* RCTPerformanceLogger.h */, + D5427FE4E48FF6C6F79AD17B6DE1C649 /* RCTPerformanceLogger.m */, + 51441DAC4CCB0A6CE1CA2B3A3DFE8FFC /* RCTRedBoxSetEnabled.h */, + D0B19BB1EEF8E5AA0124189F290A8861 /* RCTRedBoxSetEnabled.m */, + 3866A25D361D738C3C4146B8EEECEC71 /* RCTReloadCommand.h */, + 87FD3BC45223DF4888204BDA75328D7B /* RCTReloadCommand.m */, + D4CEC3C8952503C4CA46E9C7A1C49047 /* RCTRootContentView.h */, + 7BB5B16C7B70B759347FE367321DD04A /* RCTRootContentView.m */, + F8D317B01532D8171FD0933F1D90EDB1 /* RCTRootView.h */, + 1A3C56EA8B1A865CCBEBA9138B63E16E /* RCTRootView.m */, + 70C1D1FB6C7ABB76EFBA9EA6555779B9 /* RCTRootViewDelegate.h */, + 437E9354DA6C66E56A1165795756265E /* RCTRootViewInternal.h */, + 0053F156D7C435536B98212B3917B386 /* RCTTouchEvent.h */, + 807D0468E3C3AA6AE839A3E3EB4A86AA /* RCTTouchEvent.m */, + FE57B27FCD352BE6A537713A07C9CE57 /* RCTTouchHandler.h */, + 6F35E6510C4EDF9E7C2CC215DC47AD10 /* RCTTouchHandler.m */, + 23E8E6412A8B80FB18F58A48DCB7C15C /* RCTURLRequestDelegate.h */, + D8835DFC24DE1B46F747338F9C259C6B /* RCTURLRequestHandler.h */, + 9945AD5713750C36E0A34FAAA28D97AE /* RCTUtils.h */, + 436A2C1CF5C436FE19DEA09C716D9B49 /* RCTUtils.m */, + 5DAF4B359C47429B3B0D698854CA7E83 /* RCTUtilsUIOverride.h */, + A6AE3A16051DF5AC6EA9519C91C6D99A /* RCTUtilsUIOverride.m */, + 1AC3A335A71373D11D159DC48AD1B476 /* RCTVersion.h */, + 6B7EFA3C553FFA3C0E411FD9481118B5 /* RCTVersion.m */, + 6A43995AA71DF326C4A3EB8629602CCD /* RCTWeakProxy.h */, + B7932D0F1549FAE90D2EA9D758631E48 /* RCTWeakProxy.m */, + EC324E72843E374033D976F6247E9D25 /* Surface */, ); - name = "Development Pods"; + name = Base; + path = React/Base; + sourceTree = "<group>"; + }; + C1035E1AC63F6D666DE9EA2BC26754FE /* Text */ = { + isa = PBXGroup; + children = ( + C8B9C11862042751C14615E6498444B8 /* NSTextStorage+FontScaling.m */, + EA44ACEDEE1F1FF7B1994EF60272F3CA /* RCTTextShadowView.m */, + 76BBD1CCC87BF6DB2FE482B80D841F12 /* RCTTextView.m */, + 67925FC22407721697D6FED16443727F /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; sourceTree = "<group>"; }; C119D52E8EC99A5AC98F09198183977B /* FlipperKitLayoutTextSearchable */ = { @@ -15795,23 +15872,20 @@ name = FlipperKitLayoutTextSearchable; sourceTree = "<group>"; }; - C195642847BA937722CC877950381E61 /* Pod */ = { + C1AF4CE1627007CE3A3D0544749498E9 /* react-native-appearance */ = { isa = PBXGroup; children = ( - 3202FBF29C4F149BBE0DB85272BDEF4A /* RCTTypeSafety.podspec */, + 2290F20C2B8587B16AAAA9195860246E /* RNCAppearance.h */, + 2ABB5695E72294DF01503F46F8958E57 /* RNCAppearance.m */, + F4C8D38F7CD6C7A1F5D3C85CE2F0D181 /* RNCAppearanceProvider.h */, + 1D50A0B9839ED6D059771A56CDAC5160 /* RNCAppearanceProvider.m */, + B3C7E4123287CD6897A3CA379BE17A43 /* RNCAppearanceProviderManager.h */, + 98873A3FDAB5470E663EE8F658A77ABC /* RNCAppearanceProviderManager.m */, + 415E79C7762D42558D18A3E0893F75D5 /* Pod */, + 31164C3A0492A78A33EBC23F1EDCD567 /* Support Files */, ); - name = Pod; - sourceTree = "<group>"; - }; - C26BE33995885F3ABAE3B9FA3EB3A09B /* RCTRequired */ = { - isa = PBXGroup; - children = ( - 1EDCA54E81D9ACA115E8378C776B89B3 /* RCTRequired.h */, - 00875CA2500300AC9A25552707D3BBF9 /* Pod */, - 74B1B41A2D3AED6DB5E87BA16ADCA824 /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = "<group>"; }; C37A9A8DAE8189549B04D577D3B8DC1D /* FKPortForwarding */ = { @@ -15824,19 +15898,14 @@ name = FKPortForwarding; sourceTree = "<group>"; }; - C3AB8A18231B5688EDFF50D20B3DC752 /* EXPermissions */ = { + C4560E7CEC82A107517324995480A5EB /* auth */ = { isa = PBXGroup; children = ( - FDFF516A56D29D5DD5ECFF3BA27CE632 /* EXPermissions.h */, - 32D367A7A858ABE44FBECC0E98AC64A5 /* EXPermissions.m */, - 54245F296835AF6CDF72895DD82B4148 /* EXReactNativeUserNotificationCenterProxy.h */, - 3F543489C546E88E54FBFE968E7C4CB1 /* EXReactNativeUserNotificationCenterProxy.m */, - 69A2726EAA368AB3A8FA67EDA4ECDE64 /* Pod */, - 5909ECAD900C4B4F254E9526CE4E84AF /* Requesters */, - ED840B366A11DBCDBB35F536F270E2C1 /* Support Files */, + 72E71855F5E7A8418726894F59E554B8 /* RNFirebaseAuth.h */, + 8D4945E36B5CAC10D6AAB064790C2915 /* RNFirebaseAuth.m */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = auth; + path = RNFirebase/auth; sourceTree = "<group>"; }; C4668C47E756944DFA3E35A0C08AE1BA /* Support Files */ = { @@ -15849,32 +15918,6 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = "<group>"; }; - C46FDE9C10B11BBC72ABA45307F9F715 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0DB54EA3A032E7EF454EF8CE2475647F /* EXConstants.xcconfig */, - 99B64C61FBE22440787B42BDCA2FBA23 /* EXConstants-dummy.m */, - 531E1A693BA508D60B8ED475B73D6DB5 /* EXConstants-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = "<group>"; - }; - C4B014B347A0E9806B4C7F5DDDA1FAFF /* Default */ = { - isa = PBXGroup; - children = ( - 0CED250E298424DEDF8EECF0B09A9207 /* Base */, - BAB886CAB19809A369E2B7496F803007 /* CxxBridge */, - DE787686CC6867685D32A06FA67FC1A4 /* CxxModule */, - 39F9551863818E3A324AEFD0C4013D27 /* CxxUtils */, - 8A39086E1FBA6DBB40E4517BAE493275 /* Modules */, - A9EFF81D0E42440C6B2289C84A695297 /* Profiler */, - F3A95A4D8273675264DB7DBE6BADFD7D /* UIUtils */, - 9D1828AA92DC6E0FA7B099C117B69796 /* Views */, - ); - name = Default; - sourceTree = "<group>"; - }; C4B5366692250D9810DB72679E2564FF /* FBDefines */ = { isa = PBXGroup; children = ( @@ -15883,64 +15926,56 @@ name = FBDefines; sourceTree = "<group>"; }; - C58F7B01FEDDC5AA19681E5C6B4BF8DB /* ViewManagers */ = { + C5AC6B708CB022009FD7B7E6FF5A1B05 /* Support Files */ = { isa = PBXGroup; children = ( - 4DAFCF05956B7A5E5240AEB63CCC16D7 /* ARTGroupManager.h */, - 29A7884B00029944AC2B47C05C19C558 /* ARTGroupManager.m */, - 379FE274E8A7DCAC4B987B18D6867063 /* ARTNodeManager.h */, - 9991420F4188227A754E034852D2FC13 /* ARTNodeManager.m */, - 735297AC68B26100B5A9CDFE7D2204D3 /* ARTRenderableManager.h */, - 8C6DB336E61CE73B46E0B14D8395C228 /* ARTRenderableManager.m */, - 3C03B2D351FC20816E45627C7934C0AB /* ARTShapeManager.h */, - 5DFD3C57B3BD3377FEF14E236D53E795 /* ARTShapeManager.m */, - 115C472C4001AE49AA583871E2806DF6 /* ARTSurfaceViewManager.h */, - 85808F8B10091CD0E52075D763A399BC /* ARTSurfaceViewManager.m */, - 4949D1467B88E537DAB04E4BBECF0830 /* ARTTextManager.h */, - FD56DD05E452DC489C5852DF2964668C /* ARTTextManager.m */, + AA7D691E6F6853403B602F10AE7EA828 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */, + 833088975D18E2C0CDDAFC698D9B6EE1 /* RNImageCropPicker-dummy.m */, + F22234F81976884632464C9774982352 /* RNImageCropPicker-prefix.pch */, ); - name = ViewManagers; - path = ios/ViewManagers; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = "<group>"; }; - C5FCCB56E0847BF5FD84A3C6F18D374C /* Pod */ = { + C617BBE7816A81E36CB3041070423444 /* Pod */ = { isa = PBXGroup; children = ( - 319BDDC22E54A7B2B3B6F822B75394DC /* React-RCTVibration.podspec */, + 760A7D61D49FCE79E0D382110003A073 /* UMAppLoader.podspec */, ); name = Pod; sourceTree = "<group>"; }; - C626065BE080D0877225927819A96633 /* RefreshControl */ = { + C693D6EC6D4265D76D49991B452222E0 /* RawText */ = { isa = PBXGroup; children = ( - 08FE08082A646B5291E0826CBC729CBA /* RCTRefreshableProtocol.h */, - 274F250FE65F56868C40E5E70B546957 /* RCTRefreshControl.h */, - 5500E6F36870F3141E33609BD3C5966C /* RCTRefreshControl.m */, - CCE927DC1A757903BC5329A45A38E866 /* RCTRefreshControlManager.h */, - 20C298BEB48D13AB7E5E3913EFC492A7 /* RCTRefreshControlManager.m */, + C4A41718993E223E88F65EF3AF1ED7FD /* RCTRawTextShadowView.m */, + 7C55A44A457F10A97820FAB548C8F44A /* RCTRawTextViewManager.m */, ); - name = RefreshControl; - path = RefreshControl; + name = RawText; + path = RawText; sourceTree = "<group>"; }; - C6C4AD4AD892A02AFABBAC7004ACB1D5 /* jsi */ = { + C6F3752733D79FEC9812F69FA82D43CF /* RawText */ = { isa = PBXGroup; children = ( - 63940262A1C022F64E735F4B35879C0C /* decorator.h */, - D0C971578E953F8059B4413C67425989 /* instrumentation.h */, - 28CFF1631686533CBDAC4F58170D6326 /* jsi.cpp */, - 7FE569434BA87224A4D37B3FC3A8C666 /* jsi.h */, - ADBD2E2A0CCC65EE9926134BEE529124 /* jsi-inl.h */, - 2102EFE53A7C0C91FA921F01113D4E9F /* JSIDynamic.cpp */, - 260B98901DB3236D44D2001FFD6C7550 /* JSIDynamic.h */, - 12FA32DC2FFD7D3C5521D0A2AC95BC00 /* jsilib.h */, - 94EC70748ADA5F6290455FBBA1C057B7 /* jsilib-posix.cpp */, - 05E86336AF4C6134869ADC56CB101B4D /* jsilib-windows.cpp */, - 6A5FA9017C33745EB9B935A35633FADD /* threadsafe.h */, + DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */, + 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */, ); - name = jsi; - path = jsi; + name = RawText; + path = Libraries/Text/RawText; + sourceTree = "<group>"; + }; + C777A79262866125047453BCD14FFB04 /* React-RCTSettings */ = { + isa = PBXGroup; + children = ( + E7C2406EB26E7373D603678D269F1956 /* RCTSettingsManager.mm */, + 55D0A10204E528F27BA1071BD8E43D9C /* RCTSettingsPlugins.mm */, + 59D56E212D35F13C04A478945DFDB112 /* Pod */, + 1609EB5F050C78DDBA9B0764B53FFFED /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = "<group>"; }; C786669D042FE0DAA53EB9D2C976623D /* Crashlytics */ = { @@ -15960,16 +15995,6 @@ path = Crashlytics; sourceTree = "<group>"; }; - C7F338C95ABC2702A9A8BD8A25F50FE4 /* Pod */ = { - isa = PBXGroup; - children = ( - 468C35F5B2133BF7FB4CF023226AA2AA /* LICENSE */, - 97E0B392B2123F023B7AC1B70B96C3A0 /* react-native-jitsi-meet.podspec */, - DC5B486DF388EB364559F3BEABBEB965 /* README.md */, - ); - name = Pod; - sourceTree = "<group>"; - }; C86F5C46F6322C99338DA462F3D77D23 /* SDWebImage */ = { isa = PBXGroup; children = ( @@ -15997,28 +16022,93 @@ path = GoogleUtilities; sourceTree = "<group>"; }; - C8E4A58F00F0B0CC297A8DE02652EA96 /* KSCrash */ = { + C891E94FBE9705A583BEBE0A7091D86E /* react-native-safe-area-context */ = { isa = PBXGroup; children = ( - 283E467377E2B157DC49481C307A4AE0 /* Recording */, - 9A8D681FA1FB6D2372FD42CE7FEFB4E0 /* Reporting */, + 3FD2C5A75B26AE120DA1A0C22A771FF4 /* RCTView+SafeAreaCompat.h */, + 3FA335B90F2FA11F4F3680BECA99C737 /* RCTView+SafeAreaCompat.m */, + 268E537109136434EE2FF5DFF465541C /* RNCSafeAreaProvider.h */, + 08794FC33FD652DF519C9411038FB5A3 /* RNCSafeAreaProvider.m */, + 8A2D38415C9BDA898602EC4847A794FC /* RNCSafeAreaProviderManager.h */, + 08B854B9FB03F126D377C8BD3083158C /* RNCSafeAreaProviderManager.m */, + 7B0639111348B07A51454B418635743A /* RNCSafeAreaShadowView.h */, + C048DC61E2D9E4D99D1D739E53B64635 /* RNCSafeAreaShadowView.m */, + E496A1597D2C8132C654D45BB3F241D6 /* RNCSafeAreaView.h */, + A0127FEFFEA4DAB715DA8E9814B88B22 /* RNCSafeAreaView.m */, + 97FC6BD7C0618EAA750D1B4108648ECF /* RNCSafeAreaViewEdges.h */, + B798C6C06396008B406AB7FCBAD216BB /* RNCSafeAreaViewEdges.m */, + 7D7561A1F3D2AEBED36E92BC3042E4BF /* RNCSafeAreaViewLocalData.h */, + 26BFB0467BB9E53213E8BCEDE7E73CD1 /* RNCSafeAreaViewLocalData.m */, + 0C68CF456F99D500678CCA5E50593E0D /* RNCSafeAreaViewManager.h */, + 0DA3592506DCD6118EF12506F070EE5E /* RNCSafeAreaViewManager.m */, + 6CCE025922FB4CA88EB49C8B913D1801 /* RNCSafeAreaViewMode.h */, + 7736E765A07A194B46126DE3DA84CACE /* RNCSafeAreaViewMode.m */, + 1D3D928A5F0A2C90D16DBE9E7AE0CB99 /* Pod */, + 01B83819926FC18242C3BCF6E947D9C4 /* Support Files */, ); - name = KSCrash; - path = KSCrash; + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = "<group>"; }; - C920C91601CB6A097E118F66DE6C5AA2 /* react-native-jitsi-meet */ = { + C8DFAEF4A90ADEF17C27829CB82C9254 /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( - 5CE0B684D1BCA6EEDD82AD1128AEB955 /* RNJitsiMeetView.h */, - 15B621E83A9F251C32699659261E1D7D /* RNJitsiMeetView.m */, - 8C799DB9847D6998287999FB00A86550 /* RNJitsiMeetViewManager.h */, - 6FDA4EDE4B25D9708BBC736A4F655E23 /* RNJitsiMeetViewManager.m */, - C7F338C95ABC2702A9A8BD8A25F50FE4 /* Pod */, - EC8EA81F5687EBD5CDE11C47DB79B462 /* Support Files */, + 3A8479C700A99D42A45C19893F8A5857 /* CoreModulesPlugins.h */, + 419ED541E249724B97BD0D0933226484 /* RCTAccessibilityManager.h */, + 27CE5F38E7E2C21F4A1C2ADC04919A91 /* RCTActionSheetManager.h */, + D69C09EADAE5AB9F3A5B910990EAC6AB /* RCTAlertManager.h */, + 6FFB52B3033BBB7AE6287ED693E36B0A /* RCTAppearance.h */, + 617B59A4E91152675FA15196E979E7D4 /* RCTAppState.h */, + 62AA18061B5817E5FE1A408600036362 /* RCTAsyncLocalStorage.h */, + C3B12190FAA3292458A918B4AFC24225 /* RCTClipboard.h */, + 469DD77831E65227AA6C84B6C2B2AC01 /* RCTDeviceInfo.h */, + 827552D6A3A46085C0AF955B74724589 /* RCTDevMenu.h */, + 7D48981D86849DBE434AA8B89B6DE997 /* RCTDevSettings.h */, + E7846734562A86F0F18D518A1A103385 /* RCTExceptionsManager.h */, + 2C315F99CBFABCC17238E3253EA2F661 /* RCTFPSGraph.h */, + 2598E2C79750DFB023DA23A9AFB1C983 /* RCTI18nManager.h */, + 05FD565D63FF14AEE82757A428C2A6B2 /* RCTKeyboardObserver.h */, + 4E4B781294FCC5535E344853261D102B /* RCTLogBox.h */, + 9FF3DD9B9C1335E737870C0ECA10AD76 /* RCTPlatform.h */, + 6EF267CDF7C5FA740D80DCCE1093F7B7 /* RCTRedBox.h */, + E76D46F06A84B4B9286B578A69AD010D /* RCTSourceCode.h */, + A0AE1F909E2334BA4F0E4BDCC7D9C45C /* RCTStatusBarManager.h */, + 9540A2D9667B50079020C6B62A09F05B /* RCTTiming.h */, + 8F5F09B295F2D3446244328E54525852 /* RCTTVNavigationEventEmitter.h */, + FC62EE3D482E365E56024FE8B612D7CA /* RCTWebSocketExecutor.h */, + 740A733248063787C4E6381A9A9E6388 /* RCTWebSocketModule.h */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = CoreModulesHeaders; + sourceTree = "<group>"; + }; + C9C7AFAF3C20900E7E2BF04BC0E51D19 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + B3143AC7D783B32CE3A0370B189EAE04 /* RNCWebView.h */, + 42A510FC5C085CC40B04B6AB76649708 /* RNCWebView.m */, + BE27740D59217F5C5C5DBE3AC02D64A0 /* RNCWebViewManager.h */, + A040E75C09052596DFD08A69E7D684A3 /* RNCWebViewManager.m */, + 3DFBAF76F2517CC481FBA77F96333C94 /* RNCWKProcessPoolManager.h */, + 8AAB56A3E9F02762A877ADADABED82F3 /* RNCWKProcessPoolManager.m */, + 0283F8E5059CB7628E599316EBD9C880 /* Pod */, + BB278DC67451484CB26D3BB9DA9FF098 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = "<group>"; + }; + CA600A053218B684BD85DB28B26CA5A6 /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 5AB135E598AEE7B5B14E3597613A98A4 /* DeviceUID.h */, + 1A944B362F74B5E301A83ECDA64AEE10 /* DeviceUID.m */, + DDD9A8FF0995E1241DCED980BF3FAA61 /* RNDeviceInfo.h */, + 91B36F266B9D8615A7218FF77A6F09CA /* RNDeviceInfo.m */, + 378AA1E05E8AEA45E7D3057D0F0A92BB /* Pod */, + 4A2F677C508DBC4CFA621CCC2D1ECB60 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = "<group>"; }; CB8131471207A879CA18F07F285243C6 /* CppBridge */ = { @@ -16028,20 +16118,14 @@ name = CppBridge; sourceTree = "<group>"; }; - CBA01CF69FAFB4EACE87D1C82356D0DF /* react-native-appearance */ = { + CB8BC73A96760860712B5E192680A0AA /* Pod */ = { isa = PBXGroup; children = ( - 1BA5CB87163FBF3709D07434FE50E623 /* RNCAppearance.h */, - AE7FA7CA98837A65F14935927BC28B7F /* RNCAppearance.m */, - 109AC22229D7FE4FC59622872467FD09 /* RNCAppearanceProvider.h */, - 43DE7A16E50B78A6B067DEA6AA4EE763 /* RNCAppearanceProvider.m */, - AD0A359FFEA665944E4B5F90E42E6223 /* RNCAppearanceProviderManager.h */, - 5F8AF113A509813E95166E06F0CECA07 /* RNCAppearanceProviderManager.m */, - CD3AC82A150A14463BF696EE980FECA3 /* Pod */, - B4CB3E457CE6C3C54FF9CFC26D394344 /* Support Files */, + 0A2744498D0149896FD5A91ED396F100 /* LICENSE */, + 401979E8E4C19911C6E4F9B3742ED49A /* README.md */, + CB89C0E53E4B81628E581462D440B938 /* RNAudio.podspec */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; + name = Pod; sourceTree = "<group>"; }; CC1D66F0EC6F37FE0B871B0F7AF85A20 /* FlipperKit */ = { @@ -16065,23 +16149,56 @@ path = FlipperKit; sourceTree = "<group>"; }; - CD1CB2506C1AA045428CDA89276D4D67 /* Support Files */ = { + CE052E0B091BF051B42A8EFFFCEF6A55 /* Nodes */ = { isa = PBXGroup; children = ( - 695E8FE81F6E84CC91ED24E33B1B409F /* React-RCTText.xcconfig */, - 02E7806F9CAB5FC3C3A6D2F4B19FB0D7 /* React-RCTText-dummy.m */, - 62E3F1CA2AF2B2798436C6CE66C9B4CF /* React-RCTText-prefix.pch */, + 69735FAF2EE9D19F875455375BED5E67 /* REAAlwaysNode.h */, + 8379467A8B0AAD43D48CACAB090CD6B5 /* REAAlwaysNode.m */, + CA934B616778A58F79F91943D21AD163 /* REABezierNode.h */, + 184BA109B3E3ED82B00E700254AF3AD7 /* REABezierNode.m */, + A904A75FC50154E2FBAF567CB3737BE2 /* REABlockNode.h */, + B8CB036643D44984F995A2F1DF3C18AA /* REABlockNode.m */, + 6C56F7C925156EE85B46657168DA3106 /* REACallFuncNode.h */, + 200A3530239A107CD98D893C9A4DAA61 /* REACallFuncNode.m */, + BB1BF29072A4F7C70FC2C39711F7FDF4 /* REAClockNodes.h */, + EA02EC2BFDF7958CBC02B8993CBB85D4 /* REAClockNodes.m */, + 2C3ACBCD984A4A11C1B429B020F1B81C /* REAConcatNode.h */, + C4E01BA3026E41228999D2A42ABB1876 /* REAConcatNode.m */, + 429EC9BDA101E3155E8BA23E62D9E72D /* REACondNode.h */, + E851E6CD968E6A6AE221C1053E27E8F7 /* REACondNode.m */, + F0E0C101451EA03BB79D6AAFC9A07CBB /* READebugNode.h */, + 50F4F2490052CAE69DE71527843602A5 /* READebugNode.m */, + 012BB9E56B33EBF4790164443F9F9352 /* REAEventNode.h */, + A1534F22DB54903C6CC1A9A16D27592C /* REAEventNode.m */, + 47BB49A7A88CDA666966A40A60D0472B /* REAFunctionNode.h */, + FEE12A9E98B8D825BBCE044BB9BDD0FD /* REAFunctionNode.m */, + F8248CD3ADC3F5F6091D2CFEEDCBC10E /* REAJSCallNode.h */, + B90463474E1454D60D3BDA3C4699CB69 /* REAJSCallNode.m */, + 6D6FD24549CFD1B0EDFFEDBE798C54C9 /* REANode.h */, + 08F1F3E5061E92E19B7F12E323613901 /* REANode.m */, + FC1169799DC69BE14CE10CA9F70E27B4 /* REAOperatorNode.h */, + 847F0DE87D9F5EA07C384415DA780F83 /* REAOperatorNode.m */, + 562584E82F2BA44F023797AC4AEF56C4 /* REAParamNode.h */, + B524BF132646DAB58666BAEE74F53B86 /* REAParamNode.m */, + C40CA3B5B9D97DCF31953A8A61A49CF5 /* REAPropsNode.h */, + 26F21C4F043E602684FCF1300BDFC8F7 /* REAPropsNode.m */, + 3448FC55C8E82FA0CDC44861D2A94718 /* REASetNode.h */, + 13839A8281BCFDFAEAECA7819DD04C4D /* REASetNode.m */, + 44273F4E9B42941C20D465C19E4081EB /* REAStyleNode.h */, + 447D548BC3C3A6985F7B1265A736866A /* REAStyleNode.m */, + F15223809380E9E04498D8B990A790A9 /* REATransformNode.h */, + F3C3E84FE030DC137DCA3DE564F34749 /* REATransformNode.m */, + C78AED4A45BF8EBFEB1300A407736A56 /* REAValueNode.h */, + DCCD4B155D3FF26274DC1610F26D297A /* REAValueNode.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + name = Nodes; + path = ios/Nodes; sourceTree = "<group>"; }; - CD3AC82A150A14463BF696EE980FECA3 /* Pod */ = { + CE48D817A8B89392554ABCE002A6C2B0 /* Pod */ = { isa = PBXGroup; children = ( - CFCCD7451FD53867F8A88FED3E953B7F /* LICENSE */, - E094BE5891DED36A3C2F50899361FBFB /* react-native-appearance.podspec */, - F0244C08DDB773008F0D68649F09FAF2 /* README.md */, + 7E8AB43A0D19CAB66371A64DD8718435 /* RCTTypeSafety.podspec */, ); name = Pod; sourceTree = "<group>"; @@ -16095,58 +16212,52 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = "<group>"; }; - CE6673E1ED99093C70B2218633BE65A1 /* Support Files */ = { + CE85A364C9CC8A2E9BC1E75A357714F1 /* ReactNativeKeyboardTrackingView */ = { isa = PBXGroup; children = ( - 4844DEE99A51269908F7176068E8A268 /* UMConstantsInterface.xcconfig */, + 61A59992915560BF800EF136C199BE56 /* KeyboardTrackingViewManager.h */, + 7EE8986FCA597D38BB69720F4708A824 /* KeyboardTrackingViewManager.m */, + CF9E4ED8267D8374BA9BFC9B190F5982 /* ObservingInputAccessoryView.h */, + CE890AED702E2B7D65D9C57CA1C84A4C /* ObservingInputAccessoryView.m */, + 116FD789F72BCE8CECF811A67F7E8458 /* UIResponder+FirstResponder.h */, + A5B407CB7FB98FE235ED25666DD2A4A7 /* UIResponder+FirstResponder.m */, + 8AB8D30C72246DC959F930A37B7B0B47 /* Pod */, + 1AFB6AFCE41371CBE9B1057E5FA11DA5 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; + sourceTree = "<group>"; + }; + CE8E3C4A204BD8658E8239FF66F7E3A2 /* Pod */ = { + isa = PBXGroup; + children = ( + BF0A58843EA221CB4FB1CA0B8A1BD1D9 /* LICENSE */, + FCDC9F5D6C960EF2306EBEDC5BE43AB9 /* README.md */, + 2F4763AE51946C33BE24C00FDAF0EA71 /* rn-fetch-blob.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + CEF7B960F2F07CB31CC57B6B60A56BFF /* Pod */ = { + isa = PBXGroup; + children = ( + 24EFAE732626F70AF40D14252040F976 /* EXPermissions.podspec */, + ); + name = Pod; sourceTree = "<group>"; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - BFDA2FBDF9F04681C07B3AC0969FC1D6 /* Development Pods */, + F87A5B50954C5E7128EC05D520E6DD4B /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, B339121AFB1DAA8FF0BD501266DE4AC6 /* Pods */, - BEC3BACA2CF6A366F4B022A7E01F2DAD /* Products */, + E31346C0B67ACF2249F832AF0EB5F565 /* Products */, 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */, ); sourceTree = "<group>"; }; - CF2F2D558A38D83939071E532724D2B7 /* EXFileSystem */ = { - isa = PBXGroup; - children = ( - A614829A6886D1836F2A11CD7CAB932B /* EXDownloadDelegate.h */, - 49A3B6F8D50B3FCE7D69AC55BDBC26D7 /* EXDownloadDelegate.m */, - F439BD20B5301F3B48D4563AAF2F7D5F /* EXFilePermissionModule.h */, - D7B199325D8B69080DF84749D4E46FF7 /* EXFilePermissionModule.m */, - 99CF9BBC8C3D785A1135FA10C0D87201 /* EXFileSystem.h */, - 3DDB4F771CE941B081304B03114DB50D /* EXFileSystem.m */, - 97D0607D2C9B9408448E91A74F6B78F6 /* EXFileSystemAssetLibraryHandler.h */, - 30DBFC7A4FF039C5917173CBB4D02D51 /* EXFileSystemAssetLibraryHandler.m */, - A5D6458122916DC0D27375741819D5A9 /* EXFileSystemLocalFileHandler.h */, - C8ABC113DB36F18AF7D1935E65C2EE0C /* EXFileSystemLocalFileHandler.m */, - BADDEA11E68ED4D4903047D2E68E2403 /* Pod */, - BE70ACB1E9C000015261CEA6DC1C4D80 /* Support Files */, - ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; - sourceTree = "<group>"; - }; - CF56B773F5732C0149932464728BD6E6 /* Pod */ = { - isa = PBXGroup; - children = ( - BF703B0A46DDEB1768AF3DC1C38E6C97 /* api.md */, - A19FAFD73781DB7C583CF0D09793324C /* LICENSE */, - 9CD31ABEBCAC97BB5D04D93786BDF51E /* ReactNativeART.podspec */, - 4162C587702750AE20889B623F3E300A /* README.md */, - ); - name = Pod; - sourceTree = "<group>"; - }; CF77C800B0B5F287497929A65AB1821C /* Support Files */ = { isa = PBXGroup; children = ( @@ -16158,43 +16269,12 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = "<group>"; }; - CFD3D3C7EE89B68343C589DED7C91F49 /* perf */ = { + CFE8113FBC62FFEFB1E0865269337590 /* turbomodule */ = { isa = PBXGroup; children = ( - 3E875E5D8F30242B23D7B7AFD926CE3D /* RNFirebasePerformance.h */, - 54E0AC7DA579910DBE058F2F7FD0BE37 /* RNFirebasePerformance.m */, + 285D0D72E18EC4C84478990CAEDCB68F /* core */, ); - name = perf; - path = RNFirebase/perf; - sourceTree = "<group>"; - }; - D0DF1A7625BDABE388B1787D2A13A3DB /* Pod */ = { - isa = PBXGroup; - children = ( - 376289F925BBA97BFE2326E9482FBD1D /* LICENSE */, - 44ED62CC3DEFDFACDBFB15E97D56696E /* ReactNativeKeyboardTrackingView.podspec */, - 2E90EB2ED936DFD9CED122BA83D782D9 /* README.md */, - ); - name = Pod; - sourceTree = "<group>"; - }; - D0E62B241DB79FCE69D7AB6E3F4C09E4 /* Support Files */ = { - isa = PBXGroup; - children = ( - D3688DC296671900406487C21CB46F51 /* RCTTypeSafety.xcconfig */, - 1E14F4C3F2A2C314AC444FDF3BD90749 /* RCTTypeSafety-dummy.m */, - 2C696B4ACA920D873CD4B01DDB9D63FF /* RCTTypeSafety-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = "<group>"; - }; - D0F0641275DDD2689F69A3C408E42AB1 /* Pod */ = { - isa = PBXGroup; - children = ( - 31BD267E131ABFAF03BF7C2FFC0CB16C /* UMFontInterface.podspec */, - ); - name = Pod; + name = turbomodule; sourceTree = "<group>"; }; D10560E4D47F42F90E45688216A60113 /* UserDefaults */ = { @@ -16206,73 +16286,53 @@ name = UserDefaults; sourceTree = "<group>"; }; - D12A733137613248F36931DC8F9F4101 /* UMFaceDetectorInterface */ = { + D18367236AC4A77D8B5DEA9B0E1FEA56 /* Pod */ = { isa = PBXGroup; children = ( - 39F290DEB801CA50C62E5E8CBCCA0EC9 /* UMFaceDetectorManager.h */, - CCC43AA05820F3E6524E3635F8868E41 /* UMFaceDetectorManagerProvider.h */, - 0611BCBB225EF42BA40CF71ADD05EBDB /* Pod */, - 892FD52D4CF3C3E0C1967B40D2E803CE /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; - sourceTree = "<group>"; - }; - D21ECA5BB75C00B48BF1F82ADA6438A6 /* Pod */ = { - isa = PBXGroup; - children = ( - EB25D3C9C1DD96EA022033C5FFB7D095 /* React-RCTNetwork.podspec */, + A348072444435A6F99F3323DB6778CA3 /* UMFaceDetectorInterface.podspec */, ); name = Pod; sourceTree = "<group>"; }; - D34039DEEAA0AFB3E1E964FD0C82BE95 /* Pod */ = { + D2CE725788413C62F26BE7F02819780B /* Multiline */ = { isa = PBXGroup; children = ( - 85D00F971517CFB2541A5CA28678B1E4 /* React-RCTImage.podspec */, + 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */, + 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */, + 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = "<group>"; + }; + D331E02BC0F501E1449ADCE059FE68B9 /* Pod */ = { + isa = PBXGroup; + children = ( + A48F2BC58B4B65559CFF40E6AF5D31D8 /* LICENCE */, + F2BCB20CE87AD5A692F09AA4B712F2DC /* react-native-cameraroll.podspec */, + 425595E475601471A5020B4C92A26954 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - D437FAF56633251C1E1A019D2B5E092C /* Pod */ = { + D3F0A476A68FEE435021BFF21486BFB2 /* Support Files */ = { isa = PBXGroup; children = ( - 1F69B93B80594B6B0FA28AB7DB1E4D97 /* README.md */, - CF24CC5147D5F678BEAA84FED20E8FB9 /* RNRootView.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - D477883B87E83A6AFBE31DB6FAB59DE6 /* Pod */ = { - isa = PBXGroup; - children = ( - 5F985C910FAE0FE1BAA10A83557C1054 /* UMTaskManagerInterface.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - D4D95AB4FB5CFF4E4078A0DA92F272C7 /* UMAppLoader */ = { - isa = PBXGroup; - children = ( - 4EBCFAF9789A05515D413DBD56D1F75B /* UMAppLoaderProvider.h */, - 024002479A430A739738CCA4DA9D7A68 /* UMAppLoaderProvider.m */, - BFC50070720434290AE167887167E90F /* Interfaces */, - 8B7C665C2E7180D368D23E8BFD6A5DED /* Pod */, - 5D3A206D8E078089114CCC25DE3A9710 /* Support Files */, - ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; - sourceTree = "<group>"; - }; - D51B3C0D8DD3F030D09BC600CF78A8DC /* Support Files */ = { - isa = PBXGroup; - children = ( - 9A944AEE1EF52C6753DF710C70F61969 /* RNDeviceInfo.xcconfig */, - 1A6DCEFE83E5A78717DDDA2DE42610E3 /* RNDeviceInfo-dummy.m */, - A7A7933007CDF22855F7CE2EED3BDFDC /* RNDeviceInfo-prefix.pch */, + 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */, + 994A71C4449C02301B04DA85D8A982B1 /* EXPermissions-dummy.m */, + BB11F78682F5F4581E3FDA9EDCA66206 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; + sourceTree = "<group>"; + }; + D44353245C20E32C6A83E090B12CC8BE /* Pod */ = { + isa = PBXGroup; + children = ( + D54DA433BF592F5AB15189D1F3CB1DD5 /* README.md */, + 20186ADFF4E69C5D1FC63266686DEC52 /* RNRootView.podspec */, + ); + name = Pod; sourceTree = "<group>"; }; D53C95D5E768AACE420754B2B028A5AE /* RSKImageCropper */ = { @@ -16312,18 +16372,6 @@ name = Reachability; sourceTree = "<group>"; }; - D5D4DF678BB25631904489F3EA991B98 /* RNAudio */ = { - isa = PBXGroup; - children = ( - 2A19CCD10A9ECB726B21E9055C91C72D /* AudioRecorderManager.h */, - D935B87E7D5BC9E3AC3E2CF9C81D1084 /* AudioRecorderManager.m */, - 42D84432A3E835A7E4F3D6F02893DD80 /* Pod */, - 219B7B4394F8B94794E26A4FE45CA4AA /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; - sourceTree = "<group>"; - }; D5DFCB47B30B33F24741CCBE6334317C /* Frameworks */ = { isa = PBXGroup; children = ( @@ -16335,56 +16383,19 @@ name = Frameworks; sourceTree = "<group>"; }; - D71B5AD5888FC9D84ACFB4B41BF81214 /* BaseText */ = { + D7AE5B1FF606197028A74A02A761B3EA /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - 66D11326AF5E22AD70B87CEFA2511021 /* RCTBaseTextShadowView.m */, - 959E934C1B3774B4E6211C3E4C0FBBAC /* RCTBaseTextViewManager.m */, + 1632967B47D1DE19EBEFF374D7049024 /* Source */, ); - name = BaseText; - path = BaseText; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = "<group>"; }; - D79B62FB8DCCE39587FAF72BEE64B4E3 /* ScrollView */ = { + D7D63AAB97F184EEC62D34A2807FA7A9 /* Pod */ = { isa = PBXGroup; children = ( - 07DA7436B67D3250B60725838F5FBD34 /* RCTScrollableProtocol.h */, - E689F576977D491326DE28FC2D88ED4B /* RCTScrollContentShadowView.h */, - 61B1B88F486C629CDA3174F191E86CB5 /* RCTScrollContentShadowView.m */, - AE3B096A68F34EC3F272AB427CE2F32E /* RCTScrollContentView.h */, - 77BA244B5408D2A80505DCCFF600BE34 /* RCTScrollContentView.m */, - B86FCFEB75C23E52A8A8B511AEDD037E /* RCTScrollContentViewManager.h */, - 08829BC9C202EA1752192651200FF24B /* RCTScrollContentViewManager.m */, - 06F7E102B8926396E85BF47205E1D5F9 /* RCTScrollEvent.h */, - 8C681060B85079E15C3C919754D2182A /* RCTScrollEvent.m */, - 53B744F59D1C04416D041480E8946D3E /* RCTScrollView.h */, - EAAF14D40D6F62A759FF979E7E42189A /* RCTScrollView.m */, - AA2E4C12A402ED62394D590463CEF58D /* RCTScrollViewManager.h */, - 15A42CBD5BC645142890154390C26E63 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = "<group>"; - }; - D7CA0589E7453E3E9DEE67DEB5B1C948 /* Pod */ = { - isa = PBXGroup; - children = ( - 481B3820998F43EDD713E62F75E310C7 /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - D7D2123DF0CAC9D268FC246A52E7F17D /* Pod */ = { - isa = PBXGroup; - children = ( - E84311BDB656CA57C4621E115D82D812 /* advancedIos.md */, - 5225F56B29130ED55B17AD04AC192D42 /* installation.md */, - 57F656144F13E21F98EB5E66F96DCE3D /* LICENSE */, - 872DB5CE3E77A0BD96B1C44C2C85A4D1 /* localNotifications.md */, - 4C052440A08990251FE8C34ABE1A8110 /* notificationsEvents.md */, - ADFC3B2C5AF11808B58CE85568ACC0CE /* react-native-notifications.podspec */, - 545DDB1511F7E1EB94975935ACFCB004 /* README.md */, - 9B93A2BC1D708EADE841B2E2F2EC5E0E /* subscription.md */, + 1C6DF07F4BCAEE95AE18C1A6FF7A1E16 /* UMFileSystemInterface.podspec */, ); name = Pod; sourceTree = "<group>"; @@ -16396,61 +16407,91 @@ name = Frameworks; sourceTree = "<group>"; }; - D9C5414C051BBA68C6329A1452CCD75A /* Sentry */ = { + D9ACA25F46506ACFF95BC67B763E853A /* React-cxxreact */ = { isa = PBXGroup; children = ( - A6718C4C72542DF368C21A46B50D9DA5 /* BSG_KSCrashSentry.c */, - 565B3AB90D3B33DFB09E81B36CFECE06 /* BSG_KSCrashSentry.h */, - CB80C19A0EF31918F5D4A1464B8086AB /* BSG_KSCrashSentry_CPPException.h */, - 9B41FAD9295CEE62A146EBDAD4034123 /* BSG_KSCrashSentry_CPPException.mm */, - 32D5FEFFC7497D57AF5301263E89ED9F /* BSG_KSCrashSentry_MachException.c */, - 44D6285937F4C5F37A9E2C88FB47A322 /* BSG_KSCrashSentry_MachException.h */, - E4013C4B1AA5C2BFE507D71BD3A686DF /* BSG_KSCrashSentry_NSException.h */, - 8216891CE27BD9229D26AFEBE1DDE84F /* BSG_KSCrashSentry_NSException.m */, - 2433ED05E10706705FBE91CF4448814D /* BSG_KSCrashSentry_Private.h */, - 9E211A0B094C454F064C853CA7D597DE /* BSG_KSCrashSentry_Signal.c */, - 0C672F4FBFB383A097DDBA19A88F15DE /* BSG_KSCrashSentry_Signal.h */, - B718EC319B4FA8F689C44AB0BE65BF4D /* BSG_KSCrashSentry_User.c */, - 4363F3255126FD5D35E83B598067BC60 /* BSG_KSCrashSentry_User.h */, + B5CCD8A80C54F72D40316EBB155801CF /* CxxModule.h */, + FA2060F52377558351C43D46F0379845 /* CxxNativeModule.cpp */, + 32D62F9FE254D779D1AF7414AED6EF81 /* CxxNativeModule.h */, + 9872589A0210618DBDA33C90F6F9EAED /* Instance.cpp */, + 6C5624E0E20A589ECAA03A7C6C028BDF /* Instance.h */, + 850919EAE9825E1550B656DF21466B86 /* JsArgumentHelpers.h */, + 6BC1449B2CD4362D1CA4046B1D8AA71C /* JsArgumentHelpers-inl.h */, + 7C4B351F8FB06F9DB07A3372945F2B68 /* JSBigString.cpp */, + 9DE6FE2B0EAF64393EAAF37AE268A59D /* JSBigString.h */, + 474B6F3D8B930EFEBD3F53CEF5115FDE /* JSBundleType.cpp */, + 056FEC49181BE5653FB8F593FF0BB55B /* JSBundleType.h */, + 3F26AD8F4F3D371230E2B519E3A584B8 /* JSDeltaBundleClient.cpp */, + E57CB5393938F05134054752FF3A5ACC /* JSDeltaBundleClient.h */, + E8DB84CAA9FFF35B26830F2F6B2E1093 /* JSExecutor.cpp */, + 201506DCFFE14B340C726A0F0563D72C /* JSExecutor.h */, + EAA20CCB46DCC333665BD15C89A69BB2 /* JSIndexedRAMBundle.cpp */, + FC429F00E2DBFC7193540F246B0E6365 /* JSIndexedRAMBundle.h */, + D9F1014F239236BC5F2F41AB81D21B01 /* JSModulesUnbundle.h */, + 850ED263FA09AEE617847B2309FD3D09 /* MessageQueueThread.h */, + 2395C55DF2741069950E865FC9E46A8F /* MethodCall.cpp */, + BE8B80ACCF53BCA41AC1082A7BFA65EF /* MethodCall.h */, + AD313F7671D7B76D259DAD10C0545981 /* ModuleRegistry.cpp */, + 25CF7B2E403EAF3907627D3B8AC8CA0A /* ModuleRegistry.h */, + 0DA5774B039E5920A5520A367E0DDF2F /* NativeModule.h */, + 5B4692F054A0876E2EE22CB02FCF1D54 /* NativeToJsBridge.cpp */, + E533079A5A60ED45D2840B8F31B01B66 /* NativeToJsBridge.h */, + AE5A2D2336BDACC59D1DDE28C598F1FB /* RAMBundleRegistry.cpp */, + B44FCB6AA07EFF8149CAA00C18C413A0 /* RAMBundleRegistry.h */, + 81A3F3B67C53BA4E6624587FB504709E /* ReactMarker.cpp */, + 7E99D2AE48FA6673B685C713DACBAD36 /* ReactMarker.h */, + CBE9F092E3CA7E0A323FBF3F4350A49A /* RecoverableError.h */, + 9A86B606D84FC5918002098DE6846840 /* SharedProxyCxxModule.h */, + 77A9C0F349533D8942E9CE893B5B7308 /* SystraceSection.h */, + 7CAA5C4B6FA05938AE46A49F0C30DE37 /* Pod */, + A3E5AFB8194CA5023FD4BDCEAA48BE12 /* Support Files */, ); - name = Sentry; - path = Sentry; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = "<group>"; }; - D9D1ACBD469E534821D13D21C9B8584D /* Multiline */ = { + DA69CFB8DD578BB441FC8193ABE45DDC /* RNScreens */ = { isa = PBXGroup; children = ( - 3E4B0DA731DAC06B044C723FE5A3A0E9 /* RCTMultilineTextInputView.m */, - 5B1B4DA7525B57D92E6D3A7F25DC90B6 /* RCTMultilineTextInputViewManager.m */, - 0A55C32FF9E9C1A62EEB8C335B948100 /* RCTUITextView.m */, + D33C61C8004717F147894A4F457C4CB5 /* RNSScreen.h */, + 07C5BA84758EAE136D02C19BC92E32A7 /* RNSScreen.m */, + E0416A48BB81A3B7DCD63873C246F10D /* RNSScreenContainer.h */, + 441F02D10BB61823144938EE3580E748 /* RNSScreenContainer.m */, + EDD126C6D0351882C6B39C1B0A2B3210 /* RNSScreenStack.h */, + 25515E093BB5827043AB4142E1B445A0 /* RNSScreenStack.m */, + E88F78294801819BD69BE99ED540E704 /* RNSScreenStackHeaderConfig.h */, + C72E95A79577DA868BD39B4664B30CA5 /* RNSScreenStackHeaderConfig.m */, + 78BAF8F24B2B9E7901298DBE7475BBB7 /* Pod */, + 78A6CF5DE4A8CB07DF1D443B204A7483 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = "<group>"; }; - DAC2D4C6ECD633C181253BDFC8CE8BDA /* config */ = { + DC51473D82ADE91D2682DEDAD92AEFBC /* QBImagePickerController */ = { isa = PBXGroup; children = ( - A46952CD02BADAC04BEEB04506A8A8BA /* RNFirebaseRemoteConfig.h */, - F0DA22F428291426C74C1FB9D997E8AC /* RNFirebaseRemoteConfig.m */, + 50B45D92C822BE77215EC7547CFF15C6 /* QBAlbumCell.h */, + 524B0B734499A06C5A775B80572E1787 /* QBAlbumCell.m */, + 06BB9BF3EDD857DAF1AE0CAA54A507FD /* QBAlbumsViewController.h */, + CB71456404F9CED77678659966DC7E12 /* QBAlbumsViewController.m */, + 487E3FEF367BF978805E546FCE64BCB2 /* QBAssetCell.h */, + DB30904BAAE60FADA3C166321E867CFA /* QBAssetCell.m */, + 205328114E4BF15CC8CF7906A5B8671D /* QBAssetsViewController.h */, + F08AB5F4C1F34510E8E82AA7FD7A56AA /* QBAssetsViewController.m */, + 51F0795B53F3F7136750F1F4752176FD /* QBCheckmarkView.h */, + 670F0EBAC9E68A6388175F2D2C39F1E9 /* QBCheckmarkView.m */, + C24EE1A964E34FECB1A87A875FAEE2BF /* QBImagePickerController.h */, + 9678206A159276B63BD2EB7EF1B3C227 /* QBImagePickerController.m */, + D7D5330BA7F406E82D2A64AD902CE53B /* QBSlomoIconView.h */, + 6ED941F53DF92721599437932A10C44C /* QBSlomoIconView.m */, + DAC74069D9D5F477EAEF1DD93F60EAD1 /* QBVideoIconView.h */, + BFD4AB29C51CF8BDA8D6DC0DFFFC923D /* QBVideoIconView.m */, + DC27A0095FF48D6786C3E980C983CEE5 /* QBVideoIndicatorView.h */, + AF023C883F422DA6A47D2C7FABB249A0 /* QBVideoIndicatorView.m */, + FB0A6050612302C48F3B3458FBAD23EF /* Resources */, ); - name = config; - path = RNFirebase/config; - sourceTree = "<group>"; - }; - DCAAB6A5D8ADE6A10EA71415D4B26DDB /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - B3C0F98E9A89EC231E826EE7B671374E /* UMTaskConsumerInterface.h */, - 22D18AEB5846C5B54F7E0800E98526FF /* UMTaskInterface.h */, - 638682DE935CD84BD611ACB71BC7C1D9 /* UMTaskLaunchReason.h */, - 80F600F0859F860B673C10E3CA23C2DA /* UMTaskManagerInterface.h */, - EB4E415EDE96B418F63D591EE0CF673C /* UMTaskServiceInterface.h */, - D477883B87E83A6AFBE31DB6FAB59DE6 /* Pod */, - 121F7B66A9F8004AF4CCC552E68F1FB1 /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = QBImagePickerController; sourceTree = "<group>"; }; DCEBC47582BA5AF6BA8EFBC43A5ECF06 /* Support Files */ = { @@ -16464,6 +16505,17 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = "<group>"; }; + DCFC2C96F6CD71C07EF6C03356065EB4 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + BF94B8329559E0061A13D6AFB05B5ADA /* callinvoker */, + A77C70875B263AD408C51340B324E14C /* Support Files */, + CFE8113FBC62FFEFB1E0865269337590 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = "<group>"; + }; DD8BE39581B027039CA45CB5DB5F5DEB /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( @@ -16480,33 +16532,37 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = "<group>"; }; - DE787686CC6867685D32A06FA67FC1A4 /* CxxModule */ = { + DEC8CA3B88E8770615410AEDB283CC7E /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 1C3669FC0193628A02BC16ADE587B606 /* DispatchMessageQueueThread.h */, - D9801BDDA6F102C8A86A09E1DF885E4F /* RCTCxxMethod.h */, - A82505936A2D23D9769DF34C052ED237 /* RCTCxxMethod.mm */, - F1997B8A8F8C837D13423F0AE602CD4B /* RCTCxxModule.h */, - 2AB94246FA5A8587DCC2EF3CA5347550 /* RCTCxxModule.mm */, - 6488D764E9CC6A04FCB067377339CA78 /* RCTCxxUtils.h */, - 4B437B82D8B38DC6D02A8693715AE253 /* RCTCxxUtils.mm */, - BDF24138049CFE68DD50C74C1145242A /* RCTNativeModule.h */, - 36CE6F3BB9C5E2A84911F0EB0D50A85B /* RCTNativeModule.mm */, + 84D77D248D8B76E924E4417A4D9800DC /* UMModuleRegistry.h */, + 7D947ED0FFEF4F648CED33D72400571E /* UMModuleRegistry.m */, + 21C8C861B96FF98541E71324A1572405 /* UMModuleRegistryDelegate.h */, ); - name = CxxModule; - path = React/CxxModule; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = "<group>"; }; - DEDA4E11598F2D2AB62A8160A1FDCEE5 /* Pod */ = { + DFD5E3275D09951E802D172CF97DE4E5 /* Pod */ = { isa = PBXGroup; children = ( - BCE7FC47E01E1113555236AD959B8367 /* LICENSE */, - E9ED2999E1472E0B02C8044390F00419 /* README.md */, - A33F4A150E190B128E29945342EFCBDE /* RNUserDefaults.podspec */, + 971EE41F6B621CBCB9749076D4A5A465 /* LICENSE.md */, + 579AB1CB9E07D1EC28F83A7FE86F2DD6 /* react-native-document-picker.podspec */, + 503EA93552579AE3F0C775B13E3732AB /* README.md */, ); name = Pod; sourceTree = "<group>"; }; + DFE2569B13085FCC2A60F1AF5FA1EA10 /* UserNotification */ = { + isa = PBXGroup; + children = ( + 9C48F897B5BA1914E197F527232FA527 /* EXUserNotificationPermissionRequester.h */, + ECD7DBDB498A909518124AA224354D4D /* EXUserNotificationPermissionRequester.m */, + ); + name = UserNotification; + path = UserNotification; + sourceTree = "<group>"; + }; E000EB2B52AF91A09A49502795EB3694 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16516,20 +16572,6 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = "<group>"; }; - E005FE124301CB0F9580BB5861F2007D /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - 0C8E863EDC7883D4B84D3851895D0D76 /* RCTBlobCollector.mm */, - 1668B746F551A9C3C748163A58E17CB6 /* RCTBlobManager.mm */, - F2C6FFC9018909DCEEB59A7AC726E5E0 /* RCTBlobPlugins.mm */, - C48600FD869A9CFB7A36B3EAB7F7D152 /* RCTFileReaderModule.mm */, - 1D6E1591AE1D0259E17941218C87A328 /* Pod */, - 8F9983EBD4E9B74E60EC9A9EF0160226 /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = "<group>"; - }; E07AB22FD3B827891722C129375B531D /* PromisesObjC */ = { isa = PBXGroup; children = ( @@ -16579,90 +16621,158 @@ path = PromisesObjC; sourceTree = "<group>"; }; - E10C2DA576ADB97D59DB22573C83BA47 /* Pod */ = { + E119E86D0D9F2598206AE74C0CEA3961 /* Support Files */ = { isa = PBXGroup; children = ( - 21C946A2F7C5F007344256C733EB92F4 /* React-RCTSettings.podspec */, + 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */, + 3FF7D4167A48ECE14628804DB78D760E /* React-RCTImage-dummy.m */, + FA10995DDDECEA08F51CFF426D956258 /* React-RCTImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = "<group>"; + }; + E16B6D919C776A1E17F2890C104E7911 /* Drivers */ = { + isa = PBXGroup; + children = ( + 70FDFC2CE9916A1C39912D2D86454292 /* RCTDecayAnimation.m */, + B77E80DAEB31320DB5131AA2DF21943B /* RCTEventAnimation.m */, + 9C22F7E35FDC62277F9BC5267264D97D /* RCTFrameAnimation.m */, + E32701A5312FF5486D49E353569C4571 /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = "<group>"; + }; + E1E3DC83464E8AF0FCE5B92016341051 /* Pod */ = { + isa = PBXGroup; + children = ( + 3F580CE60F927001A6863759BDA2500C /* LICENSE */, + CB0EB5237252D01EE79321BB308DC801 /* README.md */, + 8F84156C094F7B42F9CC22A4446ACB15 /* RNUserDefaults.podspec */, ); name = Pod; sourceTree = "<group>"; }; - E1F2B622173ED4F8FB7498CA97BEE072 /* RNGestureHandler */ = { + E2CB1D44D83256CB8E1922DE170EA20D /* RefreshControl */ = { isa = PBXGroup; children = ( - 53B1C3603254F3E1558A984E76996BA6 /* RNGestureHandler.h */, - CE9D7BBE564225CC90DFB00E14D56AF3 /* RNGestureHandler.m */, - 8B73DD590AF901189F1BF4C326F64D5D /* RNGestureHandlerButton.h */, - 946433D7EBE2426C041BDE43C6FB3116 /* RNGestureHandlerButton.m */, - CF550F99EB08E3AA6E5C3F82120A71FF /* RNGestureHandlerDirection.h */, - BEAE5B8B071B90BC75B81752AC66B8E0 /* RNGestureHandlerEvents.h */, - A11962794E02348B61C4A3A1EACB896A /* RNGestureHandlerEvents.m */, - 4C12648425553EA1F655E7D7C927E3C4 /* RNGestureHandlerManager.h */, - F37B86E8900C790C524EA99610557900 /* RNGestureHandlerManager.m */, - 226E7D30DAB7CFB6A19A218FBECECD21 /* RNGestureHandlerModule.h */, - A8041E4B8179B499EAB9058EFA1E135C /* RNGestureHandlerModule.m */, - 07EA54F24DE6336CA2D2B4FC5255ABB2 /* RNGestureHandlerRegistry.h */, - B65BFB447E1E82D26B8A2668394062D0 /* RNGestureHandlerRegistry.m */, - 51D103280379F139280B1760C31B0B51 /* RNGestureHandlerState.h */, - F8F4675CC8307D777C968A879851B36B /* RNRootViewGestureRecognizer.h */, - 36B7C68AC1C8AACB3FBE5504BDA2DFA6 /* RNRootViewGestureRecognizer.m */, - 93BE4AF1FF9E8425B2A5F3E22CB4A507 /* Handlers */, - 914844398E570D06280F83BF12D0B578 /* Pod */, - 0E602234E49603C24F468FA59A9255B2 /* Support Files */, + B33F8494FFD6A13CFAEAD5298CB749D7 /* RCTRefreshableProtocol.h */, + 65F2F83421140FB0FBCE7718EEB0CFE1 /* RCTRefreshControl.h */, + 658414AB81E9A68B93362D1497A8B2E4 /* RCTRefreshControl.m */, + 2A4CD029A18F4685FFEA2386D5576A90 /* RCTRefreshControlManager.h */, + 416154B7E09202C63484462EEC3E15F2 /* RCTRefreshControlManager.m */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = RefreshControl; + path = RefreshControl; sourceTree = "<group>"; }; - E2C518FF773F00C09B6D8CCE47FB65C8 /* Services */ = { + E31346C0B67ACF2249F832AF0EB5F565 /* Products */ = { isa = PBXGroup; children = ( - 905B11A10A75AC61C4820137CB0946FF /* UMLogManager.h */, - 5D93CFE720FC5F9E54794A51F911DDEF /* UMLogManager.m */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, + AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, + 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, + E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, + ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, + FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, + 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, + 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, ); - name = Services; - path = UMCore/Services; + name = Products; sourceTree = "<group>"; }; - E2E5F413225D77E3905ADEFBFF02DA36 /* React-RCTAnimation */ = { + E3E1592FA3A8234FC29B443D7ED258E8 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 412DD13752812B1CA092B6124855D1F1 /* RCTAnimationPlugins.mm */, - 470A3254430782FB2D826E72C22A5F1E /* RCTAnimationUtils.m */, - EE82107C29630F32A5E1A14E8EB1803D /* RCTNativeAnimatedModule.mm */, - C88F5C427133EA7D692D9CDAD62D6E29 /* RCTNativeAnimatedNodesManager.m */, - 1950E2A5AD8C2053DF5A65A2FF5227EE /* Drivers */, - 07D696CC22E5D239EFB17AF91652C2D1 /* Nodes */, - ACA6E5C19DEEEC062369B82DE1C5C4E1 /* Pod */, - 76A2D44815245442DD9DFDEA76BD577F /* Support Files */, + 4BA1240FB7FF8EF81340069ADB8CE4F5 /* Pod */, + 2EEAC6FA5E7A833ADCA9C6F96B3E01B4 /* Support Files */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = "<group>"; - }; - E322634F2D1D5B30319479623445A408 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - 02ED9359D57B349ED403CE99D1BE1087 /* UMPermissionsInterface.h */, - A816BAA178104A152A615160293198EE /* UMPermissionsMethodsDelegate.h */, - C705896BAD401FBB44B192FC89FEA9B9 /* UMPermissionsMethodsDelegate.m */, - 66493AEC9C83D25C8F263833D43F409C /* UMUserNotificationCenterProxyInterface.h */, - 8A8433F067F31E11C1170F1185538755 /* Pod */, - 711FE79611D299A30D437CB2D075B396 /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = "<group>"; - }; - E3CD3D6C1D0E2BFF290CC102AF6D058E /* Support Files */ = { - isa = PBXGroup; - children = ( - D9D195E7498C59FDE0F25A2477484484 /* RNLocalize.xcconfig */, - F7B6755707AA35CC5A43F01642944BA0 /* RNLocalize-dummy.m */, - FD755AF6B65F25A30103152B217BF8CB /* RNLocalize-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = "<group>"; }; E4267046E48AE3F3AF49A526F3A9F2A8 /* FBCxxFollyDynamicConvert */ = { @@ -16674,14 +16784,39 @@ name = FBCxxFollyDynamicConvert; sourceTree = "<group>"; }; - E427F7D6C1CE7EEF65DFB241AC030F6C /* Pod */ = { + E4824D2D8CEE7600728BBFDCE25B69DA /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 34126C55143BB4DA96826DE04732E9AA /* LICENSE */, - F49D2A441806E052306125F684FAFDD8 /* README.md */, - 49A56D3DEACBD718BA26CC3AC3EC1F68 /* rn-extensions-share.podspec */, + E700032730765E8D6A7310102C555CB4 /* RCTLinkingManager.mm */, + 669FFDF2DE29C85E089E798B671D17B3 /* RCTLinkingPlugins.mm */, + 9CB57DDB312528BA5CBC06E723A62E03 /* Pod */, + 1E405E1B544584101E824D3DBB8FCBCB /* Support Files */, ); - name = Pod; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = "<group>"; + }; + E4C5A43DCC0963141499B4753E60E4D5 /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + 75834989E18D8E87AC3EE1830D7DCDFB /* RCTVibration.mm */, + E242EDC375AF5831097F51B852EB51A6 /* RCTVibrationPlugins.mm */, + 197A56B58475CBFFF08ECAD8DAA96D96 /* Pod */, + FD2B1CF1202AAB20E2DE638A102B2EF6 /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = "<group>"; + }; + E5ED64B800388D59246B271D45744FE9 /* Multiline */ = { + isa = PBXGroup; + children = ( + 02CFB7E4EAB9656948616C6F37F150D1 /* RCTMultilineTextInputView.m */, + 4201BE87D92B9946897F0B9935126CF7 /* RCTMultilineTextInputViewManager.m */, + 144F317E09F4B5D8DFB7D8D6606A1DB8 /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; sourceTree = "<group>"; }; E69B6F81A11DED4EA80A2CFC0F563B59 /* Support Files */ = { @@ -16695,25 +16830,44 @@ path = "../Target Support Files/libwebp"; sourceTree = "<group>"; }; - E6D4F9AF52088E1E211965060E092C2C /* EXImageLoader */ = { + E6E20B9EBE4FE1CB239A92563C0A4DED /* CxxBridge */ = { isa = PBXGroup; children = ( - 74611F0FF9E1239B61D17756D647087F /* EXImageLoader.h */, - 7CF424B414037AAD5991901E4B9FAB25 /* EXImageLoader.m */, - F61EDB37958E4B9F312BCFEEFB6C7A2E /* Pod */, - 81D7903A9F523EC570CE2BDA2782D2A4 /* Support Files */, + 739785CACCCA66F5001FDDF9D2E43501 /* JSCExecutorFactory.h */, + 2D78B8E80FC6143DC5CEAD2D643B2920 /* JSCExecutorFactory.mm */, + 26FA8683647426F62DBA9EF6375C2573 /* NSDataBigString.h */, + 77B3A3647D8A9C0E25E04391CF75E9FA /* NSDataBigString.mm */, + 5550464D5561100A4BAB8AE0084BF335 /* RCTCxxBridge.mm */, + 9DBF4D24AFC5285B24DF28C06AA633AB /* RCTCxxBridgeDelegate.h */, + B776AC9D8D0E04A5414B78438D7776EC /* RCTMessageThread.h */, + 93E5D3FA51D92B2EE1178BCAABA6F671 /* RCTMessageThread.mm */, + BE1ADD1FF39C1129F4E5A8E2C8C8ECA5 /* RCTObjcExecutor.h */, + 7F9683149B139470B2049608CBB1D7B7 /* RCTObjcExecutor.mm */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = CxxBridge; + path = React/CxxBridge; sourceTree = "<group>"; }; - E9F41582898B19B23FD1C4CC5779A090 /* bugsnag-cocoa */ = { + E7F10426804961AEAFC0BE414091D69F /* Support Files */ = { isa = PBXGroup; children = ( - F9E5AB4EF7821D847524D26F67F4FEBB /* Source */, + F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */, + 007F599147497FC96A4178C305AEABCD /* React-RCTText-dummy.m */, + 2C3382E851B93FEE126ED1E2823BE675 /* React-RCTText-prefix.pch */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = "<group>"; + }; + E81FA8B1651697AA6ACAE276D8379554 /* Support Files */ = { + isa = PBXGroup; + children = ( + B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */, + BA0B40E78FBC5BEADCE390C45C701B1A /* react-native-slider-dummy.m */, + 8E3ACDC7504306FD88446A594EF21ECD /* react-native-slider-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = "<group>"; }; EA3C3B12443163FF8D54C35EF3E08811 /* Flipper */ = { @@ -16751,15 +16905,6 @@ path = Flipper; sourceTree = "<group>"; }; - EA542FA0DB47A2AD029522800C823A1D /* Support Files */ = { - isa = PBXGroup; - children = ( - C8AAEEC2B289AA3E6FC0606341B9D731 /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = "<group>"; - }; EA6321876C92A18334DB82CAA26E3F7F /* Support Files */ = { isa = PBXGroup; children = ( @@ -16771,18 +16916,10 @@ path = "../Target Support Files/SDWebImage"; sourceTree = "<group>"; }; - EAF8F5CDFC2EF3FEFE313A7D6E58C33B /* Pod */ = { + EAEE84EB9B060156B96B3351EE413571 /* Pod */ = { isa = PBXGroup; children = ( - ED415844F10453D84B3113D69D334064 /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - EB06C669D1041DC1D266E975493E474C /* Pod */ = { - isa = PBXGroup; - children = ( - A95FC094089C7A7E401E37E1963CC34C /* UMConstantsInterface.podspec */, + A79CE02B4FF34545D6C0A5F45038CD6E /* React.podspec */, ); name = Pod; sourceTree = "<group>"; @@ -16800,111 +16937,84 @@ path = "../Target Support Files/FlipperKit"; sourceTree = "<group>"; }; - EC486061DC2A64BDEE4A2840FB63EB9C /* UMCameraInterface */ = { + EBF184C04FDFDFBD35E0BEE290CE0E31 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 9529B4CCA7B332F8B96C0156930A53C1 /* UMCameraInterface.h */, - 806575B01D6CB174B4F90754DE47A87C /* Pod */, - 39EB53E39FF09165D8CAC56228335E7B /* Support Files */, + 57533F6BD93D2DE4244B0735402B9DA4 /* EXWebBrowser.h */, + 966C8893779B8233236017371E619B1F /* EXWebBrowser.m */, + 44DE1329A49A4CF3811C1FE5179954FF /* Pod */, + B2E0801108999F3761F4C729D3A56735 /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = "<group>"; }; - EC8EA81F5687EBD5CDE11C47DB79B462 /* Support Files */ = { + EC324E72843E374033D976F6247E9D25 /* Surface */ = { isa = PBXGroup; children = ( - B99ECB0D83E3C038F1B6C9C2A8BD2489 /* react-native-jitsi-meet.xcconfig */, - B675CEF42B5A19EFB9293FF65CBE32C0 /* react-native-jitsi-meet-dummy.m */, - 3A0FABA01C07B1630A74F20C92AC00AD /* react-native-jitsi-meet-prefix.pch */, + 35C7E2D98FA30BBB9A085F507411C7CA /* RCTSurface.h */, + F12B3E9A08BDB290145E3B2BD5B66667 /* RCTSurface.mm */, + 50FD58598508C4D9DEF6F64BFFDE308E /* RCTSurfaceDelegate.h */, + D5038AAD663414FC2313263B1DE2E738 /* RCTSurfaceRootShadowView.h */, + 147C05DCAC196FCD8EC2E6CE26B3102E /* RCTSurfaceRootShadowView.m */, + 2B14C4E56BD11C9AD9E7D7CC67D321A4 /* RCTSurfaceRootShadowViewDelegate.h */, + A23D607E7B3F516107A22AC845C14446 /* RCTSurfaceRootView.h */, + B4E23666F6328BE78029301BD16FA1E3 /* RCTSurfaceRootView.mm */, + D0D2807855DB1F9BEE53DE18F1E705AD /* RCTSurfaceStage.h */, + ECF522805480D2064AB9453B7FE101B3 /* RCTSurfaceStage.m */, + 8717F287702A9C6C38AA55E7AB95B0DF /* RCTSurfaceView.h */, + C0F2679A5E0931013FA662954ED431F9 /* RCTSurfaceView.mm */, + EB0F2E6BE8BDE409BE62FE776AAE5C15 /* RCTSurfaceView+Internal.h */, + 55F79EAC12A427EB3D127E2395EC91DE /* SurfaceHostingView */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + name = Surface; + path = Surface; sourceTree = "<group>"; }; - ECC3A5D45AEDECFFEF0DE5CA3D400DED /* React-RCTText */ = { + EC6BA54FAE2652A1488E38035CC6776B /* EXImageLoader */ = { isa = PBXGroup; children = ( - F4A43BCB7FE9CD106969831D6AB8C82B /* RCTConvert+Text.m */, - CA157BB63251460C2FB19C6500DC42BA /* RCTTextAttributes.m */, - D71B5AD5888FC9D84ACFB4B41BF81214 /* BaseText */, - EAF8F5CDFC2EF3FEFE313A7D6E58C33B /* Pod */, - 6962BA04BBA9BF943AB674E1F782E848 /* RawText */, - CD1CB2506C1AA045428CDA89276D4D67 /* Support Files */, - 3701D18C34DFEBF9076EFBE6C9A50C44 /* Text */, - 3DF0276D9B3CE43773AAF390978A987E /* TextInput */, - 263E7B17FA1E57E35A2DFC34116C37CB /* VirtualText */, + ECB82060F47068594888AF3BDE08E50C /* EXImageLoader.h */, + 21FC3F7AD7A415BCEC9E446692D850B0 /* EXImageLoader.m */, + 6B87A0B7DE5325D44BEA9321D7FCEFC9 /* Pod */, + 02B1E09C9F76CBE9237DD3B3976E92D0 /* Support Files */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; sourceTree = "<group>"; }; - ED7762D6E9034631AB9AC2EB86ECC6CF /* VirtualText */ = { + EC795E55837F8729282A6B8A684162AB /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - 33F8A11A31D2EAC23A3C7402B0518EE9 /* RCTVirtualTextShadowView.h */, - 2E500DA4066B4BC698E1361F118D3F3C /* RCTVirtualTextViewManager.h */, + 11E31942837740BFD1F989749590B93B /* BugsnagReactNative.h */, + 1E9181469A87B74FBE318400C549AAFA /* BugsnagReactNative.m */, + C076B18B99D55846D0A83D7EEE683197 /* Core */, + AAE19ABFC8C24890883C42A5C0419BF9 /* Pod */, + 1BB693B9296587624B879FD0BFDB1F01 /* Support Files */, + 18C49B13A8EEEA8FD0865EB7448001CB /* vendor */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = "<group>"; }; - ED840B366A11DBCDBB35F536F270E2C1 /* Support Files */ = { + ED7C154D3F610FC89026EF07C945F0A2 /* EXAV */ = { isa = PBXGroup; children = ( - 5A2F1E4070AF4AD5830BF74B0EAC6FC0 /* EXPermissions.xcconfig */, - 219D15A24717D200218759B277C58214 /* EXPermissions-dummy.m */, - AE77AA0A1B82E98FE0AD8EA7D4B30B70 /* EXPermissions-prefix.pch */, + 274F0C5E12F8002678AC0075BEC38942 /* EXAudioRecordingPermissionRequester.h */, + 529C3029FA0D10D8FA86294F3CBAB092 /* EXAudioRecordingPermissionRequester.m */, + 7AF4F688033FC594C5312350D5A4196F /* EXAudioSessionManager.h */, + 0D751A822A49D4F471406EE2D233255E /* EXAudioSessionManager.m */, + 750F7E062D511B9213745A1ED368C68E /* EXAV.h */, + 2DF7C10E2CA08CA750381E0305B01342 /* EXAV.m */, + C1E4A437404DFDC3AF95DECB10C31E21 /* EXAVObject.h */, + 4B43B1EA24ED075AF55FCD69F05A2398 /* EXAVPlayerData.h */, + F774838772BFA084164BBD15EB276FCC /* EXAVPlayerData.m */, + F3BE44D695A5B17EB341D97D0F56CAF0 /* Pod */, + 2D48D59DCC2B5AFF40B6BDF35013EDFB /* Support Files */, + FA78146E6FCFBF26C95D7711A1EBABB9 /* Video */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = "<group>"; - }; - EDBCA63E5E13884B556DCA5E90394B73 /* Pod */ = { - isa = PBXGroup; - children = ( - 264FFAEEF4A846297922FCFD162C5E8A /* LICENSE */, - 847CE846CFCDF02AFA9B747A273C5705 /* react-native-orientation-locker.podspec */, - 45BDB360A9615C0ADD637982396843BD /* README.md */, - ); - name = Pod; - sourceTree = "<group>"; - }; - EE00476DA07E04EA1328B63B3C9724D2 /* Inspector */ = { - isa = PBXGroup; - children = ( - 43198AA2A2C1F738A912581A6215A2C2 /* RCTInspector.h */, - D7D5C7650E36E999439142142D6D5714 /* RCTInspector.mm */, - 8769A6EC4F2CEC678F0BDD10CAC141DA /* RCTInspectorPackagerConnection.h */, - C02D9691892B3A1B07283E72A0A7802E /* RCTInspectorPackagerConnection.m */, - ); - name = Inspector; - path = React/Inspector; - sourceTree = "<group>"; - }; - EE7A13395E047C70188E0BB4E4E9EBBF /* Support Files */ = { - isa = PBXGroup; - children = ( - FFCB8E6A0EB6DAD34AA30A88AAD2711B /* React-RCTSettings.xcconfig */, - 98A7924D187BCA7F8C3BBAD80213237A /* React-RCTSettings-dummy.m */, - D6E34BFF80AFDFD5B80C99A9671AEBD1 /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = "<group>"; - }; - EFC82BA03D980F7E7AD54F622C543446 /* firestore */ = { - isa = PBXGroup; - children = ( - C9CB808C88B742A4B8D226327B0A956C /* RNFirebaseFirestore.h */, - EDE7F39FC17BABB060AF72899759C177 /* RNFirebaseFirestore.m */, - 02DF8E79EDB719687F9AD4312BE2497F /* RNFirebaseFirestoreCollectionReference.h */, - 8E58A9C9AEA25FF614C1FF1575CAB666 /* RNFirebaseFirestoreCollectionReference.m */, - 5BDC933DFE94D62C79CEE810609054AA /* RNFirebaseFirestoreDocumentReference.h */, - F885E69F1E8761274FACF99C1D5537EF /* RNFirebaseFirestoreDocumentReference.m */, - ); - name = firestore; - path = RNFirebase/firestore; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = "<group>"; }; EFD6536848577268D6A78BCAB61D482B /* FlipperKitNetworkPlugin */ = { @@ -16926,61 +17036,67 @@ name = FlipperKitNetworkPlugin; sourceTree = "<group>"; }; - F04FC0652D5A838670B9D7179AC5ED25 /* Support Files */ = { + F151609BD4C16CE097816F689A45C8AA /* Pod */ = { isa = PBXGroup; children = ( - B89D0D89E4F9F61E9AB59B9E808A89B2 /* React-Core.xcconfig */, - AC167B708F3EDC9C2F0762A04B13A3D9 /* React-Core-dummy.m */, - A42C79C007C2037DAFDB59C951EA7244 /* React-Core-prefix.pch */, + 0F18338E992B568C10D0F98489507DED /* FBLazyVector.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + F196FF764872D3615DCF4856E42E4D2C /* EXConstants */ = { + isa = PBXGroup; + children = ( + 8AE6BB988C37FE97D1678C6BC28C1501 /* EXConstants.h */, + 11CD4C8274BF810063EAE4979126E31F /* EXConstants.m */, + A58D33408D0EB2921512E467A46DDDF7 /* EXConstantsService.h */, + D19AEAB77CA49609892379D559CF1C5A /* EXConstantsService.m */, + 04DD37C5BF852F9C84FF47AE4D322B43 /* Pod */, + 36E3519A1410052ACA0736A427B724D9 /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = "<group>"; + }; + F27232DFC97019E3760386F660C150ED /* React-jsinspector */ = { + isa = PBXGroup; + children = ( + 6D91F1C7FC160F085A0887B9A504B834 /* InspectorInterfaces.cpp */, + 9934CD4A1C48A1C1391DA60625F6E769 /* InspectorInterfaces.h */, + 6FBC050FE2676980FE6CA34EA231D0EA /* Pod */, + F473B8B6F2554EF35E6245743ACF09C7 /* Support Files */, + ); + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = "<group>"; + }; + F27F1439852F8F9954EDEF8830B926F3 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */, + CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = "<group>"; + }; + F3212ABD255CCDD7B82EDCF22D36496B /* Support Files */ = { + isa = PBXGroup; + children = ( + 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */, + 8962A3AB1972A134062050FD168AEDE5 /* EXLocalAuthentication-dummy.m */, + 07EB509006AD0255ADE173C78DE5CB34 /* EXLocalAuthentication-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = "<group>"; }; - F19733C174C593BFCC60794E4DC57234 /* ReactNativeKeyboardInput */ = { + F3BE44D695A5B17EB341D97D0F56CAF0 /* Pod */ = { isa = PBXGroup; children = ( - ACFAF6C8F1777A4A09EEF313FBA7B772 /* LNInterpolation */, - 4112D2C79EFA6593712FF6815D1A852F /* Pod */, - 3853F515DE21B0A7DD581B7E35EF21A0 /* RCTCustomInputController */, - 11E36A290884F234EA21B1AE7AAEF05C /* Support Files */, + C4DB01C621BE511DA047046598329D5B /* EXAV.podspec */, ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = "<group>"; - }; - F2158120FC088546050D8E4C3A683A5F /* react-native-slider */ = { - isa = PBXGroup; - children = ( - FCCB30F91675C5F551A9D5197B4C4630 /* RNCSlider.h */, - B1E29109E6A7C3311A875A32A0F2C452 /* RNCSlider.m */, - 6D1429B3ACD01380B8593A079FEF40D5 /* RNCSliderManager.h */, - 2963D7695879E13F81FD71BE68242A99 /* RNCSliderManager.m */, - 1E23EF7ECDECCCB785B5454968301F86 /* Pod */, - 95D99E3DA3098E4F2534524FB16D767B /* Support Files */, - ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; - sourceTree = "<group>"; - }; - F2780D2B1E9EF6BADB8D95D02B79B3F8 /* React */ = { - isa = PBXGroup; - children = ( - 89FBF9041A4BA8A7897E262A3081A2F7 /* Pod */, - A7529BA2A34CB54E7D1F4D9DA0DEC993 /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = "<group>"; - }; - F3A95A4D8273675264DB7DBE6BADFD7D /* UIUtils */ = { - isa = PBXGroup; - children = ( - 18A99514320870DC97F9BB77ED6044E0 /* RCTUIUtils.h */, - C18966B17EABF5EE73C6D4828A293FC5 /* RCTUIUtils.m */, - ); - name = UIUtils; - path = React/UIUtils; + name = Pod; sourceTree = "<group>"; }; F43853B93E762B91E75A2F0BB5DB3502 /* Support Files */ = { @@ -16994,39 +17110,42 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = "<group>"; }; - F5287678E969C903F21780DEA81FE80C /* rn-extensions-share */ = { + F473B8B6F2554EF35E6245743ACF09C7 /* Support Files */ = { isa = PBXGroup; children = ( - 2E40C82BA6437FB33889A36A09D824E0 /* ReactNativeShareExtension.h */, - 4A4ECB2F7EA6F141F83A9A64A0F0C53D /* ReactNativeShareExtension.m */, - E427F7D6C1CE7EEF65DFB241AC030F6C /* Pod */, - 0F0995F595AFB146003AB50397834304 /* Support Files */, + 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */, + C23A2F489E66C0BBE98BDB2082178AC6 /* React-jsinspector-dummy.m */, + CAFB63F1B8EA2E9B7472E844151C95A2 /* React-jsinspector-prefix.pch */, ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = "<group>"; }; - F5EEFE9AE1C32B9A0640493A5447406C /* UMReactNativeAdapter */ = { + F4927BBFDFF1A689D82F68F7536765C0 /* Support Files */ = { isa = PBXGroup; children = ( - C86D9C85FFFD3CADFC1CA464B0086CAA /* UMBridgeModule.h */, - 08C18F592585F722BE55E4BAF7F83BBF /* Pod */, - BA61E394518E8480D875135ED50890E5 /* Services */, - 8E4133B98ABB1FED1CF4595272EE2301 /* Support Files */, - 81287494A3359E3A3A3C78656DBB9E4B /* UMModuleRegistryAdapter */, - 4DB5FA06FC83858EDB2DED51728DAA33 /* UMNativeModulesProxy */, - F9B3BEB15DF3C5FDC271D11D758F0494 /* UMViewManagerAdapter */, + D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */, + 3C26224BFC9F7CAF1BAA53D76D222B62 /* RNReanimated-dummy.m */, + 0BEFE09AEC5742EBA25538E8C6678AB8 /* RNReanimated-prefix.pch */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = "<group>"; }; - F61EDB37958E4B9F312BCFEEFB6C7A2E /* Pod */ = { + F50C862ED951AB380DB388469A2A0B79 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 045EEDE1DED9F8F66E3B5F0CFE3FBD9B /* EXImageLoader.podspec */, + F0D5EB0C0AF1B46416A6E4E7E3D33DA5 /* RCTDataRequestHandler.mm */, + F88FEF53D9ACBC842772E7378CDD10A7 /* RCTFileRequestHandler.mm */, + 6C8750C9EFE82EDFF67C7A02C297E56F /* RCTHTTPRequestHandler.mm */, + 248119582169AE2E14B8DB9AC79E8664 /* RCTNetworking.mm */, + 09E1EB493AC7120B1A44A4A8DB7DB263 /* RCTNetworkPlugins.mm */, + B8A8F62CD1B59B1B4A915981F0934129 /* RCTNetworkTask.mm */, + 3B11B0D697F1834D1E564F74DF54916A /* Pod */, + 2265F1EC2DB7F5B03AD12E77CEB5040C /* Support Files */, ); - name = Pod; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = "<group>"; }; F644312F2E6A2502C611572745AB99DF /* FirebaseAnalytics */ = { @@ -17039,142 +17158,241 @@ path = FirebaseAnalytics; sourceTree = "<group>"; }; - F6D43DF23FD740A86B5452448D1C85D9 /* Brushes */ = { + F65AB1F9E6225F0473D457DD3CC4DB0A /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 6B55EEE00637AB2BB164C5B985CAE324 /* ARTBrush.h */, - 54FD41CE98D7D05B469DDDC770F2F8BC /* ARTBrush.m */, - 217981D4C57B400D196ACBE2AE4F4F7A /* ARTLinearGradient.h */, - D44BDADBDF0681FFA576594C2A54A0FB /* ARTLinearGradient.m */, - F116C4C2B2E4866A92F2576A64F4BFB0 /* ARTPattern.h */, - 93C19512123744F6A01FB35063191693 /* ARTPattern.m */, - C31657D92E0420C57AEB970FFEDCDE31 /* ARTRadialGradient.h */, - 4AC0D7F44F4D32A037596050EADFCB2A /* ARTRadialGradient.m */, - E6E10DE6CEFD17373B18375ADF3FDCA6 /* ARTSolidColor.h */, - 83EC0F27925BA5C96C5F57B66745AD17 /* ARTSolidColor.m */, + 1E81EC930DD4B3E8A08B14D713C62A96 /* IOS7Polyfill.h */, + 5D1098524967543792A0E135B7C05633 /* RNFetchBlobConst.h */, + 4D1ED5503A25804AC17F6D80724CA290 /* RNFetchBlobConst.m */, + 3F37C3569D69F6D9FE0DF0B78ABC8991 /* RNFetchBlobFS.h */, + 787FE71387CF1F85BA4E9DF6D97CE264 /* RNFetchBlobFS.m */, + BA63F857FA550BBB06710A27D5F76B84 /* RNFetchBlobNetwork.h */, + BC7275CE001F4FCC4605B05417942BB7 /* RNFetchBlobNetwork.m */, + 3938FC31FF56249B4E10A15443534921 /* RNFetchBlobProgress.h */, + 4D20256C34296B182165D221419D1583 /* RNFetchBlobProgress.m */, + 94D018CAF5AFA03EE3483AF9FE1B9AAE /* RNFetchBlobReqBuilder.h */, + 6AF8B876AEED4AC249E46457AF985862 /* RNFetchBlobReqBuilder.m */, + CD1FD42F2DDF1DE25C6108AC6123ABD8 /* RNFetchBlobRequest.h */, + 16BC366877988251F04BB8A901CA5FCE /* RNFetchBlobRequest.m */, + CE8E3C4A204BD8658E8239FF66F7E3A2 /* Pod */, + 0E6454C95D3C8FD02B69246E4F2296F3 /* RNFetchBlob */, + 8CBAD4D2E9AB353B6CE65CFFD6FBB0B4 /* Support Files */, ); - name = Brushes; - path = ios/Brushes; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = "<group>"; }; - F716B7A14CEE81FC0C54785639804527 /* Support Files */ = { + F733254350CCF8A9CCA88E7FC3FE55B2 /* Pod */ = { isa = PBXGroup; children = ( - A7CD7555A2F7D9DE80BFC7AED8C03C55 /* RNBootSplash.xcconfig */, - B0804DDA19990B55B19859CB56F43267 /* RNBootSplash-dummy.m */, - D8869F0C09D4CC90304D8AB9736D335C /* RNBootSplash-prefix.pch */, + 9249B01F0C6DC3F1AEC3175EB9D2BB75 /* UMReactNativeAdapter.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + F7F29CA3955DD6A9E7580B2AE49F58B0 /* Default */ = { + isa = PBXGroup; + children = ( + C0F281592EB296CFCE74AEDBE0C5C710 /* Base */, + E6E20B9EBE4FE1CB239A92563C0A4DED /* CxxBridge */, + 88B74E1BB49EED7D959E5A657D02E81B /* CxxModule */, + 836F5890BB04FEC30653AB8F686F6888 /* CxxUtils */, + 70C575CCC2D61E4480E4B2E10476AC87 /* Modules */, + 6DE2BC9787CFD9D8A1B4C677FD4C5FF6 /* Profiler */, + A506EA6E3846229A18CA5F2908FD8312 /* UIUtils */, + 9F17B9A85DBC2F03DD64744A9DFED441 /* Views */, + ); + name = Default; + sourceTree = "<group>"; + }; + F87A5B50954C5E7128EC05D520E6DD4B /* Development Pods */ = { + isa = PBXGroup; + children = ( + EC795E55837F8729282A6B8A684162AB /* BugsnagReactNative */, + ED7C154D3F610FC89026EF07C945F0A2 /* EXAV */, + F196FF764872D3615DCF4856E42E4D2C /* EXConstants */, + 98A1BE927C4F65B168E5202DA19ACE90 /* EXFileSystem */, + 5F2584076E044899708AF10A3E606285 /* EXHaptics */, + EC6BA54FAE2652A1488E38035CC6776B /* EXImageLoader */, + 3600A6665F640C5CAE3E2DF5119F9F90 /* EXKeepAwake */, + 1DEE9BE6EC8E5499D31EFA70F360C4AC /* EXLocalAuthentication */, + 0313269D82DB594D3F30A282D3E07A5E /* EXPermissions */, + EBF184C04FDFDFBD35E0BEE290CE0E31 /* EXWebBrowser */, + 1355EE9090BE64A91AED075B6ACF00DE /* FBLazyVector */, + 309B82EB73FA8CFCD44734B27D387B19 /* FBReactNativeSpec */, + 0ADC05D66D8870FAB46A080BCD2E018A /* KeyCommands */, + 8CF10FF34513FF509DBC48925E9D4F6D /* RCTRequired */, + A0D9B248FFE56CD990303E25C6C2D7C5 /* RCTTypeSafety */, + BB416D09935503139FB6AE6415BBD8BB /* React */, + A0658E2834376E3368980A1D16C8DED2 /* React-Core */, + 1B51F2FA84D17DCE9E370287B01EE0FF /* React-CoreModules */, + D9ACA25F46506ACFF95BC67B763E853A /* React-cxxreact */, + 7DD96FBD9D07E8B4D7F0314BC0AE265F /* React-jsi */, + 03DBB74D426625F3B653E838CDA966AD /* React-jsiexecutor */, + F27232DFC97019E3760386F660C150ED /* React-jsinspector */, + C1AF4CE1627007CE3A3D0544749498E9 /* react-native-appearance */, + 28ECFA63F581207D15118128A10AD38A /* react-native-background-timer */, + 6D97C4BCFCAB419AB40E9B79661B9288 /* react-native-cameraroll */, + 801A72FC6E5DACBE5F69A3E624F1B98F /* react-native-document-picker */, + 8452CB521ED3366C6AF69DBD07F99085 /* react-native-jitsi-meet */, + BDDAE384541621DBCA3E2A0C0F5741C7 /* react-native-notifications */, + 37A94581832CEEB5F2786A63636F4FE1 /* react-native-orientation-locker */, + C891E94FBE9705A583BEBE0A7091D86E /* react-native-safe-area-context */, + 0CC1A52E1277DC7D986393C45CEC131C /* react-native-slider */, + C9C7AFAF3C20900E7E2BF04BC0E51D19 /* react-native-webview */, + E3E1592FA3A8234FC29B443D7ED258E8 /* React-RCTActionSheet */, + 9CAFE2274405B62D57C3AB6665CE817A /* React-RCTAnimation */, + 66F9999BEB8F6D3516FECCDA04EF77F8 /* React-RCTBlob */, + B73E7CFDC5C98804E383184483AC74CE /* React-RCTImage */, + E4824D2D8CEE7600728BBFDCE25B69DA /* React-RCTLinking */, + F50C862ED951AB380DB388469A2A0B79 /* React-RCTNetwork */, + C777A79262866125047453BCD14FFB04 /* React-RCTSettings */, + 6F2CDCE53142510F66BE590E7467CF2F /* React-RCTText */, + E4C5A43DCC0963141499B4753E60E4D5 /* React-RCTVibration */, + DCFC2C96F6CD71C07EF6C03356065EB4 /* ReactCommon */, + B158B4AE90EA12A4C7218C90AA928024 /* ReactNativeART */, + 1505B62DE4AC138FBC06155E6B362A90 /* ReactNativeKeyboardInput */, + CE85A364C9CC8A2E9BC1E75A357714F1 /* ReactNativeKeyboardTrackingView */, + A6E1F4EB28B3E74FF1696389AFBBF959 /* rn-extensions-share */, + F65AB1F9E6225F0473D457DD3CC4DB0A /* rn-fetch-blob */, + 6D42942118CEDEEBEAA5DA0884AF2743 /* RNAudio */, + 9667D03AE211B034ED4BA1130F8CF72B /* RNBootSplash */, + 9520B0DBBFDC4748F38F679B65DB42FD /* RNCAsyncStorage */, + 972B76EE04253E45D40FBCA8CA367118 /* RNCMaskedView */, + 5D8A195208F5F9D1AD40BBD67BEF0862 /* RNDateTimePicker */, + CA600A053218B684BD85DB28B26CA5A6 /* RNDeviceInfo */, + 2B30A260514DC94443003EB21801ECB7 /* RNFastImage */, + B78B1DBF453E454509BFB3D0897999F8 /* RNFirebase */, + 48551461CB2993EAE44AA46329D81251 /* RNGestureHandler */, + 12E89D545F98C9845F284C64EA251DED /* RNImageCropPicker */, + F8829C7776A56BAC90CD0AA1994542BD /* RNLocalize */, + F8EE4EBE715E5F4C744EC7AAA79D721A /* RNReanimated */, + 361BCACE7E3A9F20E9778EF32CA85F5A /* RNRootView */, + DA69CFB8DD578BB441FC8193ABE45DDC /* RNScreens */, + 15BDBE06651BFBF8EC637F76A1DB472E /* RNUserDefaults */, + 5525A85551AE85D1ED3034A1D9FDBC79 /* RNVectorIcons */, + 9EB3A0469E2C86F327A033DBD1FD4F40 /* UMAppLoader */, + 8181BBEAF7F7B5DEA838EE799397B204 /* UMBarCodeScannerInterface */, + 2CC3E63A927121AA4374F37A3A629EBE /* UMCameraInterface */, + 36E83F542B1A8A57CF96293D1A670CC3 /* UMConstantsInterface */, + 9B16CDD36FC0DC8908145BE02DB100C6 /* UMCore */, + 60A9B3AC627C5E9D703DC70214162266 /* UMFaceDetectorInterface */, + 3C912B52CABE53D2FD22A1005697134D /* UMFileSystemInterface */, + A35095311AF5DBAB81EC57FA2E743FB5 /* UMFontInterface */, + B8F57D72DC04B41E16473C12A8D9F4E3 /* UMImageLoaderInterface */, + 81F8D6AEE55E9B8DB0945B9F3A62BBF2 /* UMPermissionsInterface */, + 5BCC56AD542BBDA9A8FD2FD15ED103FA /* UMReactNativeAdapter */, + 8BCEEB3D6600C2FBB5F77F8EE638D5B1 /* UMSensorsInterface */, + 58210328A9659CF3262373BD75D45E8E /* UMTaskManagerInterface */, + 429DBE0204A1CCCC852AFD06ED814E70 /* Yoga */, + ); + name = "Development Pods"; + sourceTree = "<group>"; + }; + F8829C7776A56BAC90CD0AA1994542BD /* RNLocalize */ = { + isa = PBXGroup; + children = ( + 3B4A3049C0EB886C67137CBFFD354348 /* RNLocalize.h */, + 3FEC4E9A82D86777153BD8C0B53B45AF /* RNLocalize.m */, + 3B85E8A0293ED4C0ADE3D65D0635F5A6 /* Pod */, + 10AA064574CB8EF033A937230FE032D3 /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; + sourceTree = "<group>"; + }; + F8B6BB50879B0153948AC66049F7633B /* Support Files */ = { + isa = PBXGroup; + children = ( + DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */, + D225587E371647E1EF158B7E94B98E54 /* FBReactNativeSpec-dummy.m */, + 95380A36C8E53465430D28FD7B86DE4F /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = "<group>"; }; - F77F2A3DA62B072771DA8D20CF9A343A /* Resources */ = { + F8EE4EBE715E5F4C744EC7AAA79D721A /* RNReanimated */ = { isa = PBXGroup; children = ( - 7DAF48FA7A5A0A40FC1DB6ED9A74602A /* de.lproj */, - 9A0CBE1AD6DCD05AE84E373E91A0DDA0 /* en.lproj */, - 5665317E931B100A95C5273B3E7900E4 /* es.lproj */, - 840917B509BB30F5BFB4937EACC877C1 /* fr.lproj */, - FB428D3C7FD683A121181252C5246E28 /* ja.lproj */, - DC59614A1FE868DE613ED3FD4498E837 /* pl.lproj */, - D8ED61E63B5660FCA1DE5968F2CE1E77 /* QBImagePicker.storyboard */, - 5F77C74FD6C937AC517FC100AC8913EA /* zh-Hans.lproj */, + 191CEB22E13262B0BFBCBB1ADF351C22 /* REAModule.h */, + 9C1107DC0C92960D72614B9190759FC3 /* REAModule.m */, + 60452327D46CD26998CD827F6F8E7B21 /* REANodesManager.h */, + 9C1F97993C8D8F56705CB4CAEDDEAC3C /* REANodesManager.m */, + CE04235EC62DB7D7F29A3F37AECFE8D2 /* REAUtils.h */, + CE052E0B091BF051B42A8EFFFCEF6A55 /* Nodes */, + 9274FB8C8494DC72EE774AB0D85D7ACD /* Pod */, + F4927BBFDFF1A689D82F68F7536765C0 /* Support Files */, + 8E5881FC3BEBB127BD0C286E3864D336 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = "<group>"; + }; + F912E8ED5AFD7666BCE2AA6A1AC09007 /* Pod */ = { + isa = PBXGroup; + children = ( + 23210B88C177CF8F2F8AB6FD1FF0BD89 /* React-Core.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + F96D175D19CB7059722D313EEDC47B40 /* Pod */ = { + isa = PBXGroup; + children = ( + 209773EB2859EE02FAA4C3152B2861E7 /* React-RCTText.podspec */, + ); + name = Pod; + sourceTree = "<group>"; + }; + F9889497D7C30B996D5B89D7D01F5109 /* Support Files */ = { + isa = PBXGroup; + children = ( + A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = "<group>"; + }; + FA3BC48DB57690DF8D87F0BB3932161D /* KSCrash */ = { + isa = PBXGroup; + children = ( + 00F964082C84394EFE9453B8C3AD69E0 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = "<group>"; + }; + FA78146E6FCFBF26C95D7711A1EBABB9 /* Video */ = { + isa = PBXGroup; + children = ( + AF64CC66CF7F5FF11173BDC12E514A54 /* EXVideoManager.h */, + CDA9DB3C10EE2461F7D5386A7349FF11 /* EXVideoManager.m */, + FD3FAF17769AA4C5BD3A3A08446A8239 /* EXVideoPlayerViewController.h */, + DF7DFF3A414B0E7D5C751B535DB89338 /* EXVideoPlayerViewController.m */, + CF1BE94E9EB48F52834BF5C9CD2CC1AD /* EXVideoPlayerViewControllerDelegate.h */, + DC92F37702AA404B9EEFC33B82445BC7 /* EXVideoView.h */, + E04944B846FE8EC84AA406381ADE1C0A /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; + sourceTree = "<group>"; + }; + FB0A6050612302C48F3B3458FBAD23EF /* Resources */ = { + isa = PBXGroup; + children = ( + 8F9F12C986912FA2B49124546F609219 /* de.lproj */, + 36B1EA524695A5235642D338CFACE993 /* en.lproj */, + 9AFEC1A12795E05C8A3BB3055E52B65A /* es.lproj */, + 2B8F0CB7B18252642B5D4A076198B56E /* fr.lproj */, + 958E52FEE245E3C364A04B23B5C26A34 /* ja.lproj */, + A3AB6894CE98026540443F3ECFFD15A2 /* pl.lproj */, + 7800D7967E2F4B8C81BBB95A0BADF9B0 /* QBImagePicker.storyboard */, + 0DCCBD85E6089FDD00DB6B0FC02A2A35 /* zh-Hans.lproj */, ); name = Resources; sourceTree = "<group>"; }; - F8ADC99942C15C3141F8D294D8A07E7E /* vendor */ = { - isa = PBXGroup; - children = ( - E9F41582898B19B23FD1C4CC5779A090 /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; - sourceTree = "<group>"; - }; - F909A28A056A1B860A46C4CADE4C260A /* Drivers */ = { - isa = PBXGroup; - children = ( - 22703DFA8D26FD60D1C756C16D301C94 /* RCTAnimationDriver.h */, - 33438DB7F71465101165DA2719EAB217 /* RCTDecayAnimation.h */, - D73E1C4D58ECC32A0A82F8BA5C9F9912 /* RCTEventAnimation.h */, - 4897EC7EF5071628F652E107B67E97E6 /* RCTFrameAnimation.h */, - AC3319A4659732033D2DE2FF9C3DA9C4 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = "<group>"; - }; - F9B3BEB15DF3C5FDC271D11D758F0494 /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 1F60F10980AAC342007E29131CC884E6 /* UMViewManagerAdapter.h */, - 6174B53535E3C2D7F3A81148A70C18C9 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = "<group>"; - }; - F9E5AB4EF7821D847524D26F67F4FEBB /* Source */ = { - isa = PBXGroup; - children = ( - 7ED028780FC7A07AFD694814365F7FC6 /* BSG_KSCrashReportWriter.h */, - 6CC4950F11A5BAE422A01CD661DDE700 /* BSGConnectivity.h */, - AB678E151B6CA72E61487EC8F7721D0B /* BSGConnectivity.m */, - 07B62A452B7E919C6AB870A78E1B814A /* BSGOutOfMemoryWatchdog.h */, - 345F6534E197D92BF760D41620CDC133 /* BSGOutOfMemoryWatchdog.m */, - 87C3BACABD1DEE98808417FBA2514893 /* BSGSerialization.h */, - 018D4EB55D0B81E4E0A8B0C4EF13FDEF /* BSGSerialization.m */, - 2B1AD786AD2B5B7C57E86680A8E002A0 /* Bugsnag.h */, - EC3AAE80D1E5C3BADB28EC9A3B29DE80 /* Bugsnag.m */, - F0BB5380227B513F9E36B44D10BA54FA /* BugsnagApiClient.h */, - 3D0149F9ECF69B7586A6E5B0877111F8 /* BugsnagApiClient.m */, - 89C47CCCE3A4B09237C87F96F1BE1D8A /* BugsnagBreadcrumb.h */, - F0D0C520E720F849C7F93F61AA0D4AC7 /* BugsnagBreadcrumb.m */, - 0090BEF13DE7D3464F0062B18937C531 /* BugsnagCollections.h */, - 68A81ED96AF7133ACD2DFDF9C9433C37 /* BugsnagCollections.m */, - 12D80FFB92D10F9784F71385DFC77486 /* BugsnagConfiguration.h */, - 1BC92FF1C34690BB9B42280B3AF009A7 /* BugsnagConfiguration.m */, - 2E038C449F763C718AE5E2ADB78A8957 /* BugsnagCrashReport.h */, - AA6EF3023347BE8EA256A3376B273208 /* BugsnagCrashReport.m */, - 2AED6104FB755CAB53662F840A8C88E5 /* BugsnagCrashSentry.h */, - 99A00B5FEA90B0806A317B2C55F5C99B /* BugsnagCrashSentry.m */, - D562CB27EF0CD57C3A99A65A07CB4121 /* BugsnagErrorReportApiClient.h */, - D5909B93C9C610D2749ECF8B8182B240 /* BugsnagErrorReportApiClient.m */, - 87CA9C1814EF70798E8818D6752EFD1D /* BugsnagFileStore.h */, - D8F0C427C57B51CCE82E5E05482B2E9E /* BugsnagFileStore.m */, - 0D511881DEF6E8BE232DB99B4C55D462 /* BugsnagHandledState.h */, - BA4F5FC5459405787CDF2E133B7545BB /* BugsnagHandledState.m */, - F31709B9ECEE7B00CAB3EAE784D2CF59 /* BugsnagKeys.h */, - 7B19946E7CBE7C12C9863BD084871818 /* BugsnagKSCrashSysInfoParser.h */, - 94DA1B5A041788C9BF9974D8C4A8A6B8 /* BugsnagKSCrashSysInfoParser.m */, - 9B3E6D54DE7DAA1E0D6DF8F6D08C5664 /* BugsnagLogger.h */, - FE82543F068334B0331886A3E9D99352 /* BugsnagMetaData.h */, - 9E0E64F4AAA4A94A1DE99FECB9C06F10 /* BugsnagMetaData.m */, - FF2E6FFB04F6ACC99BB3534E9D6BEA9E /* BugsnagNotifier.h */, - 4DE12EB18F60EB078834BDD2559DCD36 /* BugsnagNotifier.m */, - 380AEA85EBA61336850CB2319530876A /* BugsnagPlugin.h */, - 62992206A392D504DB2D295AA2DA5443 /* BugsnagSession.h */, - 084C851CE8777B564470F9186F0DEA0A /* BugsnagSession.m */, - A35FCE638532BE2CF49A83FA6F049190 /* BugsnagSessionFileStore.h */, - 6233BFE6CE44F90A1D9F3C0D0B3F4D68 /* BugsnagSessionFileStore.m */, - 57B17B59BF6207EF873CCDDD7D77F7B4 /* BugsnagSessionTracker.h */, - E782834353877A71A4602A05FE560CF6 /* BugsnagSessionTracker.m */, - 39CCAC4A2D7E157D625AE2E79DD5784F /* BugsnagSessionTrackingApiClient.h */, - 3175C4A8CDE2820D0086ACFD9E057C6B /* BugsnagSessionTrackingApiClient.m */, - E05397F190C4A904C94F91A5F3A37436 /* BugsnagSessionTrackingPayload.h */, - FC6BB435F9F3CA370C4BD2870EF8B151 /* BugsnagSessionTrackingPayload.m */, - AD5D636C30FE99E5DAB7889D8B45D927 /* BugsnagSink.h */, - F87861CE0A3AA661DE6BBB55B587178E /* BugsnagSink.m */, - A81FDEFD987E030C65A07B6094A19EBA /* BugsnagUser.h */, - D3EB3043B14271CB50A41A02E51FFCB5 /* BugsnagUser.m */, - 50D042FE2D16C91036D259168ABF75F5 /* Private.h */, - 260966E1CB0BCE6781D0FC374D797028 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = "<group>"; - }; FC13D9D833BBD2E32BCF45BC6B22E689 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -17183,17 +17401,6 @@ name = Frameworks; sourceTree = "<group>"; }; - FC233F385AAA24D7035D064074D9FEE0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 18F69EF9D965ECF626511E6B06373FDF /* React-jsinspector.xcconfig */, - D725E31D5F0F9D6B097C523E2C876AC3 /* React-jsinspector-dummy.m */, - 842A8768CEDEF08134EAF00AEF12D4B3 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = "<group>"; - }; FC4BD46444E9BDDFBEE2B60ECC10BCC2 /* NSData+zlib */ = { isa = PBXGroup; children = ( @@ -17203,32 +17410,27 @@ name = "NSData+zlib"; sourceTree = "<group>"; }; - FD000F1BD6F6B1A268A3732E4FD5710C /* RNFastImage */ = { + FD2B1CF1202AAB20E2DE638A102B2EF6 /* Support Files */ = { isa = PBXGroup; children = ( - EF27BE664E20A803C35D11B41215F482 /* FFFastImageSource.h */, - 67692094518366EFF88C1CAB1E920E65 /* FFFastImageSource.m */, - 5334D0EE63C391DF789AD79EC20647FB /* FFFastImageView.h */, - 125C498FB2BFE1A4DDEFD3D0C53E71D2 /* FFFastImageView.m */, - E640E63AE6E09C9C8167553D7BA5808F /* FFFastImageViewManager.h */, - 2DF88F7711EA92D72BCF7BE7CE17068C /* FFFastImageViewManager.m */, - A0EC04FE8D805241D2EA83268859371D /* RCTConvert+FFFastImage.h */, - 86AB7F71AA8FE9CDAEF69AA2BAAA4788 /* RCTConvert+FFFastImage.m */, - 5CF6AC0BD80D1A24647FADFC7DF48C9E /* Pod */, - 97E0EBC267B44710E326EBD008BFA6FC /* Support Files */, + 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */, + E45A58CC7E74042249B75831FE86A803 /* React-RCTVibration-dummy.m */, + B526D300BB2FC69340103E1D370645E0 /* React-RCTVibration-prefix.pch */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = "<group>"; }; - FDD38AE8F20277001F3463CDA73113EC /* RNFetchBlob */ = { + FE3321F275BD510255767253D40784E4 /* database */ = { isa = PBXGroup; children = ( - B999E5DFA1D22363CFB1CFE9C6015D24 /* RNFetchBlob.h */, - FBD525F9951F719112FDE4F81AC9A678 /* RNFetchBlob.m */, + 547E4D6E09F65BE8DEB5595A5D04DB00 /* RNFirebaseDatabase.h */, + 23ADA4CFA5E72A90563F77FFD7F8D2CE /* RNFirebaseDatabase.m */, + 85C972F667E84E4CEA53674B8077942E /* RNFirebaseDatabaseReference.h */, + 92007FF67C73E7C4B6A81B82D3A7810E /* RNFirebaseDatabaseReference.m */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = database; + path = RNFirebase/database; sourceTree = "<group>"; }; /* End PBXGroup section */ @@ -17427,14 +17629,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1B84D9877D96B844AF7C182B5C3D8389 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1FF5C452F6AC78D240C19A97251FBFF9 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 1E4ACAD149C74B00A7AA9EB780AAD1D6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -17461,6 +17655,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 267FDCC8E7CB14AFEA6BAD546E714F87 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D8BC44C654639CB1C472DD066EE1323 /* Pods-RocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 286BE82085ED99B13E875581E8ABBE87 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -17864,6 +18066,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8CE945DCFFE2D8FA28B9F913B59565FF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */, + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */, + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */, + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */, + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */, + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */, + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */, + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */, + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8E6C478DDAAD768E337D1B785E19C787 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18058,6 +18276,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A8BEA32AAE9143E154E9EEC60E93D9AE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */, + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A8E1B1194C3FB514B8DE029E506EAB17 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18752,6 +18979,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BF95812F7EB0EA71A06491BEC4A89D21 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 78443FF8F8DBD8F1B0297274AEDCF8CF /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C0588877575513E8081F4B91F3982E7A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18799,14 +19034,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C97B96A0E13E7A5CBBADEB1E848D2C00 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 33CE9B0F1DD86596E16561ABB74768E6 /* Pods-RocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; CA08E1126E2EED28DC45A14AE3200DDD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19628,6 +19855,24 @@ productReference = FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */; productType = "com.apple.product-type.library.static"; }; + 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */ = { + isa = PBXNativeTarget; + buildConfigurationList = 382D0CE89F73B3FA8CE01BA09956DD23 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */; + buildPhases = ( + A8BEA32AAE9143E154E9EEC60E93D9AE /* Headers */, + 090C94FE757B90A9F6233E2E644FC6A4 /* Sources */, + C254557CF86CCC5C969201743725FEBB /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + E463467A75682C4E7C346610654E375B /* PBXTargetDependency */, + ); + name = RNCMaskedView; + productName = RNCMaskedView; + productReference = B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */; + productType = "com.apple.product-type.library.static"; + }; 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */ = { isa = PBXNativeTarget; buildConfigurationList = B5D8DF5F4E162F0641753F2401CB301E /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; @@ -20522,124 +20767,126 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 41E1C1AC555FA34BD4DE9C3EC2355C63 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = 64DB932A72AC27314419FE6861FADD3F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 1B84D9877D96B844AF7C182B5C3D8389 /* Headers */, - 4C81A21545BF3636190CCA73827C24D2 /* Sources */, - B0042AAD0EB5F800C919EAFC8C98E8D4 /* Frameworks */, + BF95812F7EB0EA71A06491BEC4A89D21 /* Headers */, + CDA0623D42187422171BEC6C48BBBEE8 /* Sources */, + F0BC5C95B86DEDD201856C422C8E4B0A /* Frameworks */, ); buildRules = ( ); dependencies = ( - 1AA7629E4B1E3D03BAE8B4C026B882BE /* PBXTargetDependency */, - 4361A2DC62F6D666C264E2008594C80E /* PBXTargetDependency */, - 86FD0F727EDC4EEB237349DB15528362 /* PBXTargetDependency */, - 385999D6A28146CFCF5A1E3F5BCD5393 /* PBXTargetDependency */, - 8BDFF47F68DA977415488F39AE81ECE0 /* PBXTargetDependency */, - E25BD3FBCE30854423B3A33287C48AA0 /* PBXTargetDependency */, - A96465FC22A2D1C021F23107101C5800 /* PBXTargetDependency */, - CFCD96D9A68473A021A0843B8C08F9CE /* PBXTargetDependency */, - C1F4E63DB6E91A9B7CEE0473700766AE /* PBXTargetDependency */, - 185A446EBADB08520D72FB4FE33BBBC9 /* PBXTargetDependency */, - 9F5952970767C16283728E8837F22EDF /* PBXTargetDependency */, - 3E6E1E9022FB21149CAED9C79F821176 /* PBXTargetDependency */, - 2DD1B987ED68E014077938A9AC8BD3C2 /* PBXTargetDependency */, - 17704E018D149CFB816808DAE839B99B /* PBXTargetDependency */, - 30C6635D0C690BB83D4C47192C7CA55D /* PBXTargetDependency */, - B3A493432AB59A83458B27A197E095AE /* PBXTargetDependency */, - 7D800134CD099D6AFCEA3BC7F2796A98 /* PBXTargetDependency */, - 5424622C46A885C018872385705A2E9D /* PBXTargetDependency */, - 4D0FB86ECCB1A71848200A3EC03793A8 /* PBXTargetDependency */, - 5FF977D8A40508FEC741793DCBA909A1 /* PBXTargetDependency */, - BCBCF257EE7E5F7BB86A669161828C1F /* PBXTargetDependency */, - 7FA446B43267A36369EB3E9543AACF53 /* PBXTargetDependency */, - 95E28D2CDFF9811632A41878041E4162 /* PBXTargetDependency */, - 46BC5C7CF9D60F06348BD943CBE66D86 /* PBXTargetDependency */, - F0137CAC612BBB82D4D2203F8EB078E8 /* PBXTargetDependency */, - 1AC9493CFDB16F89E00911BFC01436D8 /* PBXTargetDependency */, - BA48FF007BAE5855B1D1292A7E04F450 /* PBXTargetDependency */, - 6EDC9E2BDA9A56B32867477EE66FF858 /* PBXTargetDependency */, - 73BB7067E387CCE43ABEE8D8EFA5C9CB /* PBXTargetDependency */, - CBC88388C1221A237C5B8598E4430F49 /* PBXTargetDependency */, - A0B7D0D6AC6C886471EC20AFD77C01B7 /* PBXTargetDependency */, - 4A79510EB0E2B5F9CC2A76EA938038FD /* PBXTargetDependency */, - E65AF3BEDC02863D4621A4A58A6F38F3 /* PBXTargetDependency */, - A0046A4D64F714D8AE1DA41297EC76D8 /* PBXTargetDependency */, - 4F4D4522254898115EAEF57DB865335A /* PBXTargetDependency */, - BB71F0D5783F3D94716A0EC98304DFAA /* PBXTargetDependency */, - F37E5C8A565FC33E343BB217EF460513 /* PBXTargetDependency */, - 7F40F2196A0698670AD4172D572DF89E /* PBXTargetDependency */, - DDDF98D597150375EE5CF18FD3272D5A /* PBXTargetDependency */, - 01CE84A6439BD0FBA05223E91B1C9A6A /* PBXTargetDependency */, - 1C70890C785615A91AF741484BD9FBC9 /* PBXTargetDependency */, - DAD5770024F2172C81379FD00398404F /* PBXTargetDependency */, - 72D4B241BE63A374C584A4CDE4604B52 /* PBXTargetDependency */, - 18EDE14C29ADD8F6013B8E8D7AC79419 /* PBXTargetDependency */, - 6E4BB48EE4A222C0037097BC69C4DF6D /* PBXTargetDependency */, - E686E56B6DFD3701BA353156B14F0B9E /* PBXTargetDependency */, - 54F04BF04A0451D1B2B2E1CBA71DFC43 /* PBXTargetDependency */, - 3141F1E9A1D691751F5995878417ADD2 /* PBXTargetDependency */, - 2EA8D1D3F6F6088A5BEEBE28C2675B51 /* PBXTargetDependency */, - 63A406492B95BC1154160D4EAA0BEF7F /* PBXTargetDependency */, - 1C7A56550218B58EE01AEC7F83C8F8D1 /* PBXTargetDependency */, - 04854A04D16CD84066C849337CF1BB16 /* PBXTargetDependency */, - 732E5D5BB8E3A97E195152F1EB70B026 /* PBXTargetDependency */, - 14DDB1E08D6939A39BE32096ED1CB4A3 /* PBXTargetDependency */, - D71C15F93267899D43BA1A7EEF899324 /* PBXTargetDependency */, - 4B99CA567B05644EA420D300DF92717A /* PBXTargetDependency */, - 6B29B73625A4074C15A0408C418EC40D /* PBXTargetDependency */, - 18B97DEA5A51F322D6FD3B5274B75F98 /* PBXTargetDependency */, - 931AD65DA4B66B1540FD1BB03065C14D /* PBXTargetDependency */, - 3BDDD746EE57168288F137D665858A3A /* PBXTargetDependency */, - A9820988FFD3CE915B47EA338B57F500 /* PBXTargetDependency */, - BA07A0A3170045C5AE3D9D80DBDEEAA2 /* PBXTargetDependency */, - CBB115FDE5B20D8E60F70944E3F08557 /* PBXTargetDependency */, - 6768A0F40DF081F473C1CF7A5D671EB0 /* PBXTargetDependency */, - 8CD691A2A52C7F841565A7906507A15E /* PBXTargetDependency */, - 896402EB44ADF3344EFDEC7F315DFC2A /* PBXTargetDependency */, - FED4D9CA952EB6E860579D83695021EB /* PBXTargetDependency */, - E86EE8295C8D063AA21A7F5E7ED0BEA1 /* PBXTargetDependency */, - 8DCF1F98B10BFD08DE1DD9ABA97FE3E6 /* PBXTargetDependency */, - 79702EC41CDA2E035C79844A42E9BD5E /* PBXTargetDependency */, - A5FB88FDBA1C7A063888DA0578A52AB8 /* PBXTargetDependency */, - 7DEAA5EAF15679C5F2EE6E802C2ADA80 /* PBXTargetDependency */, - 686A5F5E6A4FBD351429B9F005C98F67 /* PBXTargetDependency */, - DC9A2601E172EE2CD84739D5BDA25F31 /* PBXTargetDependency */, - AD14AC328126135E44A1FD61B72B1EB7 /* PBXTargetDependency */, - ACF9A477F195548F0DF335891ED8236C /* PBXTargetDependency */, - 4ED07BEE65610995F270AB9F8914B4B2 /* PBXTargetDependency */, - 4B7B3BC7C81E637C8F881BB0924D5281 /* PBXTargetDependency */, - 9DCFDA887EDE0D5FDD2A4D049FDF5733 /* PBXTargetDependency */, - 24D0E8643977383667E751A8C78682FB /* PBXTargetDependency */, - CD0CB5941F2F3F4198713D8C5891097F /* PBXTargetDependency */, - 78528EEF5091E4CD72A97BF4335FD6DE /* PBXTargetDependency */, - 126CF3B92D03C8065C887DAAE42ADABD /* PBXTargetDependency */, - FF15197A79CEFF1C87BB1A758212C8BF /* PBXTargetDependency */, - 8EC80BAF1C9BE9167FB1338CA3D10C40 /* PBXTargetDependency */, - 892F3FF9429245C6863E0092BE2EAE5B /* PBXTargetDependency */, - 0486A2D3F6C5597A7B54DF89D18C1CA5 /* PBXTargetDependency */, - 992B435BECDC9182C00D33E256CDF04C /* PBXTargetDependency */, - C1B69688BB565314A6726432CFE8D726 /* PBXTargetDependency */, - 7C335D0EF85A5BD2A0618F8B6520CE2B /* PBXTargetDependency */, - 1DF0628EDA685031BB3E551CB5826941 /* PBXTargetDependency */, - 866316138634FB978F79DE6E71B9F4D0 /* PBXTargetDependency */, - 652A72A11EA1C2ADE9E861BA33E470F4 /* PBXTargetDependency */, - E65364E85B75BB416EA1AD4A8C502446 /* PBXTargetDependency */, - 2B7C0F354079E6B151D3E9F3A6347101 /* PBXTargetDependency */, - 89812DBFEFFD88A149B085764B76D262 /* PBXTargetDependency */, - B6ED106010C1A82F5D154EDAD03D1DED /* PBXTargetDependency */, - 538AB754A208E4D95348C1ACD70AB678 /* PBXTargetDependency */, - ABCF6490B1E2E5341E263B40D9EC13C7 /* PBXTargetDependency */, - 730E5DDE57CAAE65D7133A3EBC17E759 /* PBXTargetDependency */, - 24B3103F29135F70CC938259085432CD /* PBXTargetDependency */, - 46757860B4117174C9B2DD6BB3C2864A /* PBXTargetDependency */, - 1762258EF358A023C08F6AE2ABC25C79 /* PBXTargetDependency */, - 2267CDB86BE34B3B0D337C4590CEA0BD /* PBXTargetDependency */, - 07D2143700FC84C001169E6AE35DE404 /* PBXTargetDependency */, - 4571DB32DE285EE664B35665D8E7AE26 /* PBXTargetDependency */, - E28361A8502CA53A327B3D25D8DAB3CB /* PBXTargetDependency */, - E9D00DE11509D5D5D83FEFDC2DB22DA5 /* PBXTargetDependency */, - CFFA07D769993225742F87592A635B2A /* PBXTargetDependency */, + E3DA365DC72A8D15542B99D77666CB33 /* PBXTargetDependency */, + E4707C76224CAD03E5213F0AC1A2DAEC /* PBXTargetDependency */, + D52BFC35D0680021013F4A02ED03F08D /* PBXTargetDependency */, + B71A9C867136ED65344E13874C7838A0 /* PBXTargetDependency */, + D9D82703E2CDB72000C3EEFCBFD05C55 /* PBXTargetDependency */, + A918A0E49B5A4B7C3F696309AEEF970B /* PBXTargetDependency */, + 27B99C753AA01B55FA4B2ECDF5175607 /* PBXTargetDependency */, + 525D54EAB1308E4F2B0DCB638C5E6098 /* PBXTargetDependency */, + B0D4B3A3ADD03810DF451533B6EE3FCA /* PBXTargetDependency */, + BF6D0677D14F9EFAC68E1A35F4723619 /* PBXTargetDependency */, + F1ED53FE905606823A5CF28B2D7BA967 /* PBXTargetDependency */, + 71AE9F32C9F242FA18914121899A0934 /* PBXTargetDependency */, + 4930CE43E4A8FD633A3FBBEE83D5075B /* PBXTargetDependency */, + B8E3E0021E497E9F7033E4C78DA6D006 /* PBXTargetDependency */, + 40E82F903B3591E3944E48BB47492D3B /* PBXTargetDependency */, + 9D35D0DD0AB8F08BA4102FEB7890D70F /* PBXTargetDependency */, + F3B46CB82BCF80E679262C1B9F21BB37 /* PBXTargetDependency */, + 2A23B5D4A478FA61F50FACDCF5DD6245 /* PBXTargetDependency */, + 03F29B056F728C0CF30034C00E198D07 /* PBXTargetDependency */, + BE1B7250F0D5F94F1CDD8145D5273AB3 /* PBXTargetDependency */, + 9975E8EB69D0E3D6775539B2FC3E0AB7 /* PBXTargetDependency */, + 768A3F864614D7AD4F13E710C5BB6AAE /* PBXTargetDependency */, + A8EC3A54AC05F8B42C17B35EE147BF92 /* PBXTargetDependency */, + C85FB30891762E676295B172267E6F6F /* PBXTargetDependency */, + 5F7D1D33AF06B0AB57D9A82921413A97 /* PBXTargetDependency */, + 5BB2657AF85CE68C7A23FF14EFB2A99A /* PBXTargetDependency */, + 6CCCBB8CD21984D6F2864E83416C1AC6 /* PBXTargetDependency */, + 842319D04AFA092803B83FAE65603E5A /* PBXTargetDependency */, + 26892CDA0E8A3E862D89CD1B8CC505F7 /* PBXTargetDependency */, + E7616635E878C54FD579D9D3CA550466 /* PBXTargetDependency */, + 6F5A4A3131069A973E8438D53B18B0A2 /* PBXTargetDependency */, + 5F728FE463B42A417904E99B4B6BD3DE /* PBXTargetDependency */, + 2495E19E71AD431C6D6A7406BD519772 /* PBXTargetDependency */, + E7CE2C7650D7F7A137AB8263674FF1D9 /* PBXTargetDependency */, + 7926087FCBB060DE439A27DE8132AC2C /* PBXTargetDependency */, + 3C8F4FBDD55CA093B158475D9C037317 /* PBXTargetDependency */, + CDCD6B35CF12F6B89E330C3EFF1EDE5B /* PBXTargetDependency */, + 54F044FCE552049B561517309D00B729 /* PBXTargetDependency */, + 3C7549ED94DFEB8133B352FC7C69A9AC /* PBXTargetDependency */, + 735109AEA79348BF23E13D0C78E70A17 /* PBXTargetDependency */, + 518792C2E63BB97915D6B4DB7403B1C4 /* PBXTargetDependency */, + 320675A0BC320406F4A222365B3553A3 /* PBXTargetDependency */, + 967464678DFCEC1C59CC4180164576A9 /* PBXTargetDependency */, + 49E0EF84E9DA70960BCF7BD27AB6F679 /* PBXTargetDependency */, + 0F6562A3E8EA059D32C2E260C613D05C /* PBXTargetDependency */, + E4E53A5228158B3C6F6B5CB73D08472C /* PBXTargetDependency */, + 1E8526572D3A1DB262CB13E3BBDA9266 /* PBXTargetDependency */, + EF1AFB7B3ECE73E93EF0DE14B0451AD4 /* PBXTargetDependency */, + BB81E4E4CE787266F80353CE3317DD96 /* PBXTargetDependency */, + 5069B82DB07E8B7E1270D95B291C92CD /* PBXTargetDependency */, + EDF96C662FBA7762CD5536F4C6FA5BBC /* PBXTargetDependency */, + A9A60F4545DA9243E50AFE52F161870D /* PBXTargetDependency */, + CFD8247B5ACBEB146A21C46C4A3B7354 /* PBXTargetDependency */, + 483DFA135410BE255DDDCF0012247A93 /* PBXTargetDependency */, + 73EBF48372D9432E6F5F441DE385F3C6 /* PBXTargetDependency */, + F1A4654A251B1AB1394452E8BA4D4655 /* PBXTargetDependency */, + 13F99B20D85C230DB4F20AF9749A74BC /* PBXTargetDependency */, + E2831A9D336E0C4AA90FF3BD09E4CED3 /* PBXTargetDependency */, + CEE39A2161F9BF533BA048C8D47412EF /* PBXTargetDependency */, + 03F79D6FE58DD3B0773E439C801ED83E /* PBXTargetDependency */, + 6B3C0C3F59B0AE65CF177BE1F9AF9C52 /* PBXTargetDependency */, + C629A7CD44828BE4F4F6A9A1FF53B7F0 /* PBXTargetDependency */, + C2906BD0E330E6D43979718AA7BEE0E2 /* PBXTargetDependency */, + 397071BA6514A7CD48CCDDA877FB07F4 /* PBXTargetDependency */, + 1065FA6A1736A17ACB9A2628C30FD91B /* PBXTargetDependency */, + 18B64FEADA8BCD76BFC7B11AB8CA8DC3 /* PBXTargetDependency */, + 5571DE7ABC350C535A922F4BFA7A9EFA /* PBXTargetDependency */, + 88CC29D6D45039A1C6AC563762D69393 /* PBXTargetDependency */, + DFF9C253547BA4F3C23304E86EB89262 /* PBXTargetDependency */, + C88AA674C93645A3BA122FC47665C8B9 /* PBXTargetDependency */, + 7F6B42B46257B4D23403DB945B90CC60 /* PBXTargetDependency */, + 1DA9B856C82A0C292A5181C74F02CBF3 /* PBXTargetDependency */, + 38390BDAEE3FE9DC30AD97E2E88927EE /* PBXTargetDependency */, + F6820920416058B65F2F986D60232DD1 /* PBXTargetDependency */, + AE79F97CF85223D0A2435F1F6CBA32AF /* PBXTargetDependency */, + 92A431F0B6EF8625A7638352232C502D /* PBXTargetDependency */, + 9449EF77CC6FB39E0BE307FF2DD1FB86 /* PBXTargetDependency */, + 85A04A9630C52FED4292624CFE63C347 /* PBXTargetDependency */, + 55EFFEB45B2919A33FBEF4D4EDD60B21 /* PBXTargetDependency */, + 33142750F2828C0A066D79FCC14B8406 /* PBXTargetDependency */, + 42595CA16F59B66578B3C66B255B556A /* PBXTargetDependency */, + 27F4759EE12E02E87B6E75A63BBA13CC /* PBXTargetDependency */, + 64B6717E3167311CB462AD731F264DBE /* PBXTargetDependency */, + 847D01C123FB011E25BD45C42B73FEFF /* PBXTargetDependency */, + AF1E3E519BE45B20D12E62083372C18E /* PBXTargetDependency */, + 519068D8A02FB0DAA9F01CFC2125A274 /* PBXTargetDependency */, + 234022E135394B7FCF6E6298EC490F6B /* PBXTargetDependency */, + F5AE83EAB25B7FD0615165ACD306EAD7 /* PBXTargetDependency */, + 819E8683E2F3D43FDEA889B448A21031 /* PBXTargetDependency */, + DFE8F5BB255DC241D57751C288A586CA /* PBXTargetDependency */, + CB4108A98392A30DDF0C1B8121FA6F2C /* PBXTargetDependency */, + DA2291420886BDF8CAEFEF2D5DA5067C /* PBXTargetDependency */, + 17677DCD05E1AEB88D18451AF9B0DB8F /* PBXTargetDependency */, + FE733362EB8B0CDA3D086D800738A750 /* PBXTargetDependency */, + 9E0812DD65227D77ABBB5CE3B5558D66 /* PBXTargetDependency */, + 0191C6433074D2D92D5AC844B6456C0C /* PBXTargetDependency */, + 1657E8D662438B92461B051DD9EBC8AF /* PBXTargetDependency */, + 52FC53E3A66C2EADAF62CDE9438EA18B /* PBXTargetDependency */, + C419BBDD967B27E9D7F2C019BF800192 /* PBXTargetDependency */, + 1CF0C9F1A1AC63D7D64B9D2AC7F36F58 /* PBXTargetDependency */, + D091FE2EDEB9D2BFC7A7B31E3AF0DBB1 /* PBXTargetDependency */, + B620FC5461BFA6FA8685FE1527A8AC87 /* PBXTargetDependency */, + 71886C7581D00EAEE8ECD4832F5A5219 /* PBXTargetDependency */, + B1E7A1FD1500EDB81D6846514D73140D /* PBXTargetDependency */, + D158BE6489688BC444E6E3D739E0CDB8 /* PBXTargetDependency */, + 81B8ED507A06D43304E2C6E070880466 /* PBXTargetDependency */, + 46E0EEB8B76A0842E5A957A7F4828804 /* PBXTargetDependency */, + 5BF7C0803307D305610C95274B48149A /* PBXTargetDependency */, + 0D28D8C83C3E0F396E1B8919B43290A6 /* PBXTargetDependency */, + F21C2C601334E2996C6B415C19C6FF69 /* PBXTargetDependency */, + 95013C8EF7D7F54D51DFD2EBA324E6BA /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -20760,124 +21007,126 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 9886625934528003DD66A1B59C4E2C4A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 90263AB0A28855EB2C91CD34783542CD /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - C97B96A0E13E7A5CBBADEB1E848D2C00 /* Headers */, - DAFD1B6EE6337F5B73F93615BF12ADD8 /* Sources */, - F414CC9DCD46BBDDD9B4D104DF172340 /* Frameworks */, + 267FDCC8E7CB14AFEA6BAD546E714F87 /* Headers */, + C644FA2A2259D1F4C1D0B90D1688E653 /* Sources */, + B025459747091C59F3470B1E7E53F397 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 9A5A53206C0E01115ECE82379BDE1C37 /* PBXTargetDependency */, - F7B8EFEF350E448E5BCF80A8E0D479CC /* PBXTargetDependency */, - 6DAB3A0B8878757DC3D19A1DB5A0BC90 /* PBXTargetDependency */, - C5691ABE8B330BEA1D18CDE6FA962499 /* PBXTargetDependency */, - AC2217C8AC060F8FC0FE4ED684DFF2AF /* PBXTargetDependency */, - FBE6637BE177F1C89F333E564C54A970 /* PBXTargetDependency */, - D04DB6741A28C85FF0742CA6C8603061 /* PBXTargetDependency */, - DBCB602CC62D30A3E5C77E855E1AACAE /* PBXTargetDependency */, - 8C36295EED1F25DC1BFDD933C7F1D629 /* PBXTargetDependency */, - A0D5F68242B0197830DD591E5C9C85EF /* PBXTargetDependency */, - F409F33BFAE84BF1C26237C00FB71593 /* PBXTargetDependency */, - 04561BDD5F1518B2312E729AE72F42A4 /* PBXTargetDependency */, - F0B6DE20B7C64F73B4BC7DF066AA613F /* PBXTargetDependency */, - 77ACAF709CBFB62C0DCC0522CF181CB1 /* PBXTargetDependency */, - 66C82FC5ECDCF70878D8ECDD84B7442A /* PBXTargetDependency */, - 3BFDD85891B8CDCE8AC625E76B94D0C0 /* PBXTargetDependency */, - B3081FD6131DF5B107CCFA78F3EB89AB /* PBXTargetDependency */, - 2E29C9548EE804B528D6000A2E8E470E /* PBXTargetDependency */, - 63C45C7460DFE7F68F7182033791B497 /* PBXTargetDependency */, - 8EF90D278EA008357096EB4FD73F0320 /* PBXTargetDependency */, - F1A29F23C16DD42F6AE0E589F3444BE0 /* PBXTargetDependency */, - F6882BB923A35CDAB1B1CA4D68B47190 /* PBXTargetDependency */, - 2C90E5ABEBF6622090344658E9DC147C /* PBXTargetDependency */, - 0105792EC27EBF319C9F4F9B4CC04680 /* PBXTargetDependency */, - F9A47CDEF36E456B9DF3D4F488EF568F /* PBXTargetDependency */, - 1FCED61287B175052B7CB9D766660F23 /* PBXTargetDependency */, - EBB90FD2C7E1F634E52353A47046E792 /* PBXTargetDependency */, - C52FAD08BD402C1F8A0CC74E18316618 /* PBXTargetDependency */, - 074853A513A305F0ED7285549521956B /* PBXTargetDependency */, - D57551B8770CAD9957C13E5B76DF1BBD /* PBXTargetDependency */, - 72D9203EE404040690A7E1B5EA9BC1D0 /* PBXTargetDependency */, - C756C77634090F725E8C02A93B51603B /* PBXTargetDependency */, - 40EDC75728F2BD0591F59A22BC032CAC /* PBXTargetDependency */, - 0961777090915BC97D35A92F1B46B8C2 /* PBXTargetDependency */, - ED5E1AC9AB2D63DEF9336FAC24AE940E /* PBXTargetDependency */, - 4A3889F6F065C0A9072DBAADB7EAB1F3 /* PBXTargetDependency */, - 49A07E951EEDC9E060BB056064890487 /* PBXTargetDependency */, - 061B62C13A2453BFB60C2BF9F1B61643 /* PBXTargetDependency */, - E01A5B4A5B07CAE829E02D91A1E2654E /* PBXTargetDependency */, - 9F884962478B3B91EAC92F66A9402CFB /* PBXTargetDependency */, - 75AA3C3A48EFC5C1FCF22929E2D95B67 /* PBXTargetDependency */, - E9D99C6560F8BF9CBE0057EE26521D53 /* PBXTargetDependency */, - 76525AA27205D332AD2663633F1AFDB0 /* PBXTargetDependency */, - 5C07F389304D17EAC0A973FCEC52DD1C /* PBXTargetDependency */, - 84BE1CBBF25CA70BEC18FA6BA85B30E1 /* PBXTargetDependency */, - D98BA402A2C73EE743589174563D5E35 /* PBXTargetDependency */, - FCCE946A8C13BFB53D77F54289D645C4 /* PBXTargetDependency */, - 3810AFA8A6AB96B188CDAFE35349C27B /* PBXTargetDependency */, - 72BA256BED6B15341A10F68CBF7AB664 /* PBXTargetDependency */, - 1BBED52D0FE95E536C9A20FDCE10136D /* PBXTargetDependency */, - C383B3216FFC05DFDF6AAF3D3BF6F456 /* PBXTargetDependency */, - F92AFECFD4B9B88E0C3FD4D331B241ED /* PBXTargetDependency */, - 2D3BF2B18FAA35F59D609BA7AABD50F3 /* PBXTargetDependency */, - 1D468D17ECFF7F005C429A97888C5EA5 /* PBXTargetDependency */, - 5B4C03F92730AD6533D08545DDDC08C3 /* PBXTargetDependency */, - D7E9EBA08328166CB4AB50813FB3B0C9 /* PBXTargetDependency */, - 63AFC29043ED2ED6002AD93C5C6B8A25 /* PBXTargetDependency */, - 9A93CB23863779A1A92EC9061A451AD8 /* PBXTargetDependency */, - EC68CFCE2E90C186FE4A9DDD2D685858 /* PBXTargetDependency */, - 15B252685FA1C49DF87F3BD1EC1BAFDD /* PBXTargetDependency */, - FF123D88D022B69063D1387F72FF0923 /* PBXTargetDependency */, - D6A0FE4E8275F737C7E887D00544D0F0 /* PBXTargetDependency */, - B012389B667AF76A50E224D770721F20 /* PBXTargetDependency */, - 81F2407EE65DAFAD746CFA5F38B8F345 /* PBXTargetDependency */, - 6A80B9A5A786A41A0B1ABC62E521BEA5 /* PBXTargetDependency */, - 51D39D9B402638BBB2EF364BB6D3F3FC /* PBXTargetDependency */, - 45471E62EF0E0D4F27699604ABFBC53F /* PBXTargetDependency */, - 4F7127600796F293E5075C1557F5F76A /* PBXTargetDependency */, - CD9B03902BB5936D65F1EAD60B42829A /* PBXTargetDependency */, - C6A909D5E14DFB26BAB1FF17CAF4FEDD /* PBXTargetDependency */, - E4C4AE1304C953CF10EA40970FBE2605 /* PBXTargetDependency */, - 001622213D55C686ED53A8B7D7552AA2 /* PBXTargetDependency */, - EDB40CCC2E4BACB625238F10002057D6 /* PBXTargetDependency */, - 656BC14B221CF2C122EAED835978E6A6 /* PBXTargetDependency */, - A7F8A2626C8165D30BE5E372AB74E343 /* PBXTargetDependency */, - 385C243945A4966CC19B9613AB56BB0B /* PBXTargetDependency */, - 403603484977E284333AF878F6F943A3 /* PBXTargetDependency */, - 875A8E4DF49B3CD78685B96172FBA7E3 /* PBXTargetDependency */, - D9EE056F77A056DB08460888C4A57037 /* PBXTargetDependency */, - 1D12B87F1E494E5A45AE35D8A27654C5 /* PBXTargetDependency */, - 74D9E8FE10CB01B2C25C01B0372A0C0E /* PBXTargetDependency */, - 3784AC06C04F3864A8D6399AA1FD0019 /* PBXTargetDependency */, - 3087F4B96E38A5CEDBA672C3486A9BA4 /* PBXTargetDependency */, - 7D28A8499BFE9C42B074EEAF942A7A5F /* PBXTargetDependency */, - 98804A53EB6896DAC7CAC0712F6377CB /* PBXTargetDependency */, - C96E13A0B8C672F618C99278718D37B2 /* PBXTargetDependency */, - 5FFAF4D063C851C8B41A0C7DD6B0A4F2 /* PBXTargetDependency */, - FF286FF353E42A6F158854EF331E0AB6 /* PBXTargetDependency */, - 6EDD580A2662A31B687B667AD10C3851 /* PBXTargetDependency */, - 1F14FD739FC6512E45F27AC0A9E379A5 /* PBXTargetDependency */, - 233625237A93E5A3EC7F209F983E8B38 /* PBXTargetDependency */, - 3F5BE59820AEE70D8428B86A904A4D20 /* PBXTargetDependency */, - 1CE13C1DEBE84DA1A438466043C46E9F /* PBXTargetDependency */, - 9376E71A6ABCB9D277A9B708BFD18B34 /* PBXTargetDependency */, - 7349350F8C79EE9D2764BDE9568859EF /* PBXTargetDependency */, - BDF4C67EE23B3F60A2D88990492A8E50 /* PBXTargetDependency */, - 38976E1BF8409CF9AAC09A9D530C71B2 /* PBXTargetDependency */, - 038E983B4AE1ED46A9B457C0BE7F3616 /* PBXTargetDependency */, - 217CBF80A7EA4B01F1311874024FA76B /* PBXTargetDependency */, - C94F64ABF4F82BEBEA248BC63AB2D83F /* PBXTargetDependency */, - 0D4389D34AF9EBD48DA0DB8B5887A0C2 /* PBXTargetDependency */, - 97A0F44CF7556AF22581D11FF487B6C3 /* PBXTargetDependency */, - 56EAB202E21AAF08646D2346C9C563BF /* PBXTargetDependency */, - AD2FF0A25D9BCEF2D44D952B98BA20CA /* PBXTargetDependency */, - 185B505BCB5712E820CB08F6E3E94E8A /* PBXTargetDependency */, - 446B889723EA91C977DB0F8677AED44C /* PBXTargetDependency */, - ED4E9CB29906B41C606AD2C6012125A7 /* PBXTargetDependency */, - 2573039B133AF8CD1C3087167BA966AF /* PBXTargetDependency */, - B9B5E3B128EF130D4EE05C42459DC2BB /* PBXTargetDependency */, + A0C32F1F71671CA390653E17A539E067 /* PBXTargetDependency */, + 51405A95713D4690E84685C10829267F /* PBXTargetDependency */, + 47D510C0F7AF24736928849D37BF1816 /* PBXTargetDependency */, + 89AB65282C82B231A17065E2A755BC86 /* PBXTargetDependency */, + 11479B34F53D4335B07CDBA6A276CDED /* PBXTargetDependency */, + D8455EFE6A2904EF5AA739452E19BF21 /* PBXTargetDependency */, + 11E03DC29CCF3A6E1570BB48B558A8D2 /* PBXTargetDependency */, + E266503DE84D1EFA18BAB3E30AE021BF /* PBXTargetDependency */, + 330760ABF1FF003750D5C1F387F87E58 /* PBXTargetDependency */, + 4F0FA856B08570E445FFD430E94EECB8 /* PBXTargetDependency */, + CBB06B8B03B2346919C999F0887CDF3F /* PBXTargetDependency */, + 52AE874F5F477E2B2CB0AB3B794D7A69 /* PBXTargetDependency */, + 329CF45A699037A17BC01FC9E8C506FF /* PBXTargetDependency */, + B2FA949FC020CB4B2CE8219765C76610 /* PBXTargetDependency */, + AA67CD6F8F920B7C25CE65C3FC3FE8DD /* PBXTargetDependency */, + 82ECBA7749774BDDB0C838B907DEE96B /* PBXTargetDependency */, + 0FA2D8C5763528912FFC9AA618B20106 /* PBXTargetDependency */, + 127FBC8665696CAF9A4546526B6B0DDA /* PBXTargetDependency */, + C45EF051DED3A7ADE32A6FB8C02BEC40 /* PBXTargetDependency */, + 6A31CDDFB5860F565319A6AFCEB4EBDE /* PBXTargetDependency */, + 45C3D06E0566EC98EC6635E85AD5616C /* PBXTargetDependency */, + 15D67197F0C00710D6DE9C60DD2EA0F3 /* PBXTargetDependency */, + F3502842BFDCB088B64C588FB75679FD /* PBXTargetDependency */, + 1FF7E39645381C9968C5357D47649543 /* PBXTargetDependency */, + 8F09117FAF8B091EC2568F33870A306C /* PBXTargetDependency */, + 79FF7872A3B23C9047E5B5BE547BCB95 /* PBXTargetDependency */, + FD73855D8E7DA6867B869552BEC837CF /* PBXTargetDependency */, + 72F5C1350AEEA8284BC93C2DDDB0B589 /* PBXTargetDependency */, + 07C61FE0436E70B37BE1A57AB1693832 /* PBXTargetDependency */, + AC28828332ABCB82180B888B79776D8B /* PBXTargetDependency */, + 4990A38856112896F4574A8B84BE6864 /* PBXTargetDependency */, + 86CB57084F4471E868260DE32116F916 /* PBXTargetDependency */, + 1147AFA34344FA2CFF2382EFC3CB601E /* PBXTargetDependency */, + 0B65F37E5C0CC4101087214A1C117A4C /* PBXTargetDependency */, + 2464E1F41141314B407C8D7CB5EA73A2 /* PBXTargetDependency */, + 4E3BF7DADEA7AC81D27643FCCE2B8613 /* PBXTargetDependency */, + 34DF935B2296AFACAF0A2493B61A39C1 /* PBXTargetDependency */, + F2FA313DFCFE64F3F81CCBD994D2F7AB /* PBXTargetDependency */, + 9C78D37FE6E872A02DA34BED2DD298E0 /* PBXTargetDependency */, + 41098DF369169B1BE7D66C994839FB03 /* PBXTargetDependency */, + ADB3480B3F60DF128E71AC6C6AEAB74A /* PBXTargetDependency */, + 272D59F6FB5CBDFBD154E32B82D9DCBE /* PBXTargetDependency */, + 16DF80CB8FADDE6F0276DA13F242643A /* PBXTargetDependency */, + BAC79B8607A771D50691F800F25C223B /* PBXTargetDependency */, + 661CAD3F25DC2CA9EFD14C684924E1EA /* PBXTargetDependency */, + B4F19A4298A8F6AEAFC0726C15887C9E /* PBXTargetDependency */, + B263DFBD8D4ECDB2B189B5296F204548 /* PBXTargetDependency */, + 7F5A6007F31AF81CFD73CA5035A0BBFB /* PBXTargetDependency */, + B1B77E132A721D4D52688B79C2E05FB6 /* PBXTargetDependency */, + 4AF7FAE8B9CCA84773CA059D010560C8 /* PBXTargetDependency */, + 83B8950F268925F9D242A9E4D927FE11 /* PBXTargetDependency */, + 2EB9B72457A4CC9287633CC0B1D7864F /* PBXTargetDependency */, + 649F18470A7C878AB0BDFA575A005950 /* PBXTargetDependency */, + BE9B1D7B36F058DD2E5D491290E2E6AB /* PBXTargetDependency */, + 121A74151918CB7449220FE670917F46 /* PBXTargetDependency */, + 3FB867C7ACE403BCB9BE1D69DDE8FF46 /* PBXTargetDependency */, + 1D808741F89D99577DE455C3A703774A /* PBXTargetDependency */, + 164D3C2FC166FB4D760514EDA0F12923 /* PBXTargetDependency */, + 05B4A0C68D9A3503EA483C250D4B2D71 /* PBXTargetDependency */, + EACB9F214C49780987916DFB93EE15DF /* PBXTargetDependency */, + B5792CFAB46B7EB277C756AAE448FE6F /* PBXTargetDependency */, + 88CC1562464E37A572260F3F5B854209 /* PBXTargetDependency */, + 833A092EE2B9A35ABB9B8A9915F1643A /* PBXTargetDependency */, + 732A0A42B0730E2C60B9956F9ABA1599 /* PBXTargetDependency */, + 1E4E14FB42789553798BE7BB31687C73 /* PBXTargetDependency */, + 2BE71C554BD1E77A0E4A9672F6278A73 /* PBXTargetDependency */, + 819F73185EEB6671557857BC0E1C20FB /* PBXTargetDependency */, + BBA8FD06D1D363D8117CBDEDC0FFC0EE /* PBXTargetDependency */, + D84A65525741945B43380B859ED8FDAA /* PBXTargetDependency */, + ADB4596B6D25EF1FD02E5585C4F45394 /* PBXTargetDependency */, + 4DFF612BF024BC7E5EDE7088A4FCACFE /* PBXTargetDependency */, + 6230B0983C4C18DDB67BEA949F8311B1 /* PBXTargetDependency */, + 1E7E417DEE0745A76EF13814A9D61FB6 /* PBXTargetDependency */, + 0DF0FFFFED8362E2C5A09AADEA936A08 /* PBXTargetDependency */, + 39F001A92EE94E235A3B498555D0DD8D /* PBXTargetDependency */, + B52C55B27C4E6D716F2CC9F5972C5EBB /* PBXTargetDependency */, + ED4E6582F6D84F97495C7B9687150841 /* PBXTargetDependency */, + 58D1B0168039D97F1EB2BC4727712339 /* PBXTargetDependency */, + 3C2D490B5C0EDC95185C0D781BAB5700 /* PBXTargetDependency */, + EAA117EA6F7964497C328EA9F860739C /* PBXTargetDependency */, + D2597BB4726D1EF880E7498B869C3816 /* PBXTargetDependency */, + 62FD7BCCFF8C5117F53472A87638369E /* PBXTargetDependency */, + E356572A62F11E13A05964A12E49DCD5 /* PBXTargetDependency */, + F6E449B40871C4630423F010277FCF5F /* PBXTargetDependency */, + 4CE61830D6DD438881DF56A3BC095D90 /* PBXTargetDependency */, + D893243090E5BE53E70E318A421F3184 /* PBXTargetDependency */, + 49017C29D99310C025F9A400C964F43B /* PBXTargetDependency */, + 50BF44DAB73C9ACF2501FE226A8EEC69 /* PBXTargetDependency */, + F7B36088753BAAAF086EE98671FB39EE /* PBXTargetDependency */, + 741BFC8D27BFB8D6F0F6EC626832BF47 /* PBXTargetDependency */, + A3E2F29848DB6D0404FDB7E548F6BD6C /* PBXTargetDependency */, + 10864F134D666F9FC7FCA9F319EA531B /* PBXTargetDependency */, + 6DD98A9F9A6FBCE28A8074E5CBBA6E38 /* PBXTargetDependency */, + C51B1F653CA932A2F43341CB2E94E7C9 /* PBXTargetDependency */, + 00A24BC2DCB8D342331A512AF55ABE4C /* PBXTargetDependency */, + D02D4F609F78663AFCA4594C32C27FC4 /* PBXTargetDependency */, + 1D0F672381ABCABA14B8AF6E0488FD86 /* PBXTargetDependency */, + 07A788C4457555E814F3FAB6945952BB /* PBXTargetDependency */, + 2661C4455A3B98F106296FCCC1D7B1F0 /* PBXTargetDependency */, + CE1F875AA07B832ACDD8AC69E54D84DF /* PBXTargetDependency */, + 0700F43FDBC989CAD2987284A87BC472 /* PBXTargetDependency */, + 8BE67C5BAF4C62371FDF85C761394674 /* PBXTargetDependency */, + 2686620A84378B632A98335FA51A2278 /* PBXTargetDependency */, + 456E62FF2F53B174278947CA23D27724 /* PBXTargetDependency */, + 6084CF4BD4350CD45F1E2F3D88CC1485 /* PBXTargetDependency */, + 905275FA67870B782710F160FB763D14 /* PBXTargetDependency */, + 4B0FF2D5A604BF1550DE12DBF041D850 /* PBXTargetDependency */, + 61358BB1942559685B9DE86E6B495E4C /* PBXTargetDependency */, + 57A124DB7CAE1B5F54892658C0742183 /* PBXTargetDependency */, + 9AF3A29484D4DB909EB883E2CCFC55E8 /* PBXTargetDependency */, + 6E92170EDB90C122F4EB8D032135E3B7 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -20983,6 +21232,24 @@ productReference = 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */; productType = "com.apple.product-type.library.static"; }; + BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3CA06B300CC116BE49202F8E1F82A5F8 /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */; + buildPhases = ( + 8CE945DCFFE2D8FA28B9F913B59565FF /* Headers */, + 2D1F7E55C4C79B8B5D2F36B78D89B6A6 /* Sources */, + 10528A71B397AE90D0E7E8C4978CC6DC /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */, + ); + name = "react-native-safe-area-context"; + productName = "react-native-safe-area-context"; + productReference = 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */; + productType = "com.apple.product-type.library.static"; + }; C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */ = { isa = PBXNativeTarget; buildConfigurationList = FA12887CC302905D6759615E1FBC19CF /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */; @@ -21378,7 +21645,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = BEC3BACA2CF6A366F4B022A7E01F2DAD /* Products */; + productRefGroup = E31346C0B67ACF2249F832AF0EB5F565 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -21443,6 +21710,7 @@ D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */, CA400829100F0628EC209FBB08347D42 /* react-native-notifications */, 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */, + BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */, A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */, 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */, 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */, @@ -21463,6 +21731,7 @@ 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */, 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */, 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */, + 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */, D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */, 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */, 0BB7745637E0758DEA373456197090C6 /* RNFastImage */, @@ -21665,6 +21934,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 090C94FE757B90A9F6233E2E644FC6A4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */, + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */, + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 105428119F989C1C5997C3587B472A88 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -21821,6 +22100,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2D1F7E55C4C79B8B5D2F36B78D89B6A6 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */, + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */, + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */, + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */, + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */, + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */, + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */, + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */, + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */, + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2E07488C6C021EF594F60AEF4E522601 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -22252,14 +22548,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4C81A21545BF3636190CCA73827C24D2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 966E01EEC48EFD1ABD704047E3F90F35 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4CDFD8A265E17B49B86B4AE586EA7B9C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23182,6 +23470,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C644FA2A2259D1F4C1D0B90D1688E653 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40ED423DFB93BE77EF57A2C13318964E /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C8617D8BE10774C434401452F5C531D6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23218,6 +23514,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + CDA0623D42187422171BEC6C48BBBEE8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1F6DFF890D73A3400DF2B04DD1601E79 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D0F437E2609A0F999E6FEBC8409057E7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23248,14 +23552,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DAFD1B6EE6337F5B73F93615BF12ADD8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F3BFA6A912AD972C5425B28A9DBAA633 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E52752F659F5427D67E7BC18DCD04B86 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23388,23 +23684,17 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 001622213D55C686ED53A8B7D7552AA2 /* PBXTargetDependency */ = { + 00A24BC2DCB8D342331A512AF55ABE4C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = AB551A88F6A300437B5AAEAAACB9EF0C /* PBXContainerItemProxy */; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = B77EC1A3590605F7F303BFA0F423C646 /* PBXContainerItemProxy */; }; - 0105792EC27EBF319C9F4F9B4CC04680 /* PBXTargetDependency */ = { + 0191C6433074D2D92D5AC844B6456C0C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = F3D4FACAB449A01E756FB1E30315D033 /* PBXContainerItemProxy */; - }; - 01CE84A6439BD0FBA05223E91B1C9A6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 7577DCA93516F64058BE2CBD4D16AAB2 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 81F8896C5DB1BCE0407DE2B61AD3D6F9 /* PBXContainerItemProxy */; }; 023955AC36E92DE48F0B6670771E8769 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23412,12 +23702,6 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = 2FEE8079F6A6AAB7EF261D76B867F043 /* PBXContainerItemProxy */; }; - 038E983B4AE1ED46A9B457C0BE7F3616 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 9B7DF91205BC0FCDCF42F1C7FA199438 /* PBXContainerItemProxy */; - }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -23430,11 +23714,17 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 90A863AAA5E405464866F689B43DA4E0 /* PBXContainerItemProxy */; }; - 04561BDD5F1518B2312E729AE72F42A4 /* PBXTargetDependency */ = { + 03F29B056F728C0CF30034C00E198D07 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 0491BF5C66E0E3744D2A65D913A34BB9 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 889B4629741816E3830F8BF948F984C6 /* PBXContainerItemProxy */; + }; + 03F79D6FE58DD3B0773E439C801ED83E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 113D310048CCDBA4829745D03E7C5EB4 /* PBXContainerItemProxy */; }; 047D4E0D4AFA3202E8B85875CD42FFF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23442,23 +23732,17 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 4EFDA9ABE3CE71234F681C27E6E67E0C /* PBXContainerItemProxy */; }; - 04854A04D16CD84066C849337CF1BB16 /* PBXTargetDependency */ = { + 05B4A0C68D9A3503EA483C250D4B2D71 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = A6CBE22D95622F2D7ACC00F3B3E4E111 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 5FE28374E7632DBC75D4A5D58FAC3ADB /* PBXContainerItemProxy */; }; - 0486A2D3F6C5597A7B54DF89D18C1CA5 /* PBXTargetDependency */ = { + 0700F43FDBC989CAD2987284A87BC472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = AE58832D440D3C3E05A0B799A6B7147C /* PBXContainerItemProxy */; - }; - 061B62C13A2453BFB60C2BF9F1B61643 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = D6196B4CF9DD24461E62959DB974D255 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = CCBF64AD9DF5D129E7BCD151F2EF81E6 /* PBXContainerItemProxy */; }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23466,17 +23750,17 @@ target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; targetProxy = 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */; }; - 074853A513A305F0ED7285549521956B /* PBXTargetDependency */ = { + 07A788C4457555E814F3FAB6945952BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = A85E89D4FB7CA935A92B4AB152E73C5B /* PBXContainerItemProxy */; + }; + 07C61FE0436E70B37BE1A57AB1693832 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-RSocket"; target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 0B311CEF96EEAD6AA3998C9550ED0FFF /* PBXContainerItemProxy */; - }; - 07D2143700FC84C001169E6AE35DE404 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = A9E735C1F9867C0B3DD9BCBFD431DFB3 /* PBXContainerItemProxy */; + targetProxy = F2F7A2A57746511D774A16249C56F981 /* PBXContainerItemProxy */; }; 0819D4E8DCB748F652F6C3216F88A453 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23490,18 +23774,18 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 924025D4D8E604372CC80524DD2E97F8 /* PBXContainerItemProxy */; }; - 0961777090915BC97D35A92F1B46B8C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = BDD2B43F39F748B165D3B4CC4C141AB7 /* PBXContainerItemProxy */; - }; 0AB8C204827951DC76A0DEA96828FC98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 437B65583B16B649BD8F25DF7359E61D /* PBXContainerItemProxy */; }; + 0B65F37E5C0CC4101087214A1C117A4C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = CE542961701E278768ED1BA423934B23 /* PBXContainerItemProxy */; + }; 0B6CE01049FAA34EEDB7B041E1C159D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; @@ -23514,11 +23798,17 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */; }; - 0D4389D34AF9EBD48DA0DB8B5887A0C2 /* PBXTargetDependency */ = { + 0D28D8C83C3E0F396E1B8919B43290A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = D5E0F479080A3548EA71565443BF62B3 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 1F4A7616363E0961A58CA41935200E36 /* PBXContainerItemProxy */; + }; + 0DF0FFFFED8362E2C5A09AADEA936A08 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = C58BBBD418E6F3778E7EA7161CD806CA /* PBXContainerItemProxy */; }; 0F0BDC8FEB853569FB1BF7ACAD504741 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23526,23 +23816,71 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = B3F501C8895365B2E84048FB6C665944 /* PBXContainerItemProxy */; }; + 0F6562A3E8EA059D32C2E260C613D05C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = DB0847A53B2FA0A3C99B225E97C243C6 /* PBXContainerItemProxy */; + }; + 0FA2D8C5763528912FFC9AA618B20106 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = D5441E0DE33B91B5B638940730AF5F96 /* PBXContainerItemProxy */; + }; + 1065FA6A1736A17ACB9A2628C30FD91B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = F8CFE6F279DB272E9F6E36635CFEBF0B /* PBXContainerItemProxy */; + }; + 10864F134D666F9FC7FCA9F319EA531B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 4356C23A90B8E137C947C8E3E45D4C23 /* PBXContainerItemProxy */; + }; 109AAD7F89F41A04284880BB80B4C074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */; }; + 11479B34F53D4335B07CDBA6A276CDED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = D16209CB92E2B310A78EC1EB8F1232B2 /* PBXContainerItemProxy */; + }; + 1147AFA34344FA2CFF2382EFC3CB601E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 06238F09DE81970920F8FB3CB188A752 /* PBXContainerItemProxy */; + }; + 11E03DC29CCF3A6E1570BB48B558A8D2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = F00A3AD284C3AE098AFC0F2C255A6452 /* PBXContainerItemProxy */; + }; 11F238A9B52D1449196113F8D64A42B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 69F31C657CAAFD3F29F09AA817462D1B /* PBXContainerItemProxy */; }; - 126CF3B92D03C8065C887DAAE42ADABD /* PBXTargetDependency */ = { + 121A74151918CB7449220FE670917F46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 8AC3B2B8F7504F27CDDE9FBE8E16615E /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = DB8E6C2B826259CD8BC9F60B2D50D0F4 /* PBXContainerItemProxy */; + }; + 127FBC8665696CAF9A4546526B6B0DDA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = A0514ECFACC7F0E9DCCFE507BC6414A4 /* PBXContainerItemProxy */; }; 13D1447CBB44B0928F9CC7C4F753C88D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23550,35 +23888,47 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 25511591901776CBD4A6CC6BDD1BD233 /* PBXContainerItemProxy */; }; + 13F99B20D85C230DB4F20AF9749A74BC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 42234504C7FF67CDFFCAF6B4CAD7F517 /* PBXContainerItemProxy */; + }; 14D04125E2284DB6D632FA2146727F98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; targetProxy = 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */; }; - 14DDB1E08D6939A39BE32096ED1CB4A3 /* PBXTargetDependency */ = { + 15D67197F0C00710D6DE9C60DD2EA0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 3A2E01B80E10C39344D240F5DAF03ADA /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = A6230F7EEE1ACF1F51FC6517BFAA3C8C /* PBXContainerItemProxy */; }; - 15B252685FA1C49DF87F3BD1EC1BAFDD /* PBXTargetDependency */ = { + 164D3C2FC166FB4D760514EDA0F12923 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 1D2E6DC52E6158D90C72C209E62343CD /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = BE33BC644F700F14C28AB6288F04A377 /* PBXContainerItemProxy */; }; - 1762258EF358A023C08F6AE2ABC25C79 /* PBXTargetDependency */ = { + 1657E8D662438B92461B051DD9EBC8AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = A1A282289704EDA50F18108124D75A67 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 04992C00E6EBE5373FE7EFBC57507B72 /* PBXContainerItemProxy */; }; - 17704E018D149CFB816808DAE839B99B /* PBXTargetDependency */ = { + 16DF80CB8FADDE6F0276DA13F242643A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 0A6E183C51BA4CE0760887C859674D79 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 1B916168DEA3C9F7676FA3590811525C /* PBXContainerItemProxy */; + }; + 17677DCD05E1AEB88D18451AF9B0DB8F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = A19DF5E0EFE248F59AFA5C74EF0DFEC2 /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23586,29 +23936,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 185A446EBADB08520D72FB4FE33BBBC9 /* PBXTargetDependency */ = { + 18B64FEADA8BCD76BFC7B11AB8CA8DC3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = BE860A2E05B7BF993B1F29F3F8B90838 /* PBXContainerItemProxy */; - }; - 185B505BCB5712E820CB08F6E3E94E8A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 277AACA3D2E2779095A077CF224C5AE1 /* PBXContainerItemProxy */; - }; - 18B97DEA5A51F322D6FD3B5274B75F98 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 2997048CF71BE83C30E2D458147A800B /* PBXContainerItemProxy */; - }; - 18EDE14C29ADD8F6013B8E8D7AC79419 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = A4EF2779024538A36B6887A8DE57956B /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 644D050C69124CC642E63531715DFECC /* PBXContainerItemProxy */; }; 19297402BCBD687406D317002BE87D26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23616,71 +23948,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */; }; - 1AA7629E4B1E3D03BAE8B4C026B882BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 753FA5A207823BD66D1D71B0CDCF0732 /* PBXContainerItemProxy */; - }; 1AB5E32532E3403A1A4C0821215EE208 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */; }; - 1AC9493CFDB16F89E00911BFC01436D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 13B0A602F5BB05BB6178D9E13FD2CEF0 /* PBXContainerItemProxy */; - }; - 1BBED52D0FE95E536C9A20FDCE10136D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = F1BE6DEC64F23BF14FC235D00C202386 /* PBXContainerItemProxy */; - }; - 1C70890C785615A91AF741484BD9FBC9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 177EEC019BCCE03D85E0AF53E9E239DA /* PBXContainerItemProxy */; - }; - 1C7A56550218B58EE01AEC7F83C8F8D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 3AB321BF7B2A984CC6C4FA224C1969C6 /* PBXContainerItemProxy */; - }; 1CB5826B04A12E8E43187A497C73FA8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B4E7AA2F388BF06D09134ABA91287970 /* PBXContainerItemProxy */; }; - 1CE13C1DEBE84DA1A438466043C46E9F /* PBXTargetDependency */ = { + 1CF0C9F1A1AC63D7D64B9D2AC7F36F58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 5C6E738D9CF62D0EDBFA6741B7403A05 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 297A2B84FC17D6F7F91153C9C3334C7B /* PBXContainerItemProxy */; }; - 1D12B87F1E494E5A45AE35D8A27654C5 /* PBXTargetDependency */ = { + 1D0F672381ABCABA14B8AF6E0488FD86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 217A9402BB9DADC4244A2988D1391F49 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = B38FB333782EF76F150C8C7CA582A8EF /* PBXContainerItemProxy */; }; - 1D468D17ECFF7F005C429A97888C5EA5 /* PBXTargetDependency */ = { + 1D808741F89D99577DE455C3A703774A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = D069D1BD6BC655C9307A6058CC0D703A /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = A473FE384ECC0A5305C9C74DC4AA4FE5 /* PBXContainerItemProxy */; }; - 1DF0628EDA685031BB3E551CB5826941 /* PBXTargetDependency */ = { + 1DA9B856C82A0C292A5181C74F02CBF3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = ECC3487D6608A718BFB2B34971B08AC2 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 642361D0ADF645370385D06B396110ED /* PBXContainerItemProxy */; }; 1DF8472826EA8CB4E129A9BAD49CD435 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23688,47 +23990,53 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */; }; + 1E4E14FB42789553798BE7BB31687C73 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 839AF7ADA9594F89244CF78223DBD467 /* PBXContainerItemProxy */; + }; + 1E7E417DEE0745A76EF13814A9D61FB6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 4F982604C49A2BD0F1E05AA077E90EEC /* PBXContainerItemProxy */; + }; + 1E8526572D3A1DB262CB13E3BBDA9266 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 1D95D863811FBD1B356071611606D1D3 /* PBXContainerItemProxy */; + }; 1E86F846CC0FF76E323FC68CD12C6316 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */; }; - 1F14FD739FC6512E45F27AC0A9E379A5 /* PBXTargetDependency */ = { + 1FF7E39645381C9968C5357D47649543 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 6D3B3B992C0BEC43909F993F0FF329C7 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 1227D1FB7E27665C424F0F15E124E59E /* PBXContainerItemProxy */; }; - 1FCED61287B175052B7CB9D766660F23 /* PBXTargetDependency */ = { + 234022E135394B7FCF6E6298EC490F6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 92E3BB6EBAEFC78CB85CBD28AA64A821 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 244E5D6DEF2503D7C675692C46AD761A /* PBXContainerItemProxy */; }; - 217CBF80A7EA4B01F1311874024FA76B /* PBXTargetDependency */ = { + 2464E1F41141314B407C8D7CB5EA73A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 7233D610D9F4D656DDAF9BB8D0F38AE2 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 3AEF996ACD3624F5D0525CCA0F787201 /* PBXContainerItemProxy */; }; - 2267CDB86BE34B3B0D337C4590CEA0BD /* PBXTargetDependency */ = { + 2495E19E71AD431C6D6A7406BD519772 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 346EB07811BDB3B7987A0E517C8591FA /* PBXContainerItemProxy */; - }; - 233625237A93E5A3EC7F209F983E8B38 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = AC808FE34F24C8F77ECCE627F8F376A6 /* PBXContainerItemProxy */; - }; - 24B3103F29135F70CC938259085432CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 6B3B687D7F79A74A9B0E3129C7591AC8 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 3D1BF08E2D556F98377224E12140D456 /* PBXContainerItemProxy */; }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23736,12 +24044,6 @@ target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; targetProxy = 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */; }; - 24D0E8643977383667E751A8C78682FB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 19AF8AA0B6120BAA4A582BF687062154 /* PBXContainerItemProxy */; - }; 24E814046525044258B7154439929999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -23754,24 +24056,60 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 56C91901D2770AB6795E24C1123C4FCC /* PBXContainerItemProxy */; }; - 2573039B133AF8CD1C3087167BA966AF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 55A40B509622C6CB878A95B7D18740E2 /* PBXContainerItemProxy */; - }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; + 2661C4455A3B98F106296FCCC1D7B1F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 5825B399C704E26C1BCB6B61F19FDB71 /* PBXContainerItemProxy */; + }; + 2686620A84378B632A98335FA51A2278 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 7D209FDD21AC8016C90C101B929B5426 /* PBXContainerItemProxy */; + }; + 26892CDA0E8A3E862D89CD1B8CC505F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 30EC7A400C70E10F3722731C54F15542 /* PBXContainerItemProxy */; + }; + 272D59F6FB5CBDFBD154E32B82D9DCBE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = 7D7E343C7C927F27F36C93F45E00971B /* PBXContainerItemProxy */; + }; + 27B99C753AA01B55FA4B2ECDF5175607 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 6F7F04555C3F3B75491B971CAC243E4E /* PBXContainerItemProxy */; + }; + 27F4759EE12E02E87B6E75A63BBA13CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = F47B5413B8735C1D7011155D11D69E4F /* PBXContainerItemProxy */; + }; 2925383A3851E8CB0EB2C4380F4B3D13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A948FF4AC90480FCBFC7BBA8916F351F /* PBXContainerItemProxy */; }; + 2A23B5D4A478FA61F50FACDCF5DD6245 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 3612DC2F5B92A76BED684DFEB53F5156 /* PBXContainerItemProxy */; + }; 2ADC78EE47A1B88A86148BD4DAF07642 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; @@ -23784,11 +24122,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 9D5A278B1D609214380E444D1D5DFFEE /* PBXContainerItemProxy */; }; - 2B7C0F354079E6B151D3E9F3A6347101 /* PBXTargetDependency */ = { + 2BE71C554BD1E77A0E4A9672F6278A73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 80628139D04AD297BCA1171F65E5A904 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 6E305EFA6CA49BC3193707CC134B410C /* PBXContainerItemProxy */; }; 2C3AC2CEA8022D07044F7BA29590CA5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23802,12 +24140,6 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = AD772911BB22AACF6D82C7659AC43148 /* PBXContainerItemProxy */; }; - 2C90E5ABEBF6622090344658E9DC147C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = C04D6EE8BDB5D547263340CFDC3A7FE9 /* PBXContainerItemProxy */; - }; 2D12D63E9EFDBBACEC8A2C6384D85FD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -23820,35 +24152,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */; }; - 2D3BF2B18FAA35F59D609BA7AABD50F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 3DEF14A4844EAA86628388DCC7FC1B29 /* PBXContainerItemProxy */; - }; - 2DD1B987ED68E014077938A9AC8BD3C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 9C1523123F4B2E1D269F447EA30989AB /* PBXContainerItemProxy */; - }; 2DEC0DE01DA6493268B04579B21C8297 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-DoubleConversion"; target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; }; - 2E29C9548EE804B528D6000A2E8E470E /* PBXTargetDependency */ = { + 2EB9B72457A4CC9287633CC0B1D7864F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = D614721636D133154CBE77DCB8E740B7 /* PBXContainerItemProxy */; - }; - 2EA8D1D3F6F6088A5BEEBE28C2675B51 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 19E0E420B080AECE321692641FABC6B0 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 4CE4C00F0CB7FF9472D6B23967581F2A /* PBXContainerItemProxy */; }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23856,36 +24170,48 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 3087F4B96E38A5CEDBA672C3486A9BA4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 09C4F3A8827A5BF56AB6C5E0DA2BAF71 /* PBXContainerItemProxy */; - }; - 30C6635D0C690BB83D4C47192C7CA55D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 1148DCFED659F0F008EB429AB19E146C /* PBXContainerItemProxy */; - }; - 3141F1E9A1D691751F5995878417ADD2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = C14C23E586AF0C0DADFCEDCEB985FBC7 /* PBXContainerItemProxy */; - }; 3152722E87FC29CE2F09059093E805D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-RSocket"; target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; }; + 320675A0BC320406F4A222365B3553A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = 721922D52B0FCC4904CB6A9DC5B0F513 /* PBXContainerItemProxy */; + }; + 329CF45A699037A17BC01FC9E8C506FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 5C716264B10214580C06B36EBC231789 /* PBXContainerItemProxy */; + }; + 330760ABF1FF003750D5C1F387F87E58 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 686BC32D1C6CCC457FE2565F332BABCE /* PBXContainerItemProxy */; + }; + 33142750F2828C0A066D79FCC14B8406 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 5915E8006D75569F464804839856A9C5 /* PBXContainerItemProxy */; + }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; + 34DF935B2296AFACAF0A2493B61A39C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = BE0DA9D5A9956AE2715C11C1AE7AC86F /* PBXContainerItemProxy */; + }; 362889F28F9982FC90A7E35964352495 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; @@ -23904,35 +24230,11 @@ target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; targetProxy = AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */; }; - 3784AC06C04F3864A8D6399AA1FD0019 /* PBXTargetDependency */ = { + 38390BDAEE3FE9DC30AD97E2E88927EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 1055DDCECEF0F5C1FB48B003EBE7D90C /* PBXContainerItemProxy */; - }; - 3810AFA8A6AB96B188CDAFE35349C27B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 66C780598341392528649A06B2C30A8E /* PBXContainerItemProxy */; - }; - 385999D6A28146CFCF5A1E3F5BCD5393 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 7D72217BF6506BC58BB7E80E9B09916B /* PBXContainerItemProxy */; - }; - 385C243945A4966CC19B9613AB56BB0B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = 72321C38B22880024C990C1197740C6D /* PBXContainerItemProxy */; - }; - 38976E1BF8409CF9AAC09A9D530C71B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 347D6AAA9DBA4E6316C693315E777A84 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = B42A7A869D992BA4DB3CF5080446DFBF /* PBXContainerItemProxy */; }; 38C850DC298E7FC761A0A9EEEE745754 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23940,23 +24242,35 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 884D4E9F643132CA763055003CE8B51B /* PBXContainerItemProxy */; }; + 397071BA6514A7CD48CCDDA877FB07F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 61878CFB3F586AE186108990A431EB64 /* PBXContainerItemProxy */; + }; + 39F001A92EE94E235A3B498555D0DD8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 7581ED2D9DC49A86B186710998456FB7 /* PBXContainerItemProxy */; + }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3BDDD746EE57168288F137D665858A3A /* PBXTargetDependency */ = { + 3C2D490B5C0EDC95185C0D781BAB5700 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 9461A07938C27CEB5079BA27ECC8DF88 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 96F661024B66FE3559C7774BB419C99D /* PBXContainerItemProxy */; }; - 3BFDD85891B8CDCE8AC625E76B94D0C0 /* PBXTargetDependency */ = { + 3C7549ED94DFEB8133B352FC7C69A9AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 30E62352F87A53A0479838E4B3B2B534 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = D525D6ACA7B1B78DD462D10E15FE1F5F /* PBXContainerItemProxy */; }; 3C84792B8074AA29FD5BC06A64A9AB0F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23964,6 +24278,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C9A96638BA1FF6B3D2046312346C0E9B /* PBXContainerItemProxy */; }; + 3C8F4FBDD55CA093B158475D9C037317 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = A669E7A301270A2DDAF00B85D781585A /* PBXContainerItemProxy */; + }; 3CDE7CA6B5E8DC488FDB8E4812131AE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; @@ -23982,23 +24302,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B016F73616BD062B510476739F12C437 /* PBXContainerItemProxy */; }; - 3E6E1E9022FB21149CAED9C79F821176 /* PBXTargetDependency */ = { + 3FB867C7ACE403BCB9BE1D69DDE8FF46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 075BDEF35C638FD25B24B2E61018461A /* PBXContainerItemProxy */; - }; - 3F5BE59820AEE70D8428B86A904A4D20 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 6AE56182B0BAA6258AEB3E7C0283E1D5 /* PBXContainerItemProxy */; - }; - 403603484977E284333AF878F6F943A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 80D98167D220E6CE6447260E8A2AEFA5 /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = AA16D97646B953B5DE25C0F786EB4D0B /* PBXContainerItemProxy */; }; 408548483766B59D87684AF72638B1FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24006,11 +24314,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */; }; - 40EDC75728F2BD0591F59A22BC032CAC /* PBXTargetDependency */ = { + 40E82F903B3591E3944E48BB47492D3B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = BD52F6557F29272F7B0CDB1133B2E0D2 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 262124D87F940F49B36C9748D58C48D8 /* PBXContainerItemProxy */; + }; + 41098DF369169B1BE7D66C994839FB03 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 75A14AF211679514F264E7F0DF803B07 /* PBXContainerItemProxy */; }; 41693E96081D863AA597AB8B46CF3F00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24036,11 +24350,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 4361A2DC62F6D666C264E2008594C80E /* PBXTargetDependency */ = { + 42595CA16F59B66578B3C66B255B556A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 7507280D306C10833F001714926E95B8 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 17F8EC1275B4E6633AD6431F19A9E1DD /* PBXContainerItemProxy */; }; 43E169AEDF03426697FA963504C2AB59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24048,23 +24362,17 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 35A10B7FC1F84462218C13545EB7FB88 /* PBXContainerItemProxy */; }; - 446B889723EA91C977DB0F8677AED44C /* PBXTargetDependency */ = { + 456E62FF2F53B174278947CA23D27724 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 631B87AF2D6CFF9F83EFCE06839E439F /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 4CC9310248550CE20442255A925333A5 /* PBXContainerItemProxy */; }; - 45471E62EF0E0D4F27699604ABFBC53F /* PBXTargetDependency */ = { + 45C3D06E0566EC98EC6635E85AD5616C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 450413FBA01E8CD526537C49AB881FF3 /* PBXContainerItemProxy */; - }; - 4571DB32DE285EE664B35665D8E7AE26 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 9E9FD5212C281E4633454FCAA11D8969 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 19F7171BD534372A0EFDBA36CC5BA297 /* PBXContainerItemProxy */; }; 45E6BC946DC4674AE9C022050299B84F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24072,17 +24380,17 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C266DDB269EE618DE8FA720583C9C81B /* PBXContainerItemProxy */; }; - 46757860B4117174C9B2DD6BB3C2864A /* PBXTargetDependency */ = { + 46E0EEB8B76A0842E5A957A7F4828804 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = E2CD70AE7A465B98362B9ADB9A67C298 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 666A5F249A3AA80B1D46125C42872342 /* PBXContainerItemProxy */; }; - 46BC5C7CF9D60F06348BD943CBE66D86 /* PBXTargetDependency */ = { + 47D510C0F7AF24736928849D37BF1816 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = F2F4250DEEBBA02EC2E4F57AB3F67E2F /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 01C8A4087E0DCFE7278E113AD6885B61 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24090,11 +24398,29 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 49A07E951EEDC9E060BB056064890487 /* PBXTargetDependency */ = { + 483DFA135410BE255DDDCF0012247A93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = C20A830A75E8924D6ABAC4BA679017DF /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 6D67EFEBD531F532E3038CAA6D274C44 /* PBXContainerItemProxy */; + }; + 49017C29D99310C025F9A400C964F43B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 221CAE049F4AB86CB031AC422F732424 /* PBXContainerItemProxy */; + }; + 4930CE43E4A8FD633A3FBBEE83D5075B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 6C268D987CA614E5B63919CDA4EA447F /* PBXContainerItemProxy */; + }; + 4990A38856112896F4574A8B84BE6864 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 9A9AF991BD38A26E4991C70E12B3E338 /* PBXContainerItemProxy */; }; 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24108,29 +24434,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */; }; + 49E0EF84E9DA70960BCF7BD27AB6F679 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = BE237984A2200A73DBA16ED3579E8BEE /* PBXContainerItemProxy */; + }; 49FF0E01B2E6C594A989F60389EABF30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = CBBD408BB7D70EE08646E3F8BD770069 /* PBXContainerItemProxy */; }; - 4A3889F6F065C0A9072DBAADB7EAB1F3 /* PBXTargetDependency */ = { + 4AF7FAE8B9CCA84773CA059D010560C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 64B8FE1E6A9E2311C7D102CDB6BD4489 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = AC9C0601DAAAEE96A7829DE927A63A35 /* PBXContainerItemProxy */; }; - 4A79510EB0E2B5F9CC2A76EA938038FD /* PBXTargetDependency */ = { + 4B0FF2D5A604BF1550DE12DBF041D850 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = C9FE640C91CF104AE8C75974E1D0F465 /* PBXContainerItemProxy */; - }; - 4B7B3BC7C81E637C8F881BB0924D5281 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = FEFA81BDAF957029AA3AC4E53AEC606C /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = C1D3AEE4D2FEA05EBDCE3A43E5C08707 /* PBXContainerItemProxy */; }; 4B92E472400E59291AA9A2C4B7798BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24138,11 +24464,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = C6FB783E0F0B781F24F3E63FACA0E42A /* PBXContainerItemProxy */; }; - 4B99CA567B05644EA420D300DF92717A /* PBXTargetDependency */ = { + 4CE61830D6DD438881DF56A3BC095D90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 6D0864F41F867DEB5ECF23827B8098F1 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 6E717D4CFDB10347250AECA14017ACD3 /* PBXContainerItemProxy */; }; 4CF06059EAB58EC36AFC1EB383725395 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24150,18 +24476,24 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */; }; - 4D0FB86ECCB1A71848200A3EC03793A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = EE649AE455D207F2A20EADD20FE41444 /* PBXContainerItemProxy */; - }; 4D308DF5C2ABD32B3AA5808322556B37 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = E2A7D57EF8EAB020233EDC68A9ECF68D /* PBXContainerItemProxy */; }; + 4DFF612BF024BC7E5EDE7088A4FCACFE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 49CECD17031457623F27667B19749B43 /* PBXContainerItemProxy */; + }; + 4E3BF7DADEA7AC81D27643FCCE2B8613 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = C6C64E1E52A2544CA03B7973DFC5F635 /* PBXContainerItemProxy */; + }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -24174,23 +24506,11 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 1202CD0D4E7F78CCFBB9BAF05625B5D2 /* PBXContainerItemProxy */; }; - 4ED07BEE65610995F270AB9F8914B4B2 /* PBXTargetDependency */ = { + 4F0FA856B08570E445FFD430E94EECB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = C9FA794791DD269922D94CFC2AC0216F /* PBXContainerItemProxy */; - }; - 4F4D4522254898115EAEF57DB865335A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 2452928914F8A3B32931D14A727F9EA9 /* PBXContainerItemProxy */; - }; - 4F7127600796F293E5075C1557F5F76A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 5AAE4BC71664AB267ADEE3E95D590897 /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 825E6B70DF984A80754D23A4950D7438 /* PBXContainerItemProxy */; }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24204,11 +24524,35 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 0DBDC3964B7166E1CC00C4929706C8F0 /* PBXContainerItemProxy */; }; - 51D39D9B402638BBB2EF364BB6D3F3FC /* PBXTargetDependency */ = { + 5069B82DB07E8B7E1270D95B291C92CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 959E7E161182EAC527ED41C4224C461C /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 012B6E31000B9C7B50203C445166E8D0 /* PBXContainerItemProxy */; + }; + 50BF44DAB73C9ACF2501FE226A8EEC69 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 1CADAE3BD5BDEE1695D2D3E4635CC7E0 /* PBXContainerItemProxy */; + }; + 51405A95713D4690E84685C10829267F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = DC53500068069FA76A13081AFB08E2CF /* PBXContainerItemProxy */; + }; + 518792C2E63BB97915D6B4DB7403B1C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 2E3FCD4E164C20DF6149425A23C418C9 /* PBXContainerItemProxy */; + }; + 519068D8A02FB0DAA9F01CFC2125A274 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = B765F6580593CA66972B16001E901AEE /* PBXContainerItemProxy */; }; 524568FE4D02E31C1BD2A7E91C5DB04B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24216,17 +24560,29 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 14BB3DAC17135FD28DBB5B1361FD079A /* PBXContainerItemProxy */; }; + 525D54EAB1308E4F2B0DCB638C5E6098 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = F5AB0832E10BD6B650CDAA9D6700A955 /* PBXContainerItemProxy */; + }; 529A28997E74D7B9F72AEE72F30482FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 531AEE2AD8DFFD598D97E440C81B6FA9 /* PBXContainerItemProxy */; }; - 538AB754A208E4D95348C1ACD70AB678 /* PBXTargetDependency */ = { + 52AE874F5F477E2B2CB0AB3B794D7A69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 8CD79A2A80337FB72AE57AA8D9785D23 /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 6E8DE6BDF28E1F509FAEFEBD2EF06C79 /* PBXContainerItemProxy */; + }; + 52FC53E3A66C2EADAF62CDE9438EA18B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 5FF7C26F074B004B268EDBE2CE7D7D31 /* PBXContainerItemProxy */; }; 53E8383D1F4AA7480989633C67AD27FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24234,23 +24590,23 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 01C9B473BC5FF516A57C61FAAAD8049F /* PBXContainerItemProxy */; }; - 5424622C46A885C018872385705A2E9D /* PBXTargetDependency */ = { + 54F044FCE552049B561517309D00B729 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 49827D8E6C9C3777D3311051F5025546 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = E8D57349E6188E7731DBA51BCC24F3B0 /* PBXContainerItemProxy */; }; - 54F04BF04A0451D1B2B2E1CBA71DFC43 /* PBXTargetDependency */ = { + 5571DE7ABC350C535A922F4BFA7A9EFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = CB03656E5F5E47071957ECB1CFB5E0CB /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = FB6EA7F53397D6BAA834F970A1CFE9BF /* PBXContainerItemProxy */; }; - 56EAB202E21AAF08646D2346C9C563BF /* PBXTargetDependency */ = { + 55EFFEB45B2919A33FBEF4D4EDD60B21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 82A58AC27DB05F10516AA23D87CD3B42 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = F0270D4E6F206819F8BB666203201160 /* PBXContainerItemProxy */; }; 57208D0D75A784D7D6459DDE64924E2A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24264,6 +24620,18 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = 0ABA41EE7B3250B41F236C99879E22DF /* PBXContainerItemProxy */; }; + 57A124DB7CAE1B5F54892658C0742183 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = E548EF4E15DC9B249703DF7C569CE90B /* PBXContainerItemProxy */; + }; + 58D1B0168039D97F1EB2BC4727712339 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 137C2EA56581466C052C35663441B214 /* PBXContainerItemProxy */; + }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMImageLoaderInterface; @@ -24276,17 +24644,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5B4C03F92730AD6533D08545DDDC08C3 /* PBXTargetDependency */ = { + 5BB2657AF85CE68C7A23FF14EFB2A99A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = A3AB2A0EE3F1761ECBB4FF800C6CA2E9 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 0CE11FC0203744D7E107AE16B6A8C7CC /* PBXContainerItemProxy */; }; - 5C07F389304D17EAC0A973FCEC52DD1C /* PBXTargetDependency */ = { + 5BF7C0803307D305610C95274B48149A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 42EFDCD22937EE937D7C6632548D1388 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = FD34C96679BF0F4BC88604C97BC1A5A3 /* PBXContainerItemProxy */; }; 5E5771F5CD476657DAB39DF1A27D5193 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24294,24 +24662,24 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = D5A54583BF0127DD21B8A44510CBB36D /* PBXContainerItemProxy */; }; + 5F728FE463B42A417904E99B4B6BD3DE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 8A6FF4D0F60D1A1737F944D831B6F746 /* PBXContainerItemProxy */; + }; + 5F7D1D33AF06B0AB57D9A82921413A97 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 8905D9550652F9ACC7DC0827EE1C2607 /* PBXContainerItemProxy */; + }; 5FD0C4F9D97C88847DCFF62E51086938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B3A01A4439D0D10A063FC8A085DBCE8F /* PBXContainerItemProxy */; }; - 5FF977D8A40508FEC741793DCBA909A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 2325D3BAC15C0D347B8EBD609D599003 /* PBXContainerItemProxy */; - }; - 5FFAF4D063C851C8B41A0C7DD6B0A4F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 48BD0D6A30D6827EC1D9FB4C4D0C524A /* PBXContainerItemProxy */; - }; 60190184A91F67EC0AB5EF8302914EA7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; @@ -24324,29 +24692,35 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 3002EB76A6ED5F1FB34B5AB5DC3C2068 /* PBXContainerItemProxy */; }; + 6084CF4BD4350CD45F1E2F3D88CC1485 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 83D2618D2C50A897754D642E84FF5923 /* PBXContainerItemProxy */; + }; + 61358BB1942559685B9DE86E6B495E4C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = EF935A0094EFA2395E9453F7D9C75DF4 /* PBXContainerItemProxy */; + }; + 6230B0983C4C18DDB67BEA949F8311B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = FB4B9BDA30D2FCA6AC90A933C6936801 /* PBXContainerItemProxy */; + }; 62D1D88A1695760F638E66025F47B496 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = CAAFA5AEF75D91014E0A847946B5CD1B /* PBXContainerItemProxy */; }; - 63A406492B95BC1154160D4EAA0BEF7F /* PBXTargetDependency */ = { + 62FD7BCCFF8C5117F53472A87638369E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 748D7DB37563A19AD264C4C080B45A4B /* PBXContainerItemProxy */; - }; - 63AFC29043ED2ED6002AD93C5C6B8A25 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 548C39B9B1056D07EF30B414335EC9FC /* PBXContainerItemProxy */; - }; - 63C45C7460DFE7F68F7182033791B497 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 8A63BF9F45CB7C2F21B947C2AA9FA350 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = A897D0E88033885E5D7E049FBA306557 /* PBXContainerItemProxy */; }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24360,17 +24734,17 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 55B00EF6EA1E3BAC13075885EAE12B7B /* PBXContainerItemProxy */; }; - 652A72A11EA1C2ADE9E861BA33E470F4 /* PBXTargetDependency */ = { + 649F18470A7C878AB0BDFA575A005950 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 98E57BE9EA167ED0FA9EABA43624AB80 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = F31739D22AB136C7DEEBCAFFFCE1CF90 /* PBXContainerItemProxy */; }; - 656BC14B221CF2C122EAED835978E6A6 /* PBXTargetDependency */ = { + 64B6717E3167311CB462AD731F264DBE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 8E3C0614D370D7F394E44134278E56A8 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 3507BD48B392827B556CFC338ED9DE2C /* PBXContainerItemProxy */; }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24378,30 +24752,18 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; + 661CAD3F25DC2CA9EFD14C684924E1EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = D6092560EDE137614C92BED34B9AE2FF /* PBXContainerItemProxy */; + }; 6623FDBE6380766AFECCE4ED0A17EF8A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */; }; - 66C82FC5ECDCF70878D8ECDD84B7442A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 934036B476AAA6A4DCA1E0D4F67897D6 /* PBXContainerItemProxy */; - }; - 6768A0F40DF081F473C1CF7A5D671EB0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 4204021EDABEC78BAF0DB82314B755DF /* PBXContainerItemProxy */; - }; - 686A5F5E6A4FBD351429B9F005C98F67 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 11A2A259D6CEB1CB67F028B5A756E795 /* PBXContainerItemProxy */; - }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -24414,47 +24776,41 @@ target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; + 6A31CDDFB5860F565319A6AFCEB4EBDE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 6736F72960F6002FF4A3CF65915D000E /* PBXContainerItemProxy */; + }; 6A6C1E99508C762B0559F6CE02D79C21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CBD51A45D388152438D56522530F9232 /* PBXContainerItemProxy */; }; - 6A80B9A5A786A41A0B1ABC62E521BEA5 /* PBXTargetDependency */ = { + 6B3C0C3F59B0AE65CF177BE1F9AF9C52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = C7336029FC65CE439FD369C7E6F4B1CD /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 47C15B465F430F5AA1F87F556D8BC4F0 /* PBXContainerItemProxy */; }; - 6B29B73625A4074C15A0408C418EC40D /* PBXTargetDependency */ = { + 6CCCBB8CD21984D6F2864E83416C1AC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = FDB4CC5D5AEB96DE88E1322E135629B8 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 31B6D878932415CEEFE8C8A835FF17BE /* PBXContainerItemProxy */; }; - 6DAB3A0B8878757DC3D19A1DB5A0BC90 /* PBXTargetDependency */ = { + 6DD98A9F9A6FBCE28A8074E5CBBA6E38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 48099D488F54E1318DEC2EAB02E15A47 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 18A8A853FDBA952676258AF9A219E053 /* PBXContainerItemProxy */; }; - 6E4BB48EE4A222C0037097BC69C4DF6D /* PBXTargetDependency */ = { + 6E92170EDB90C122F4EB8D032135E3B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = F2BF1D08AD7B7FCC772F2A70DE138319 /* PBXContainerItemProxy */; - }; - 6EDC9E2BDA9A56B32867477EE66FF858 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 18B67F11FF5697185DEBC06BB0C4CA9E /* PBXContainerItemProxy */; - }; - 6EDD580A2662A31B687B667AD10C3851 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = AEB9655D38613FF8562019AF175C8D94 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 547A97FCEF3B5F496F346B56B569B1FC /* PBXContainerItemProxy */; }; 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24462,12 +24818,30 @@ target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; targetProxy = E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */; }; + 6F5A4A3131069A973E8438D53B18B0A2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 705FABF8970AA0635666C3BFDA63D7CB /* PBXContainerItemProxy */; + }; 7074AB64938AFE46C3B792B65FC0AE8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */; }; + 71886C7581D00EAEE8ECD4832F5A5219 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = BB161EB6C6BB407192EB7CD70EAA2AF3 /* PBXContainerItemProxy */; + }; + 71AE9F32C9F242FA18914121899A0934 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 3CAD605631D93011CB127DF26BB5855F /* PBXContainerItemProxy */; + }; 7219E71D87295064D1DD48DB1B8580A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -24480,47 +24854,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; - 72BA256BED6B15341A10F68CBF7AB664 /* PBXTargetDependency */ = { + 72F5C1350AEEA8284BC93C2DDDB0B589 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 616B97A6EAD4A48B2D36AADAF1A04AA6 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 3D08869D2D5C89ED73ACFB6FD5621227 /* PBXContainerItemProxy */; }; - 72D4B241BE63A374C584A4CDE4604B52 /* PBXTargetDependency */ = { + 732A0A42B0730E2C60B9956F9ABA1599 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 045BB9F8C246EA95DF5597411D7A62EA /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 685E92EDBC430330C804A55B8F8878B3 /* PBXContainerItemProxy */; }; - 72D9203EE404040690A7E1B5EA9BC1D0 /* PBXTargetDependency */ = { + 735109AEA79348BF23E13D0C78E70A17 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = A7EC3FA2EAB338AFB4C2D3488304D925 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = C9CD3B03306F8775ACFF54CBE838C68E /* PBXContainerItemProxy */; }; - 730E5DDE57CAAE65D7133A3EBC17E759 /* PBXTargetDependency */ = { + 73EBF48372D9432E6F5F441DE385F3C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = D8896153C90376FD841F9F6226640769 /* PBXContainerItemProxy */; - }; - 732E5D5BB8E3A97E195152F1EB70B026 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 6C6C21381C0030C061547E5493C464AC /* PBXContainerItemProxy */; - }; - 7349350F8C79EE9D2764BDE9568859EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = EB9A58B4D2988FEA4D86FDE9BABCB937 /* PBXContainerItemProxy */; - }; - 73BB7067E387CCE43ABEE8D8EFA5C9CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 2E4A6100591F18D2FA3DFCB05EB15E0D /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 2CE32DBC2709206E2054AE28B010E175 /* PBXContainerItemProxy */; }; 741686727E05FB8600BB0643B2B0AFED /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24528,11 +24884,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 1F6D1D516291934964CB96DF667AC71C /* PBXContainerItemProxy */; }; - 74D9E8FE10CB01B2C25C01B0372A0C0E /* PBXTargetDependency */ = { + 741BFC8D27BFB8D6F0F6EC626832BF47 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = B50760BF6C822D4858F346BED1C530B6 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = D677AFC4CC2D97D3DDE846F41F92E216 /* PBXContainerItemProxy */; }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24540,35 +24896,23 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 75AA3C3A48EFC5C1FCF22929E2D95B67 /* PBXTargetDependency */ = { + 768A3F864614D7AD4F13E710C5BB6AAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 588BD95DBD977F2020E42BD9C1313D7D /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = F7E84F06FCDF6D783EAB427DD266F1C4 /* PBXContainerItemProxy */; }; - 76525AA27205D332AD2663633F1AFDB0 /* PBXTargetDependency */ = { + 7926087FCBB060DE439A27DE8132AC2C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = C3EBEFCD96AED8CAB041BC6A9010D8B7 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 894B471BA7FD2341B3F517268F61BA1F /* PBXContainerItemProxy */; }; - 77ACAF709CBFB62C0DCC0522CF181CB1 /* PBXTargetDependency */ = { + 79FF7872A3B23C9047E5B5BE547BCB95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = E7BF3B994EB1EB816A02193931536817 /* PBXContainerItemProxy */; - }; - 78528EEF5091E4CD72A97BF4335FD6DE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 01FFA6425ADF76C54A7EA973539292D2 /* PBXContainerItemProxy */; - }; - 79702EC41CDA2E035C79844A42E9BD5E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 255647DCDA46BF5FA85647D2AE07B813 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = E51C66421462312696F2D01BD169C9E3 /* PBXContainerItemProxy */; }; 7A115CFBA518CCFA1088361489F7D53D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24588,53 +24932,29 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7C335D0EF85A5BD2A0618F8B6520CE2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = A488F9846CBA54BB07FB12B29E552F2A /* PBXContainerItemProxy */; - }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */; }; - 7D28A8499BFE9C42B074EEAF942A7A5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = B39F8CFE6AEFD0B40C4EE481A0F5AE56 /* PBXContainerItemProxy */; - }; - 7D800134CD099D6AFCEA3BC7F2796A98 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = C33D32857511A8B4E852A615B270DB75 /* PBXContainerItemProxy */; - }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 7DEAA5EAF15679C5F2EE6E802C2ADA80 /* PBXTargetDependency */ = { + 7F5A6007F31AF81CFD73CA5035A0BBFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = E81B6CE6732C69531355630EB618ECF6 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 0DEF6E66DFC16CDC50C902C561CA5EA1 /* PBXContainerItemProxy */; }; - 7F40F2196A0698670AD4172D572DF89E /* PBXTargetDependency */ = { + 7F6B42B46257B4D23403DB945B90CC60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = A253B0B4E3EA6E0E65AF80B814CA8C5B /* PBXContainerItemProxy */; - }; - 7FA446B43267A36369EB3E9543AACF53 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = B8E07F7CAFE7517B43D7E90D97E4C14F /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 9564EEBF40E15A31A8E7CC8D8C0E37D2 /* PBXContainerItemProxy */; }; 8006C1B350C45E4A3E439F4B4C5D9C26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24654,11 +24974,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 81F2407EE65DAFAD746CFA5F38B8F345 /* PBXTargetDependency */ = { + 819E8683E2F3D43FDEA889B448A21031 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = FE085C3B3F06A79867228ECFD647A377 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = D8D8C376BD01ACE11AF31C74BEFCF6C5 /* PBXContainerItemProxy */; + }; + 819F73185EEB6671557857BC0E1C20FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = D7A33C551BF0BFCEE920C8B2119BF542 /* PBXContainerItemProxy */; + }; + 81B8ED507A06D43304E2C6E070880466 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = A352A2546D195F5EAB5CFEAF573EE5A5 /* PBXContainerItemProxy */; }; 82877F99355D080CE20A36AE96108AFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24672,17 +25004,47 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; + 82ECBA7749774BDDB0C838B907DEE96B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 4AC169329774617BA6B8F3F614E8E2CE /* PBXContainerItemProxy */; + }; + 833A092EE2B9A35ABB9B8A9915F1643A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 0457AC86F2F2F169E373C29F0CB64E88 /* PBXContainerItemProxy */; + }; + 83B8950F268925F9D242A9E4D927FE11 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = C37E10135CA6C05B846F3506C7F16D61 /* PBXContainerItemProxy */; + }; + 842319D04AFA092803B83FAE65603E5A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = FF88C51032D281BDEA5ACBD2E9CB8F18 /* PBXContainerItemProxy */; + }; + 847D01C123FB011E25BD45C42B73FEFF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 35919A43D7796D975ADA32B79DAB5B88 /* PBXContainerItemProxy */; + }; 8484740BEE2FEF19B15C8D2BF292645F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 6C2F4A0DAC27B8CC1550B7060BBD3B66 /* PBXContainerItemProxy */; }; - 84BE1CBBF25CA70BEC18FA6BA85B30E1 /* PBXTargetDependency */ = { + 85A04A9630C52FED4292624CFE63C347 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = CAC354F481A7DACB27DA3E491CEA9611 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 1B81F8C0565FADEB45A711ED943895AD /* PBXContainerItemProxy */; }; 864EE57537F47B11F5790BA3515F0120 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24690,23 +25052,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 734EDC79ECD7EB645E49FCFEECA93782 /* PBXContainerItemProxy */; }; - 866316138634FB978F79DE6E71B9F4D0 /* PBXTargetDependency */ = { + 86CB57084F4471E868260DE32116F916 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 7238A50621C3AF093C1110C364BB5C77 /* PBXContainerItemProxy */; - }; - 86FD0F727EDC4EEB237349DB15528362 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 47FC62F3560B787BCA7A31FB7237745B /* PBXContainerItemProxy */; - }; - 875A8E4DF49B3CD78685B96172FBA7E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = C033DD1B5F4B16A9A96069B6144CDE96 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = C924141874094D028FB642F223B799DA /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24720,23 +25070,23 @@ target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = 55D53B02C446F60245427454DCA9546F /* PBXContainerItemProxy */; }; - 892F3FF9429245C6863E0092BE2EAE5B /* PBXTargetDependency */ = { + 88CC1562464E37A572260F3F5B854209 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 9947DFC2989D2E7E76F753F50BA5186C /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 7E740B3EA4C3D227C7CDD81A256D4856 /* PBXContainerItemProxy */; }; - 896402EB44ADF3344EFDEC7F315DFC2A /* PBXTargetDependency */ = { + 88CC29D6D45039A1C6AC563762D69393 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 99895A9632B61357C50AEECCA4561303 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = B9EEA885BAF142FCA381D83672647BF6 /* PBXContainerItemProxy */; }; - 89812DBFEFFD88A149B085764B76D262 /* PBXTargetDependency */ = { + 89AB65282C82B231A17065E2A755BC86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = C95055B3936F1D9BEA0BB8E7D30288E0 /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 051F5DCCB690390EAB9C1207EB2428F1 /* PBXContainerItemProxy */; }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24744,41 +25094,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; - 8BDFF47F68DA977415488F39AE81ECE0 /* PBXTargetDependency */ = { + 8BE67C5BAF4C62371FDF85C761394674 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 4CD227D31426463B5FD883F36389CB42 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = F4C3D2F5F697D1FF431D6CCD1DC2E2C4 /* PBXContainerItemProxy */; }; - 8C36295EED1F25DC1BFDD933C7F1D629 /* PBXTargetDependency */ = { + 8F09117FAF8B091EC2568F33870A306C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 60A62D9570D4EFA0BA608A7C022ACA05 /* PBXContainerItemProxy */; - }; - 8CD691A2A52C7F841565A7906507A15E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 3CEF5087A2D3E75491CFFC434701FF1D /* PBXContainerItemProxy */; - }; - 8DCF1F98B10BFD08DE1DD9ABA97FE3E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 859652560860CC726099971D9DBEB5B8 /* PBXContainerItemProxy */; - }; - 8EC80BAF1C9BE9167FB1338CA3D10C40 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 4DF27DE68F23622E80FF9986C23BD14A /* PBXContainerItemProxy */; - }; - 8EF90D278EA008357096EB4FD73F0320 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 56B0572E090AFE2E891D0901AD6858FC /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 3B9FBEE4B2B6D2D98D3E9DEA0E5910C3 /* PBXContainerItemProxy */; }; 9013A0482FB9B15D0A32499D01A68C65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24786,29 +25112,41 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 9F5139B580DB48CBB546E5DA6213CF53 /* PBXContainerItemProxy */; }; + 905275FA67870B782710F160FB763D14 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = BCBB0BB67512B1EE5D9FC19E1D158165 /* PBXContainerItemProxy */; + }; 92A1446A84FF6C166A2D47791865DC09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 6B6C9C98FB7F5650E3334BCFFACE0D76 /* PBXContainerItemProxy */; }; + 92A431F0B6EF8625A7638352232C502D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = CB03CD17FDCABA719768C607406BEB2F /* PBXContainerItemProxy */; + }; 92B657FA7537B193C576AA91FEE18747 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = B56678A4474A9DE17802BB174F7A946D /* PBXContainerItemProxy */; }; - 931AD65DA4B66B1540FD1BB03065C14D /* PBXTargetDependency */ = { + 9449EF77CC6FB39E0BE307FF2DD1FB86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 4AEADBCB37DD4BE17E3E35E924CEFA3E /* PBXContainerItemProxy */; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = AC6D2E0D2044713E0891D41AF811ACCA /* PBXContainerItemProxy */; }; - 9376E71A6ABCB9D277A9B708BFD18B34 /* PBXTargetDependency */ = { + 95013C8EF7D7F54D51DFD2EBA324E6BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = DBE61D88AE671E8815214B116F57E6EF /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 7E5CF4EB9B0B0447DA4E25A106293A73 /* PBXContainerItemProxy */; }; 9552E6513B331715442754BEE5068F0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24822,11 +25160,11 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */; }; - 95E28D2CDFF9811632A41878041E4162 /* PBXTargetDependency */ = { + 967464678DFCEC1C59CC4180164576A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = A6161B2ABBA63D913268BF2780143A95 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 84082BE82B89E7C124EA0026CADD5A98 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24834,36 +25172,24 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 97A0F44CF7556AF22581D11FF487B6C3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = CE6BDBC6FB2F46117631B453644B3D91 /* PBXContainerItemProxy */; - }; 987D3E640745DCE5518F2C282606AB1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A21650743E2C37A78D811B8920A0B860 /* PBXContainerItemProxy */; }; - 98804A53EB6896DAC7CAC0712F6377CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 36A667FA3CE9CB3B00EBF7C2909E8A94 /* PBXContainerItemProxy */; - }; - 992B435BECDC9182C00D33E256CDF04C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = F4DC8CC6F0D649433FFF38A495BCC6F4 /* PBXContainerItemProxy */; - }; 9944716ED82209B066C56C02B90FA94B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */; }; + 9975E8EB69D0E3D6775539B2FC3E0AB7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 8302F21982A3EFCDC6FD0714DAE85EEB /* PBXContainerItemProxy */; + }; 99AB4B73588249614F65174F1425C73F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -24876,53 +25202,41 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 91EE084DD583BBFC5B94D7F82B78A6A8 /* PBXContainerItemProxy */; }; - 9A5A53206C0E01115ECE82379BDE1C37 /* PBXTargetDependency */ = { + 9AF3A29484D4DB909EB883E2CCFC55E8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 682D55C33CE77D1D22FE2E939A062C2B /* PBXContainerItemProxy */; + }; + 9C78D37FE6E872A02DA34BED2DD298E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = C06F3735F551BCC5AB2B6C61FC941617 /* PBXContainerItemProxy */; + }; + 9D35D0DD0AB8F08BA4102FEB7890D70F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 245FAA2D4288BB2D9D7C8C290A2E4173 /* PBXContainerItemProxy */; + }; + 9E0812DD65227D77ABBB5CE3B5558D66 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = DFC509BBFDD853A8D299A1455023C72B /* PBXContainerItemProxy */; + }; + A0C32F1F71671CA390653E17A539E067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BugsnagReactNative; target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 7874C0256A752A615882184EB9C8F75F /* PBXContainerItemProxy */; + targetProxy = B2F273D9B85840547D0C458F7741B6B6 /* PBXContainerItemProxy */; }; - 9A93CB23863779A1A92EC9061A451AD8 /* PBXTargetDependency */ = { + A3E2F29848DB6D0404FDB7E548F6BD6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = AF2340914EB7C63D626A23319D326F86 /* PBXContainerItemProxy */; - }; - 9DCFDA887EDE0D5FDD2A4D049FDF5733 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 9A0FF3CE0359BC059D1CBB9669AD7751 /* PBXContainerItemProxy */; - }; - 9F5952970767C16283728E8837F22EDF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 80AF874E16F9906580FBC01C3C903730 /* PBXContainerItemProxy */; - }; - 9F884962478B3B91EAC92F66A9402CFB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = DF9C8A3667CAC52B56A1BFFC2B88ADAF /* PBXContainerItemProxy */; - }; - A0046A4D64F714D8AE1DA41297EC76D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 9DC2DD71210441738528CA3CE8ABCEB4 /* PBXContainerItemProxy */; - }; - A0B7D0D6AC6C886471EC20AFD77C01B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 695B12575543EAE87240731C8F1836CC /* PBXContainerItemProxy */; - }; - A0D5F68242B0197830DD591E5C9C85EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = DF0EE647BBF3364114B255E46E8374DB /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 6A352984A742DA189FB8046B104E649F /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24948,12 +25262,6 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A5FB88FDBA1C7A063888DA0578A52AB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = A90DDA6C7C83CD307012B1D59B0E693A /* PBXContainerItemProxy */; - }; A5FD8CAF96DE3B315C846C82927DBB68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -24972,23 +25280,23 @@ target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = 1842322FCC293F8D40D3185CF322FF92 /* PBXContainerItemProxy */; }; - A7F8A2626C8165D30BE5E372AB74E343 /* PBXTargetDependency */ = { + A8EC3A54AC05F8B42C17B35EE147BF92 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = FB9B37C957C03C39DFF9BFB0F54280F4 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = AB127B7AC6926A555A6A6FC702B198D8 /* PBXContainerItemProxy */; }; - A96465FC22A2D1C021F23107101C5800 /* PBXTargetDependency */ = { + A918A0E49B5A4B7C3F696309AEEF970B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 579558DC66F7B44A40FF7D64907D3401 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = A70634994F83F832F25CF3F2767EA577 /* PBXContainerItemProxy */; }; - A9820988FFD3CE915B47EA338B57F500 /* PBXTargetDependency */ = { + A9A60F4545DA9243E50AFE52F161870D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = D2E55B6BDAF81BDCC2A59A9ABDC26C17 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = D87770F20C781AA9DA01FBD8E4736763 /* PBXContainerItemProxy */; }; AA3AF74C71F85490722FC8CF0F9DA99E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24996,6 +25304,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 60A0EA9E2BD9CEC64E95082A2A9E3B65 /* PBXContainerItemProxy */; }; + AA67CD6F8F920B7C25CE65C3FC3FE8DD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 7591D4886E50377DD63D58E2B727CAD7 /* PBXContainerItemProxy */; + }; AA9052A974DA4ECF27CC38A7633849E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; @@ -25014,35 +25328,23 @@ target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = C8CA4B534CE37351B06EDF9C3744C014 /* PBXContainerItemProxy */; }; - ABCF6490B1E2E5341E263B40D9EC13C7 /* PBXTargetDependency */ = { + AC28828332ABCB82180B888B79776D8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 3234AAB3E8D304565F079DAC37081122 /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = 5F16023EAC1F1EB07B1F66863C1A8EF2 /* PBXContainerItemProxy */; }; - AC2217C8AC060F8FC0FE4ED684DFF2AF /* PBXTargetDependency */ = { + ADB3480B3F60DF128E71AC6C6AEAB74A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 19D0599A49E7E0F0B70546A7473255AE /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 8135C638E8BA5FD09534BEE55259A5BD /* PBXContainerItemProxy */; }; - ACF9A477F195548F0DF335891ED8236C /* PBXTargetDependency */ = { + ADB4596B6D25EF1FD02E5585C4F45394 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = DF677F765D6C60D3DE6B97DA735E120D /* PBXContainerItemProxy */; - }; - AD14AC328126135E44A1FD61B72B1EB7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 0EB93DACED31549362613A8548F77A77 /* PBXContainerItemProxy */; - }; - AD2FF0A25D9BCEF2D44D952B98BA20CA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = F4D48F51991C68B64DDE7029DC81A05F /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 81A1D83097B7AE95C8A5857EC5E10AE7 /* PBXContainerItemProxy */; }; AE2135E39D7AC4E181788F79286CC4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25050,11 +25352,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - B012389B667AF76A50E224D770721F20 /* PBXTargetDependency */ = { + AE79F97CF85223D0A2435F1F6CBA32AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 1843EA0A667352D107DE9FF84EAFC98B /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = E33F96D95B2EE0D5217037F7BD3115A5 /* PBXContainerItemProxy */; + }; + AF1E3E519BE45B20D12E62083372C18E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = B182109061561F8260E028E35AE84834 /* PBXContainerItemProxy */; }; B019EB5AD49776AF1318C9F7D52D6018 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25062,17 +25370,41 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 15369A0EF6EA635BE4072AAC14FB2D68 /* PBXContainerItemProxy */; }; - B3081FD6131DF5B107CCFA78F3EB89AB /* PBXTargetDependency */ = { + B0D4B3A3ADD03810DF451533B6EE3FCA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 2E843DBE58216FB157B040F505DFAA4A /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = D0CD9F95D7AF114C7FA72B1CD427B3BF /* PBXContainerItemProxy */; }; - B3A493432AB59A83458B27A197E095AE /* PBXTargetDependency */ = { + B1B77E132A721D4D52688B79C2E05FB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 70AF2B7C4A4C383D405EC28191B9C06F /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = 3DD3903DB817956DFC2FC8339F36E8D7 /* PBXContainerItemProxy */; + }; + B1E7A1FD1500EDB81D6846514D73140D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = F8979DAB3B05DADF40B66DB3410CA732 /* PBXContainerItemProxy */; + }; + B263DFBD8D4ECDB2B189B5296F204548 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 217A3152041B91AC2C69C5E57D6F9C47 /* PBXContainerItemProxy */; + }; + B2FA949FC020CB4B2CE8219765C76610 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 8CCBAA9D14AB79F06954DD34A2731FCD /* PBXContainerItemProxy */; + }; + B4F19A4298A8F6AEAFC0726C15887C9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = FC77D8C041630A4415313362FCF92C27 /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25080,23 +25412,41 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */; }; + B52C55B27C4E6D716F2CC9F5972C5EBB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = B82293B9E6A3296AA27328595327F9B8 /* PBXContainerItemProxy */; + }; B53AC58BFA8F3376DEBEE3444D8F3770 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = AE7111F2927DD7B05F869FBCAFD506C0 /* PBXContainerItemProxy */; }; + B5792CFAB46B7EB277C756AAE448FE6F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = F0866E4673899AF51D540EF97B44B4D1 /* PBXContainerItemProxy */; + }; B58CF1FEA4024B58557DC96FA1284F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; targetProxy = 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */; }; - B6ED106010C1A82F5D154EDAD03D1DED /* PBXTargetDependency */ = { + B620FC5461BFA6FA8685FE1527A8AC87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = B09959DF38D2937CDD2C49B95ABF8D0C /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 923376C74AF4DFE8BA454FE5909DD20C /* PBXContainerItemProxy */; + }; + B71A9C867136ED65344E13874C7838A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = F4034DDE7024E1C58C11E10ADB7724EA /* PBXContainerItemProxy */; }; B7CA987A1545E9E4D990C621C4B0D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25110,53 +25460,47 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; + B8E3E0021E497E9F7033E4C78DA6D006 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 19FFA4D76F413735B1A492707578C908 /* PBXContainerItemProxy */; + }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; - B9B5E3B128EF130D4EE05C42459DC2BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 2A3C26B926698B2FA3E2748F2504AD42 /* PBXContainerItemProxy */; - }; - BA07A0A3170045C5AE3D9D80DBDEEAA2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = A3BDAF38FC335B1A73DC6CE04E8E944D /* PBXContainerItemProxy */; - }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; - BA48FF007BAE5855B1D1292A7E04F450 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 3C880EFFA5C06B49DDC759D4FFCFC3B0 /* PBXContainerItemProxy */; - }; BABF0E4239ACD0E5B2ED1C561C7F1F0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 34DE7C292D92E3CB1F5D90FC054FCBA3 /* PBXContainerItemProxy */; }; + BAC79B8607A771D50691F800F25C223B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 4F32EDCE5B3A12D06CE0D50B6AF3545F /* PBXContainerItemProxy */; + }; BB584E8B3525C3D5CBB4CF38C00E5689 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F40F967DB5AFDF925A6D54E4FB17CA0A /* PBXContainerItemProxy */; }; - BB71F0D5783F3D94716A0EC98304DFAA /* PBXTargetDependency */ = { + BB81E4E4CE787266F80353CE3317DD96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 8A85832EE1A6877F579F093A9D3DB93C /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = ED466F782FCAD6F97E9AEE113C58905E /* PBXContainerItemProxy */; }; BB8DA3F066408CD75CA01FCAF89A2BFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25164,17 +25508,29 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 2F33AF4C1C0B51002BC93979F647366E /* PBXContainerItemProxy */; }; - BCBCF257EE7E5F7BB86A669161828C1F /* PBXTargetDependency */ = { + BBA8FD06D1D363D8117CBDEDC0FFC0EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 79CE470BAE9ACBA179FB8EAD07E849B8 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 548DFBC4940FA536EDADD9274D48F26C /* PBXContainerItemProxy */; }; - BDF4C67EE23B3F60A2D88990492A8E50 /* PBXTargetDependency */ = { + BE1B7250F0D5F94F1CDD8145D5273AB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 142AC52C32E58EE1DBBAF6BE519B0EB8 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = E87EAF6AF192C2BAC70D150EEF007592 /* PBXContainerItemProxy */; + }; + BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */; + }; + BE9B1D7B36F058DD2E5D491290E2E6AB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = F4703B1B1058B7A8D057AD4F8AFFEAA2 /* PBXContainerItemProxy */; }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25182,47 +25538,47 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; + BF6D0677D14F9EFAC68E1A35F4723619 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 86183DE889527A9647EEAC01222F58F2 /* PBXContainerItemProxy */; + }; BFDF94603630E69B318F5F405972A285 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 302C794E2B3640352D4037D8E0366B5D /* PBXContainerItemProxy */; }; - C1B69688BB565314A6726432CFE8D726 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 8F59B68DB48BE55715202C35546798A0 /* PBXContainerItemProxy */; - }; - C1F4E63DB6E91A9B7CEE0473700766AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = D40C3B376A3048883C9983514D1AB138 /* PBXContainerItemProxy */; - }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C383B3216FFC05DFDF6AAF3D3BF6F456 /* PBXTargetDependency */ = { + C2906BD0E330E6D43979718AA7BEE0E2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 872C0871F55F2ECBBB9FC53685A787A0 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = C7A71D296A06DEFFACAC95769713AB88 /* PBXContainerItemProxy */; }; - C52FAD08BD402C1F8A0CC74E18316618 /* PBXTargetDependency */ = { + C419BBDD967B27E9D7F2C019BF800192 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 6653EBAD6C7E773D73762DEA44F1E906 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = D73D7BA595B1E9DA6DC89A0B9F769F49 /* PBXContainerItemProxy */; }; - C5691ABE8B330BEA1D18CDE6FA962499 /* PBXTargetDependency */ = { + C45EF051DED3A7ADE32A6FB8C02BEC40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = AC280A8F0A33B9A38D661AFF3F7FDCAF /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 4A8F0BE217B301EC2E43425B0A5F21EC /* PBXContainerItemProxy */; + }; + C51B1F653CA932A2F43341CB2E94E7C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 7DDD6FE55BBB3E679C5550D19E0C634F /* PBXContainerItemProxy */; }; C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25230,17 +25586,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; - C6A909D5E14DFB26BAB1FF17CAF4FEDD /* PBXTargetDependency */ = { + C629A7CD44828BE4F4F6A9A1FF53B7F0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 973375826EC3C5CAEC5BC24D5D8FA5B9 /* PBXContainerItemProxy */; - }; - C756C77634090F725E8C02A93B51603B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 9F2328789E7A4B811051BF9D4104093B /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 6C1876B42A8A11CAD3F4F695CDA925C5 /* PBXContainerItemProxy */; }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25248,24 +25598,24 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; + C85FB30891762E676295B172267E6F6F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 5FAB23E385BA05DBED57BAF876723AED /* PBXContainerItemProxy */; + }; + C88AA674C93645A3BA122FC47665C8B9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = D1379898B669373AB3FEECEA86DD36B7 /* PBXContainerItemProxy */; + }; C94D432895D486C9508FB387F74AE1DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = D19900A8FD578E00B4FDAFCE6EE7C8CC /* PBXContainerItemProxy */; }; - C94F64ABF4F82BEBEA248BC63AB2D83F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 004C8F5F789B36F26D63939E8F4CBF8C /* PBXContainerItemProxy */; - }; - C96E13A0B8C672F618C99278718D37B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 82A7B3FF6D6F4617DD95988690470EDC /* PBXContainerItemProxy */; - }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; @@ -25278,23 +25628,23 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; + CB4108A98392A30DDF0C1B8121FA6F2C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = E295AEA66CFDD6623A312A4734A37AB5 /* PBXContainerItemProxy */; + }; CB67FB062DE8CAF07E20E144CB621739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CBB115FDE5B20D8E60F70944E3F08557 /* PBXTargetDependency */ = { + CBB06B8B03B2346919C999F0887CDF3F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = FE38C858C518B8FDCD04A5D2231EAFE9 /* PBXContainerItemProxy */; - }; - CBC88388C1221A237C5B8598E4430F49 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 6FD6FABFE43447D15CA7D9CAD61CBEE0 /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 6243B5380DE7572F20F68EE582599719 /* PBXContainerItemProxy */; }; CBCED9CB448C55E858853770E18D9CA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25302,23 +25652,17 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 22906590CC5A956C3E20ACC35B78D306 /* PBXContainerItemProxy */; }; - CD0CB5941F2F3F4198713D8C5891097F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 4836D9B1825D8E8B0380218D4AC8AEE9 /* PBXContainerItemProxy */; - }; CD4A90C407C044A72171FE0E08BE8CBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 370DE049C383B99628BC1490AE7AF5A6 /* PBXContainerItemProxy */; }; - CD9B03902BB5936D65F1EAD60B42829A /* PBXTargetDependency */ = { + CDCD6B35CF12F6B89E330C3EFF1EDE5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 0B53A7AF6A94D20FBCD1FBFD5BA93309 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = BA7B7E1F2CF0D45AE8FC7320A03337D6 /* PBXContainerItemProxy */; }; CDF9E458CE5417481CDC4BABE348B377 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25326,23 +25670,47 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 82B12BA2AABCF09A5F85DF84C0BDD0AE /* PBXContainerItemProxy */; }; - CFCD96D9A68473A021A0843B8C08F9CE /* PBXTargetDependency */ = { + CE1F875AA07B832ACDD8AC69E54D84DF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 4C1697A40951818428033F654248FC84 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = F1312F6BB267898F9763CFCAB2225B1F /* PBXContainerItemProxy */; }; - CFFA07D769993225742F87592A635B2A /* PBXTargetDependency */ = { + CEE39A2161F9BF533BA048C8D47412EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 9BA5FC7DC2C6E23E73CB5561D875B17E /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = CE12D0235200FECDFC6E74CF0A1D212D /* PBXContainerItemProxy */; }; - D04DB6741A28C85FF0742CA6C8603061 /* PBXTargetDependency */ = { + CFD8247B5ACBEB146A21C46C4A3B7354 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = F944FBD086B4F0B7A6A8F98BCFF0D59C /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = E2ED9F097AA42802FCCF6DD879C4EB79 /* PBXContainerItemProxy */; + }; + D02D4F609F78663AFCA4594C32C27FC4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = F45C8B23AAE6EA8FD3DD2D67F77A66DD /* PBXContainerItemProxy */; + }; + D091FE2EDEB9D2BFC7A7B31E3AF0DBB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 44CBDE61952FBC28F86C739EBC4AB8C2 /* PBXContainerItemProxy */; + }; + D158BE6489688BC444E6E3D739E0CDB8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 955AAE1FE6E875B0E70E957463F8FB11 /* PBXContainerItemProxy */; + }; + D2597BB4726D1EF880E7498B869C3816 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 8E8FADFE18B61A9C7EA803AAD965E322 /* PBXContainerItemProxy */; }; D2E8899B6358167269542AB9F6844F35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25356,11 +25724,11 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = C9BCCF707D9DCF8AEA6E8C8B78FECA9E /* PBXContainerItemProxy */; }; - D57551B8770CAD9957C13E5B76DF1BBD /* PBXTargetDependency */ = { + D52BFC35D0680021013F4A02ED03F08D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 0DA4C9E60B351F62A059B0E3470E32F3 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = E7E2CA5641EE4FEA39D5724A4CE38E31 /* PBXContainerItemProxy */; }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25380,23 +25748,23 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = D487DCE2CE3859F38B4F09019E83312D /* PBXContainerItemProxy */; }; - D6A0FE4E8275F737C7E887D00544D0F0 /* PBXTargetDependency */ = { + D8455EFE6A2904EF5AA739452E19BF21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 303E21441EA81F6D0C7C37A8A3F784A9 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 90F215D1E26A8D8D4244B203701AAB00 /* PBXContainerItemProxy */; }; - D71C15F93267899D43BA1A7EEF899324 /* PBXTargetDependency */ = { + D84A65525741945B43380B859ED8FDAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = B8257E31E04AD1FB72C6CF52AD939356 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 3597FB537A4F5019D5421F89B3AA90F3 /* PBXContainerItemProxy */; }; - D7E9EBA08328166CB4AB50813FB3B0C9 /* PBXTargetDependency */ = { + D893243090E5BE53E70E318A421F3184 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = D2FC7C42D392B0B8E09236101A4E09C4 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = B42AB67030F3497A99DD3DEFEAE57712 /* PBXContainerItemProxy */; }; D8AE89FD45EA95F81B10A418DCEE2BC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25410,23 +25778,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D57C0DD9800DB5B6699D08359FEF3AEE /* PBXContainerItemProxy */; }; - D98BA402A2C73EE743589174563D5E35 /* PBXTargetDependency */ = { + D9D82703E2CDB72000C3EEFCBFD05C55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 0293930FFD72F7D2EF341479DC971847 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 10262EA3089B20C23C65722192009691 /* PBXContainerItemProxy */; }; - D9EE056F77A056DB08460888C4A57037 /* PBXTargetDependency */ = { + DA2291420886BDF8CAEFEF2D5DA5067C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = E654496422A19164DCA87DC87D60417E /* PBXContainerItemProxy */; - }; - DAD5770024F2172C81379FD00398404F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 837CE5458DBA3870465F878FC3CADD93 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = CAA85907C7C17AFB0A10B1530C2BE4E4 /* PBXContainerItemProxy */; }; DB428F9B87F61672189FE93818C7346C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25434,12 +25796,6 @@ target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; targetProxy = 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */; }; - DBCB602CC62D30A3E5C77E855E1AACAE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 541DE4A51AC21718887C5E375B5C7D94 /* PBXContainerItemProxy */; - }; DBEE2316CA1918C8CF1B007AAF73F7D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -25452,12 +25808,6 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; - DC9A2601E172EE2CD84739D5BDA25F31 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 7BD686A6589C91A0687BACB84CDA4EA8 /* PBXContainerItemProxy */; - }; DD359522E3672EC40F8549AE739EAC05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; @@ -25476,23 +25826,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 43F72BBBD9D74426F5F93DE6CCE70C64 /* PBXContainerItemProxy */; }; - DDDF98D597150375EE5CF18FD3272D5A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 2B4957EAA07ACCA18F420317536045EF /* PBXContainerItemProxy */; - }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - E01A5B4A5B07CAE829E02D91A1E2654E /* PBXTargetDependency */ = { + DFE8F5BB255DC241D57751C288A586CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 34BE4A7571F8983AB013DEDD961DAD35 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 71AA0A9F4AF2861DC65C634DCA84DA29 /* PBXContainerItemProxy */; + }; + DFF9C253547BA4F3C23304E86EB89262 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = EC9888C5259A96C5952907392BBDB28F /* PBXContainerItemProxy */; }; E1C36B9799A50B414371514062896CF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25500,11 +25850,11 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 4C6653A5CA1CE41FC050930288153C50 /* PBXContainerItemProxy */; }; - E25BD3FBCE30854423B3A33287C48AA0 /* PBXTargetDependency */ = { + E266503DE84D1EFA18BAB3E30AE021BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 7B14E6BD90EA4165214257636A78C7C0 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = B0F7C761F918E18B1D0EEEAFB32C5029 /* PBXContainerItemProxy */; }; E26B7B4B003AA78BCF9CBD540687E3DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25512,11 +25862,17 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */; }; - E28361A8502CA53A327B3D25D8DAB3CB /* PBXTargetDependency */ = { + E2831A9D336E0C4AA90FF3BD09E4CED3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 09B4F49BAFEBBCC03650AB595927E68A /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 84C7A31872934114867DB1B3868C9EE5 /* PBXContainerItemProxy */; + }; + E356572A62F11E13A05964A12E49DCD5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 27F49C59E4ECECC0F1AD44D9418C2E98 /* PBXContainerItemProxy */; }; E364FC183F2618C9D12C99E67143417F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25530,35 +25886,47 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; + E3DA365DC72A8D15542B99D77666CB33 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 3C9D25674D8973B33CAD9955B6E9082C /* PBXContainerItemProxy */; + }; + E463467A75682C4E7C346610654E375B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */; + }; + E4707C76224CAD03E5213F0AC1A2DAEC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = CF0FE25543B2D6CED188B88FD2FF87E5 /* PBXContainerItemProxy */; + }; E48FBFF1C285492BB3BCDEFC7A76FE33 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 39CD33DB7DC4569D42431023259B76CF /* PBXContainerItemProxy */; }; - E4C4AE1304C953CF10EA40970FBE2605 /* PBXTargetDependency */ = { + E4E53A5228158B3C6F6B5CB73D08472C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 02F7579CB1C07E489F983DC272882DD9 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = DB021704D3F01D4EF451CFDE6D168943 /* PBXContainerItemProxy */; }; - E65364E85B75BB416EA1AD4A8C502446 /* PBXTargetDependency */ = { + E7616635E878C54FD579D9D3CA550466 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = D28C49964D540257512849A23140B004 /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = AAE5A28788B8F479BB26A4207392F53B /* PBXContainerItemProxy */; }; - E65AF3BEDC02863D4621A4A58A6F38F3 /* PBXTargetDependency */ = { + E7CE2C7650D7F7A137AB8263674FF1D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 250D735080BD2E620ED19A725E2D4056 /* PBXContainerItemProxy */; - }; - E686E56B6DFD3701BA353156B14F0B9E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 08F242A01CC98E01F06F3BD1FCDFAC7B /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 0864129FFA1C9FE7A7E2F408EA14705C /* PBXContainerItemProxy */; }; E7D36BFE6E30CE57D9BAA1151633F937 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25566,12 +25934,6 @@ target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; targetProxy = AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */; }; - E86EE8295C8D063AA21A7F5E7ED0BEA1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = C2A4A257DC28D124C5CD45F7046545F2 /* PBXContainerItemProxy */; - }; E8B774937A3BB2EF6B8BACAE3CF1372F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -25584,17 +25946,17 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = AFBC06851050FD0681A66F16BA170F39 /* PBXContainerItemProxy */; }; - E9D00DE11509D5D5D83FEFDC2DB22DA5 /* PBXTargetDependency */ = { + EAA117EA6F7964497C328EA9F860739C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = FCD9E02655D4F4E60EF5892BACBA98C2 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = CA40F60DD5EE5CF7F6AFA03BB4863188 /* PBXContainerItemProxy */; }; - E9D99C6560F8BF9CBE0057EE26521D53 /* PBXTargetDependency */ = { + EACB9F214C49780987916DFB93EE15DF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 349E537D5CBD61F65187B796D0F01D74 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 6D7BFAEBB699B1285C90F5B301EA2DFC /* PBXContainerItemProxy */; }; EB53484F3FBF4931B107838DAA5960B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25608,35 +25970,11 @@ target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; targetProxy = 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */; }; - EBB90FD2C7E1F634E52353A47046E792 /* PBXTargetDependency */ = { + ED4E6582F6D84F97495C7B9687150841 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 15F170657600D9F2893626C28457C3D3 /* PBXContainerItemProxy */; - }; - EC68CFCE2E90C186FE4A9DDD2D685858 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = BACC6629FB49C2F2D8132FAE1D3A3EC8 /* PBXContainerItemProxy */; - }; - ED4E9CB29906B41C606AD2C6012125A7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 3BB76B5E03B9ACB09A327299C921D14F /* PBXContainerItemProxy */; - }; - ED5E1AC9AB2D63DEF9336FAC24AE940E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 1E680F2DBF399A69C6E63B5B3E9C8DAB /* PBXContainerItemProxy */; - }; - EDB40CCC2E4BACB625238F10002057D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 92905335AC1A9962BF38521B85E71DAB /* PBXContainerItemProxy */; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = AC36F5A23C7659EEF3D1CCCB7421A131 /* PBXContainerItemProxy */; }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25644,6 +25982,12 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; + EDF96C662FBA7762CD5536F4C6FA5BBC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 8A6CA7E78A119BDA035F13C1C2874552 /* PBXContainerItemProxy */; + }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -25656,17 +26000,11 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 8E91990EDE03926388322CD5BC7E9596 /* PBXContainerItemProxy */; }; - F0137CAC612BBB82D4D2203F8EB078E8 /* PBXTargetDependency */ = { + EF1AFB7B3ECE73E93EF0DE14B0451AD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = C5A29F79D44A9B5007673C3FAB1A0F4B /* PBXContainerItemProxy */; - }; - F0B6DE20B7C64F73B4BC7DF066AA613F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 93844C1B1AC7AB5814E7B2FE59053A85 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 8B72922AC4529AC0B7D77BE93B230132 /* PBXContainerItemProxy */; }; F0D16B338A371FF62450A81F3EB9800D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25680,11 +26018,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */; }; - F1A29F23C16DD42F6AE0E589F3444BE0 /* PBXTargetDependency */ = { + F1A4654A251B1AB1394452E8BA4D4655 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 0AAF69CAD8CED905905A68E05F089910 /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 039E8CBD37C5983167F040B9350FA534 /* PBXContainerItemProxy */; + }; + F1ED53FE905606823A5CF28B2D7BA967 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 0323F991328F97F668050CC1F09AEFF6 /* PBXContainerItemProxy */; }; F2166478FE82B374E2933089EF0F5912 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25692,11 +26036,29 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 7B4E5E1C683AA4C9D6520E9A4748E8B3 /* PBXContainerItemProxy */; }; - F37E5C8A565FC33E343BB217EF460513 /* PBXTargetDependency */ = { + F21C2C601334E2996C6B415C19C6FF69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = CE2F57EADD68691AA638B2E9100575C1 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = A243488DBA17CD164C4860C26B1E6385 /* PBXContainerItemProxy */; + }; + F2FA313DFCFE64F3F81CCBD994D2F7AB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 4C8957D6D63B4DFC721520B173AD5D7E /* PBXContainerItemProxy */; + }; + F3502842BFDCB088B64C588FB75679FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 9FEEE5A7B6225B791A62FF6B93A364EE /* PBXContainerItemProxy */; + }; + F3B46CB82BCF80E679262C1B9F21BB37 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = BFF966814809AC138A75A03363F74170 /* PBXContainerItemProxy */; }; F3EDC9308CCDE762F70BB11464CE0441 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25704,12 +26066,6 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = 269E90A4666876CC5B9B5CB8454B71F7 /* PBXContainerItemProxy */; }; - F409F33BFAE84BF1C26237C00FB71593 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = AE8BF63331C900BD24FFF78F77912815 /* PBXContainerItemProxy */; - }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; @@ -25728,6 +26084,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 7D9A4DEA0175BC4538E1272B3B0504FD /* PBXContainerItemProxy */; }; + F5AE83EAB25B7FD0615165ACD306EAD7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = FA21F973340DE63A3E52A43007D42844 /* PBXContainerItemProxy */; + }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -25740,11 +26102,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; - F6882BB923A35CDAB1B1CA4D68B47190 /* PBXTargetDependency */ = { + F6820920416058B65F2F986D60232DD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 8109050B5E46CC7A491E59935EDB62B1 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = B1CDEFA1365BCB532C7D56E79CB21624 /* PBXContainerItemProxy */; + }; + F6E449B40871C4630423F010277FCF5F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = D00B27B963BA508B1C8AC2E7E18743D2 /* PBXContainerItemProxy */; }; F7584C8C1825DEDF9A742D3A3F75CC27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25758,11 +26126,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F7B8EFEF350E448E5BCF80A8E0D479CC /* PBXTargetDependency */ = { + F7B36088753BAAAF086EE98671FB39EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 5AC99F768AC62CCCBE0AD4A98DA4A004 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = F811C2CFEEF4976187C1F2ACEB105D5F /* PBXContainerItemProxy */; }; F8C33BCE34AF86F557AC08D445941D34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25770,18 +26138,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 2FECF1896BBEFF162E79DB1B4AE97494 /* PBXContainerItemProxy */; }; - F92AFECFD4B9B88E0C3FD4D331B241ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = F74239C82F649DEB050E9FB99E683A60 /* PBXContainerItemProxy */; - }; - F9A47CDEF36E456B9DF3D4F488EF568F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 648C1D4E6D1D696611E950AC41FE465B /* PBXContainerItemProxy */; - }; FA7DDF48211586BFBE7CB3854A998999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; @@ -25794,23 +26150,17 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 47CDAF2090697A38D58C4D7A13E2CC2F /* PBXContainerItemProxy */; }; - FBE6637BE177F1C89F333E564C54A970 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = C346D6535452B40DE97F3DD730EFFA98 /* PBXContainerItemProxy */; - }; FCBBDE5072F765F25DAA24ED21AEE7B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BA9E3A8B825153221034FDB7B6A40DD0 /* PBXContainerItemProxy */; }; - FCCE946A8C13BFB53D77F54289D645C4 /* PBXTargetDependency */ = { + FD73855D8E7DA6867B869552BEC837CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = A8E389D91D646E794A926BCA5BF94E40 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 623627DBDEC607D90F43FC2EE0AFCF2D /* PBXContainerItemProxy */; }; FD786D3D1090698BF6B26C4A3EBF90CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25824,36 +26174,18 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */; }; - FED4D9CA952EB6E860579D83695021EB /* PBXTargetDependency */ = { + FE733362EB8B0CDA3D086D800738A750 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 0B12C38586470FD6F994547525D09197 /* PBXContainerItemProxy */; - }; - FF123D88D022B69063D1387F72FF0923 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 015FE2E7F34A5343B8FAE10B149BD8A2 /* PBXContainerItemProxy */; - }; - FF15197A79CEFF1C87BB1A758212C8BF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = E4DB45AF08911ACBFF949FE113CCDB83 /* PBXContainerItemProxy */; - }; - FF286FF353E42A6F158854EF331E0AB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 94618A9760AF55BA57DF48ECEEE813DE /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = C23BB79C36BAB0253DC82F033D877286 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 0346FF986F79C64343F99C0325D2CB9F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CFB14C09F6C834BAF8A5DDD154F9B375 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -25905,7 +26237,7 @@ }; 073679048D1D150AC0E021A2272308F1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01C015A56F8C5753715F3344D67046F2 /* RNAudio.xcconfig */; + baseConfigurationReference = 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -25931,7 +26263,7 @@ }; 07FADC14E782992AFF2F7671E2E7D23A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7642B6414675E0BA93185302889C2C0 /* react-native-slider.xcconfig */; + baseConfigurationReference = B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -25958,7 +26290,7 @@ }; 082626AE56C49C40C14786925EB6EE61 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6362B6944C8392DDD2BC93AEA5C91972 /* RCTRequired.xcconfig */; + baseConfigurationReference = 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -25974,7 +26306,7 @@ }; 0A4A6F8962251341E9A322BE1EC5E4B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F01C917A36AC6C408C0A8820274D6289 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26027,7 +26359,7 @@ }; 0C325883D859D958B8BEF24647A7BD7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CFB14C09F6C834BAF8A5DDD154F9B375 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26053,7 +26385,7 @@ }; 0DDF703E0A1E8E05DBFA959C12ECD11B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88C5A91B8D001D2E2BF68258B6D2FC9B /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26095,7 +26427,7 @@ }; 136DC5B10B3129544C45EAD704C682CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3688DC296671900406487C21CB46F51 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26122,7 +26454,7 @@ }; 144C8D6F5DFCD73347E4C70832E1FA51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3F2F5ACEF86F1A3B8D0D03F13932E96 /* UMCore.xcconfig */; + baseConfigurationReference = D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26150,7 +26482,7 @@ }; 1676DBE1C10283BB1D2D76E8C658B9A5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01C015A56F8C5753715F3344D67046F2 /* RNAudio.xcconfig */; + baseConfigurationReference = 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26203,7 +26535,7 @@ }; 172823DAC41CFBCABEA0BA03135BB51D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1847C6B2B3476A22DA71286C7F85C66A /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26255,7 +26587,7 @@ }; 1833671E22AD2D6ED73818E0AE2D1ECB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68B4E0C2B52D4FE00EABDB34434D232F /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26282,7 +26614,7 @@ }; 192F2140D8D96CFD79CCDC6126BDC355 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7CD7555A2F7D9DE80BFC7AED8C03C55 /* RNBootSplash.xcconfig */; + baseConfigurationReference = CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26309,7 +26641,7 @@ }; 1C6A4450E4C8F8FB4972753A2432DD29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C48FA75930C200E93FBAE049791C1CAA /* RNScreens.xcconfig */; + baseConfigurationReference = BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26379,7 +26711,7 @@ }; 1FD730E1AED9B4A80890683689AF92CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 542F48FF482072F96E81D5F11E172D6E /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26406,7 +26738,7 @@ }; 211C4C82F5DF1D82CBB2D407761ED06C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62E62EC5384FBED8735A65903855A9CA /* UMCameraInterface.xcconfig */; + baseConfigurationReference = D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26438,7 +26770,7 @@ }; 21993510FEBBBB050D27D176EF7FF12B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 341402BAC319CA956870770E48DCB3CC /* Yoga.xcconfig */; + baseConfigurationReference = 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26465,7 +26797,7 @@ }; 21F38FCE8441AA400CC5BD4C4317A9AD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E7A9A45C06D2CC6E7DD1085FCC88AA5 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26519,7 +26851,7 @@ }; 23CBFB3E266E8CF21EFE823F989A526F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92C040129F3C2040537816902D54BA42 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26546,7 +26878,7 @@ }; 2460F60985C3F210DF73337B5546844A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F59877FB0237E9E95346773470969759 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26633,7 +26965,7 @@ }; 26953C374A7AE6B44C19B0BB19DFC360 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 150D9E0A5E644499F1F1B704A0B23E95 /* EXKeepAwake.xcconfig */; + baseConfigurationReference = B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26687,7 +27019,7 @@ }; 27866C9CAFA37084A2F8A2BC5470991B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1615925E1FFEF2FE6497798AA5B55187 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26713,7 +27045,7 @@ }; 2B8D1445F622D4CF87B5619297A4C3DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5EC5AC6C9B3D5D80D2091F757CE3A1B /* react-native-appearance.xcconfig */; + baseConfigurationReference = 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26765,7 +27097,7 @@ }; 2BF6C04CA0DC7A51799793311AEF60EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AEF9A9E12F8312E3CF08CFEC2DF631D /* React-jsi.xcconfig */; + baseConfigurationReference = FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26792,7 +27124,7 @@ }; 2CEF953D9176553A03F12772D7854FEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7642B6414675E0BA93185302889C2C0 /* react-native-slider.xcconfig */; + baseConfigurationReference = B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26818,7 +27150,7 @@ }; 2D6B15879D8FB32EFD2AF3EBD2EED716 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05B096545AD412892A5196245C3150A4 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26845,7 +27177,7 @@ }; 2DBC10DC0499C957FD1EEE4576D28990 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D0C7C37DB1566D69F8B271076F5A2EB /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26887,7 +27219,7 @@ }; 2E8F188D8D8AA7A857EB6C00C0EE6BF1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 43BD1B04416643350A4BF3D1B251217F /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26914,7 +27246,7 @@ }; 32773B018020B1C9C403484A17245B36 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CBD4FDA4DBA18F2D320EB53621713B75 /* KeyCommands.xcconfig */; + baseConfigurationReference = 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26966,7 +27298,7 @@ }; 3524DD9801CA7FE1979B90B7C11ECF82 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3688DC296671900406487C21CB46F51 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27007,7 +27339,7 @@ }; 39C67524A03DCAD424A71B388F938D6E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1615925E1FFEF2FE6497798AA5B55187 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27034,7 +27366,7 @@ }; 3A0C36DCF0D838792ACADCA351DA7239 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4844DEE99A51269908F7176068E8A268 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27051,7 +27383,7 @@ }; 3A37BE7A73D51BAA2813B529FEE9E8EA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05FCCDB5B8226B26274EEA2A8835FB1D /* ReactNativeART.xcconfig */; + baseConfigurationReference = 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27104,7 +27436,7 @@ }; 3F8E658BE58823DB07092F62E68AE9C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2FB8CE87BC7CEB537F1899D1C1324F27 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27173,7 +27505,7 @@ }; 415A52154C0D00BB5981E4CD6EE8982B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D05016C508DC37AF7CB22D455B5E7617 /* EXAV.xcconfig */; + baseConfigurationReference = 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27201,7 +27533,7 @@ }; 41E11E8C21A52C694A4D3BEE864D9AEC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E43F1755E27EF960D032C6DDCA1F1818 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27258,7 +27590,7 @@ }; 42944898C766E1F58CF1D114D908DF7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B38030C6457042B7E387FF284371FEA /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -27381,9 +27713,34 @@ }; name = Release; }; + 4C168093C8EBAB4B79BF8C1C2FF085AA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 4DC88F1B94BA98100CCC2DBFCBF1170B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3F3BE8EF729EEFBEE87B89FB9A688FBD /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27425,7 +27782,7 @@ }; 4FC0A3ABC7C0A55EBAEB07FFC1BFEBC4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 341402BAC319CA956870770E48DCB3CC /* Yoga.xcconfig */; + baseConfigurationReference = 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27453,7 +27810,7 @@ }; 50BCB5F1EEE1F97FD0276478C777BCB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E2D0B7E4657A9F742F3CE97337865EE /* react-native-notifications.xcconfig */; + baseConfigurationReference = 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27479,7 +27836,7 @@ }; 5147D2DB0A11697EDFA27B87341E852B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D05016C508DC37AF7CB22D455B5E7617 /* EXAV.xcconfig */; + baseConfigurationReference = 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27506,7 +27863,7 @@ }; 52A007D721D1D2D6BD14B70C9FABE5B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91800C9E32E29B80AD6819F6904741F6 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27522,7 +27879,7 @@ }; 531DF162FE7827B65B86953D3626930F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B38030C6457042B7E387FF284371FEA /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -27540,7 +27897,7 @@ }; 54BE9E0B8B40988719562072F53CDD1C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91800C9E32E29B80AD6819F6904741F6 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27557,7 +27914,7 @@ }; 57DC61FA52A3832C2CBAB748125714DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4844DEE99A51269908F7176068E8A268 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27573,7 +27930,7 @@ }; 57F7DAB4A25A41E7061089F35621D18B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CBD4FDA4DBA18F2D320EB53621713B75 /* KeyCommands.xcconfig */; + baseConfigurationReference = 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27599,7 +27956,7 @@ }; 590C90EE6FEA01582AE180BFEBD3DCA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63EC225EBF846663B501B4250033C942 /* react-native-webview.xcconfig */; + baseConfigurationReference = DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27625,7 +27982,7 @@ }; 598007DCBC5363C8FDBF87E241969ABE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B001CA7D16D8AEB2A6398B7C218AD5D /* rn-extensions-share.xcconfig */; + baseConfigurationReference = EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27649,9 +28006,35 @@ }; name = Debug; }; + 59F8A83A04EE60686800B304A0A1B420 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.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-safe-area-context/react-native-safe-area-context-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_safe_area_context; + PRODUCT_NAME = "react-native-safe-area-context"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 5A602A4A591A93C2FE3885D6F59E423D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7CD7555A2F7D9DE80BFC7AED8C03C55 /* RNBootSplash.xcconfig */; + baseConfigurationReference = CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27677,7 +28060,7 @@ }; 5B681A10D993A1880ECC76BA11C8D827 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41E34DF774AB75999624309D3B29DE63 /* EXImageLoader.xcconfig */; + baseConfigurationReference = 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27733,7 +28116,7 @@ }; 5DA74E72D8EDEBC4C5FEDBE4BC3A7400 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A2F1E4070AF4AD5830BF74B0EAC6FC0 /* EXPermissions.xcconfig */; + baseConfigurationReference = 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27761,7 +28144,7 @@ }; 5EDF89B6E42E865A92E659ED341FB36C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3F2F5ACEF86F1A3B8D0D03F13932E96 /* UMCore.xcconfig */; + baseConfigurationReference = D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27788,7 +28171,7 @@ }; 5FC3252789FC71BD4F07FF10A84D89FB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CE1F9FE48F8DB49BD1C469ED796E6B3 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27814,7 +28197,7 @@ }; 61013CC5330326ECBBE24E236D4756ED /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B99ECB0D83E3C038F1B6C9C2A8BD2489 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27867,7 +28250,7 @@ }; 6252E431DF550AC2ABE38A07C30E5C69 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B38030C6457042B7E387FF284371FEA /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27891,9 +28274,36 @@ }; name = Debug; }; + 630D3143C493E80D71A24FDEC5E714D1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.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-safe-area-context/react-native-safe-area-context-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_safe_area_context; + PRODUCT_NAME = "react-native-safe-area-context"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 646D288F19E706EE0C7FEF68D7AA7A08 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCE1C215E0BC140B0D9D6051E01B350C /* RNFirebase.xcconfig */; + baseConfigurationReference = 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27920,7 +28330,7 @@ }; 6587E0E85E50C6129418B61EE75243F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D687C0DF26369F6FF99CEE7DE4C610FC /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27947,7 +28357,7 @@ }; 65E4EE47AAD5F8BE136CFEA39BC3B696 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 542F48FF482072F96E81D5F11E172D6E /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27973,7 +28383,7 @@ }; 68189F95B1543CA95038FD98447B904A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C22128EA145E17450FCDF65A15CD974 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28058,7 +28468,7 @@ }; 6B8AFF9E35F50BAC0DE697F5E0C3EFA9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1847C6B2B3476A22DA71286C7F85C66A /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28085,7 +28495,7 @@ }; 6D620E1574035BE4B178936002B7BC8F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51E59B35956E3FFBB857B4A547442403 /* RNFastImage.xcconfig */; + baseConfigurationReference = 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28112,7 +28522,7 @@ }; 6DC1143AC9B3ADDDE273AD03BC717821 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6362B6944C8392DDD2BC93AEA5C91972 /* RCTRequired.xcconfig */; + baseConfigurationReference = 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28127,7 +28537,7 @@ }; 6E1EED754019B0D2FD4071647DD2554A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41E34DF774AB75999624309D3B29DE63 /* EXImageLoader.xcconfig */; + baseConfigurationReference = 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28154,7 +28564,7 @@ }; 6FF5942A55CB716386FB81B3A661E7FB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88C5A91B8D001D2E2BF68258B6D2FC9B /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28171,7 +28581,7 @@ }; 71E8415D6468DFBF796F1039C1E97625 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFCB8E6A0EB6DAD34AA30A88AAD2711B /* React-RCTSettings.xcconfig */; + baseConfigurationReference = D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28197,7 +28607,7 @@ }; 7282579EA97D587611013797E31B73E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 18F69EF9D965ECF626511E6B06373FDF /* React-jsinspector.xcconfig */; + baseConfigurationReference = 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28224,7 +28634,7 @@ }; 764669D8236F7BDD2D5A7B8E1528A8B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2EA51A884524618DEA398DF4840AD3E8 /* UMFontInterface.xcconfig */; + baseConfigurationReference = A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28241,7 +28651,7 @@ }; 79C3DC195028717BB3D7DDD12A46B8DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A872B996E9B044512DA1A4D00D907BA /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28266,9 +28676,35 @@ }; name = Debug; }; + 7B7C0755F8375DAF3EF185586C94D369 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.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/RNCMaskedView/RNCMaskedView-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNCMaskedView; + PRODUCT_NAME = RNCMaskedView; + 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; + }; 7BAAF8357658CAC4B5D6D0C4B80A3994 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20ED547FE4F223A111167318F82A21AC /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28284,7 +28720,7 @@ }; 7DB17BC8E09831F39FB08A7D81AA5907 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0EF5794719C7B4624AA1D2197F92DF8D /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28310,7 +28746,7 @@ }; 7E677923F364581870FA8D124AFACE60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20ED547FE4F223A111167318F82A21AC /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28327,7 +28763,7 @@ }; 80E28D6632D5DE4EF8E68CF8C231AFAC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF765FEC13D8DF40A9AD2059A97D26A6 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28352,6 +28788,32 @@ }; name = Release; }; + 8318601443E9A810BCA4D6580373DEDE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 83794AFF62CA736A9E35B0C1E34A27C7 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 47BE8606ADAA46F17D3BCB260DFDB92E /* FirebaseCoreDiagnosticsInterop.xcconfig */; @@ -28422,7 +28884,7 @@ }; 8870C3F12DF20A8A79E4B0A817E80111 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DB54EA3A032E7EF454EF8CE2475647F /* EXConstants.xcconfig */; + baseConfigurationReference = B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28450,7 +28912,7 @@ }; 8904A84B684086F0B016083093CE07FE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 695E8FE81F6E84CC91ED24E33B1B409F /* React-RCTText.xcconfig */; + baseConfigurationReference = F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28477,7 +28939,7 @@ }; 8A594744D753D19412FBE936E712B047 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E7D6AAD39457758057017FE3DD3DCB9 /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28504,7 +28966,7 @@ }; 8B4C75AB2077821412B0BEABB795B133 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB9883DE9B885D17CF6D276905C31139 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28519,7 +28981,7 @@ }; 8B55720C1BD1EFE406E82A759744EB7A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 150D9E0A5E644499F1F1B704A0B23E95 /* EXKeepAwake.xcconfig */; + baseConfigurationReference = B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28640,7 +29102,7 @@ }; 8D6C7A34D73E3808BBA4673B8AE0C087 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F910EE1A4DA7853B3533645D672CCE2 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28668,7 +29130,7 @@ }; 8DE4E46184828C3AC9AE2F483CAEEB62 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0EF5794719C7B4624AA1D2197F92DF8D /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28695,7 +29157,7 @@ }; 8FC7CBDFE142209F416AC981FCB80953 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 18F69EF9D965ECF626511E6B06373FDF /* React-jsinspector.xcconfig */; + baseConfigurationReference = 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28763,7 +29225,7 @@ }; 91D4E468815E5E97CFA73772ED20A135 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2FB8CE87BC7CEB537F1899D1C1324F27 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28777,7 +29239,7 @@ }; name = Debug; }; - 9294253273753AE0A2A4B24BE7235C8B /* Debug */ = { + 92A3674E494DB07A3079268B0B7BF25A /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */; buildSettings = { @@ -28804,7 +29266,7 @@ }; 94F96B3181B5C4A55422960AE29B071C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 621760E57ABAA1008C332FB653081A9F /* React-cxxreact.xcconfig */; + baseConfigurationReference = 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28830,7 +29292,7 @@ }; 952D998029472DC4C4DFD6B66EFD440F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5DD06B5D07354B1AE2ECE57824782241 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28857,7 +29319,7 @@ }; 962FD9D12A679DF0DA56E883AA397314 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E2D0B7E4657A9F742F3CE97337865EE /* react-native-notifications.xcconfig */; + baseConfigurationReference = 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28884,7 +29346,7 @@ }; 96BCE63753F828171C3FD05BBAA1ECCA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CE1F9FE48F8DB49BD1C469ED796E6B3 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28938,7 +29400,7 @@ }; 97B00E3BBA0AECB29905C5EC1B0E87EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98EC4E89DD324DCC11248145EC58BDEA /* EXFileSystem.xcconfig */; + baseConfigurationReference = 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28966,7 +29428,7 @@ }; 9A256B0D575C1B9903CAA284900CEFE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B89D0D89E4F9F61E9AB59B9E808A89B2 /* React-Core.xcconfig */; + baseConfigurationReference = 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28991,34 +29453,9 @@ }; name = Release; }; - 9AD29742B51BE094C7FC42AAC0A8F86E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 9B4801DC8D6EB696AFFB6202AEAC0D6D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A872B996E9B044512DA1A4D00D907BA /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29072,7 +29509,7 @@ }; 9D09360779C91B7CD5A5D701B0D29033 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F59877FB0237E9E95346773470969759 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29113,7 +29550,7 @@ }; 9DEEE31A23BEFA95B0F652A29164D233 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8AAEEC2B289AA3E6FC0606341B9D731 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29130,7 +29567,7 @@ }; A27739C2B1814FAB77CC3AD01C44D6A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D0C7C37DB1566D69F8B271076F5A2EB /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29184,7 +29621,7 @@ }; A55D5C7C42C605BFB77735B7507A3903 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AEF9A9E12F8312E3CF08CFEC2DF631D /* React-jsi.xcconfig */; + baseConfigurationReference = FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29210,7 +29647,7 @@ }; A58FA93F97A296717115907AA968DDAB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C22128EA145E17450FCDF65A15CD974 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29225,7 +29662,7 @@ }; A79F89732A48D404FA27EC70182FC350 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C78891B5DCBCF391CDCA0B88900CFB2C /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29309,7 +29746,7 @@ }; A892379D8DBD903F9F5299ACE5AB9573 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 695E8FE81F6E84CC91ED24E33B1B409F /* React-RCTText.xcconfig */; + baseConfigurationReference = F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29404,7 +29841,7 @@ }; AB6916FCBFF289595BB1FD37CB4239A6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9D195E7498C59FDE0F25A2477484484 /* RNLocalize.xcconfig */; + baseConfigurationReference = 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29431,7 +29868,7 @@ }; AB765F75D361A75CB79E1D9700DDB0D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C48FA75930C200E93FBAE049791C1CAA /* RNScreens.xcconfig */; + baseConfigurationReference = BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29484,7 +29921,7 @@ }; AC2FA42C6AC72075B90CD2FF1B790DDC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 43BD1B04416643350A4BF3D1B251217F /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29510,7 +29947,7 @@ }; AC3CF821ABE60EA5B1E7BE05E64047F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF765FEC13D8DF40A9AD2059A97D26A6 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29536,7 +29973,7 @@ }; AC4775936C29D295B6450EC08CEA5829 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92C040129F3C2040537816902D54BA42 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29562,7 +29999,7 @@ }; AD2FB5912891BCBB6C51DA8334CE98B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 847E5743C00A3FE878DE06813290EA0D /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29588,7 +30025,7 @@ }; ADB0CDDE1827CA646C52C523066D211C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF0D10503D6F9B00F6DFF4C039262C95 /* RNReanimated.xcconfig */; + baseConfigurationReference = D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29614,7 +30051,7 @@ }; AE7A4B8707442677FE1CD9E0498C5BDD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9537591DD16EF4A302440EB846913BB4 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29642,7 +30079,7 @@ }; AECEBCE712AC0C128D865D4E39988C78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51E59B35956E3FFBB857B4A547442403 /* RNFastImage.xcconfig */; + baseConfigurationReference = 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29668,7 +30105,7 @@ }; AFBC9B2636EE1DA9119ED359CF5814C8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB9883DE9B885D17CF6D276905C31139 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29699,7 +30136,7 @@ }; B3CD22B7EC2C67CFA2FB701F29289AD1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DB54EA3A032E7EF454EF8CE2475647F /* EXConstants.xcconfig */; + baseConfigurationReference = B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29726,7 +30163,7 @@ }; B44A36D415BFFEFF1BD92163209EAAD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3F3BE8EF729EEFBEE87B89FB9A688FBD /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29752,7 +30189,7 @@ }; B54A78056E8E8F777325DFAD36EB43D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF0D10503D6F9B00F6DFF4C039262C95 /* RNReanimated.xcconfig */; + baseConfigurationReference = D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29779,7 +30216,7 @@ }; B61F008C099CB869F5B3E38B4D075F48 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F00293AA71A402F46B2D3EFA14147688 /* UMAppLoader.xcconfig */; + baseConfigurationReference = 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29807,7 +30244,7 @@ }; B7AD6090725057CB46AA61569BE0CCC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05B096545AD412892A5196245C3150A4 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29833,7 +30270,7 @@ }; BBEBA8BC8D45B72A1F7C78820819ED5B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A944AEE1EF52C6753DF710C70F61969 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29859,7 +30296,7 @@ }; BD4DAD572553882617A36503DAE72BB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68B4E0C2B52D4FE00EABDB34434D232F /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29885,7 +30322,7 @@ }; BD8C555F387DC02E6524EA86AE69C7E4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C78891B5DCBCF391CDCA0B88900CFB2C /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29938,7 +30375,7 @@ }; C0AB43CFD0B16DF72729061865BC82A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9537591DD16EF4A302440EB846913BB4 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29965,7 +30402,7 @@ }; C2140C4487286D40FDDDE672BB0F8DC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9D195E7498C59FDE0F25A2477484484 /* RNLocalize.xcconfig */; + baseConfigurationReference = 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30018,7 +30455,7 @@ }; C55480815892F9BB7C7BF102985FB172 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E7D6AAD39457758057017FE3DD3DCB9 /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30070,7 +30507,7 @@ }; C7608D4BF5509F4421796B0625F9EE31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 206D58BA534E12AA0AE510AE364945E3 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30096,7 +30533,7 @@ }; CBE349CFB950987CBC1021A4C612051B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF704942F733256935E2D6EE6B93DFA6 /* RNRootView.xcconfig */; + baseConfigurationReference = 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30122,7 +30559,7 @@ }; CD63E8958EC6FBA71ED080060B3C3DA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D687C0DF26369F6FF99CEE7DE4C610FC /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30148,7 +30585,7 @@ }; CE86BC8747547C114C1EF56E764850DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F00293AA71A402F46B2D3EFA14147688 /* UMAppLoader.xcconfig */; + baseConfigurationReference = 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30175,7 +30612,7 @@ }; CF8A82D2305CC4EB7BF73381C538A5E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5EC5AC6C9B3D5D80D2091F757CE3A1B /* react-native-appearance.xcconfig */; + baseConfigurationReference = 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30200,35 +30637,9 @@ }; name = Release; }; - CFA1E13CB357F2C204E57C9814010235 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; CFF0829E30F943E442923B3BFABD26BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2EA51A884524618DEA398DF4840AD3E8 /* UMFontInterface.xcconfig */; + baseConfigurationReference = A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30244,7 +30655,7 @@ }; D44AE23116BFC459841E46F78A7D18D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 66590469C3C0AF368D9F0433F6ACA4A6 /* ReactCommon.xcconfig */; + baseConfigurationReference = CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30313,7 +30724,7 @@ }; D6462DB5908EF31119072DF180707EFF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05FCCDB5B8226B26274EEA2A8835FB1D /* ReactNativeART.xcconfig */; + baseConfigurationReference = 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30339,7 +30750,7 @@ }; D6BAF1C6FB468A07A014451F2079E77B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCE1C215E0BC140B0D9D6051E01B350C /* RNFirebase.xcconfig */; + baseConfigurationReference = 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30365,7 +30776,7 @@ }; D73FFAC8B9760363DD94D0DD18099667 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62E62EC5384FBED8735A65903855A9CA /* UMCameraInterface.xcconfig */; + baseConfigurationReference = D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30409,7 +30820,7 @@ }; D8B2A5C994FAA699F9AB034F417CA033 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63EC225EBF846663B501B4250033C942 /* react-native-webview.xcconfig */; + baseConfigurationReference = DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30436,7 +30847,7 @@ }; D8D246725C7020402ADBA119535596A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D46BEAF80F28B45FCA1B569AA07B1A28 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30462,7 +30873,7 @@ }; DC2F76B5BB2274BFAA8345C2A93DC1CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 206D58BA534E12AA0AE510AE364945E3 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30530,7 +30941,7 @@ }; DD42D07940E9CC1333330CCEC47EDB63 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A944AEE1EF52C6753DF710C70F61969 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30621,7 +31032,7 @@ }; DE7D558F8B19FD2028AA1A619EF12C1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8AAEEC2B289AA3E6FC0606341B9D731 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30664,7 +31075,7 @@ }; E002F01A244490EC2D7BE0B5908EF609 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B001CA7D16D8AEB2A6398B7C218AD5D /* rn-extensions-share.xcconfig */; + baseConfigurationReference = EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30691,7 +31102,7 @@ }; E0407D5E33F8D74FFACAF38B739C8B29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E43F1755E27EF960D032C6DDCA1F1818 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30708,7 +31119,7 @@ }; E042A1F3DA2D655DF64065BDE71EEF04 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E7A9A45C06D2CC6E7DD1085FCC88AA5 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30749,6 +31160,32 @@ }; name = Release; }; + E0E00834D930FBADC9C7DB6F3FD98E87 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; E1CC6024391925867D6F5746C801CBBF /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = FAAAA8269B5EEB70685F47DA901D4B89 /* FlipperKit.xcconfig */; @@ -30779,7 +31216,7 @@ }; E2343B210AF75F7D3FAFF5A1ADAA8E2B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF704942F733256935E2D6EE6B93DFA6 /* RNRootView.xcconfig */; + baseConfigurationReference = 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30804,9 +31241,36 @@ }; name = Release; }; + E2D24AA18608BA090376E86DB7BCB26E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.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/RNCMaskedView/RNCMaskedView-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNCMaskedView; + PRODUCT_NAME = RNCMaskedView; + 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; + }; E2D6EA909158F38D23E09480CFC0012B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B89D0D89E4F9F61E9AB59B9E808A89B2 /* React-Core.xcconfig */; + baseConfigurationReference = 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30858,7 +31322,7 @@ }; E3C29AEA11F3223722658CFAD4CED5A3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30D0D4C3F5916BC4D68C3E0DBCC9517E /* React.xcconfig */; + baseConfigurationReference = C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30874,7 +31338,7 @@ }; E4994CD19B3CE26912637B9AE5C584F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B99ECB0D83E3C038F1B6C9C2A8BD2489 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30900,7 +31364,7 @@ }; EA78216D413AEF5509BC7B4DBF691BAC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F01C917A36AC6C408C0A8820274D6289 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30926,7 +31390,7 @@ }; EB22789E6D5BAB3E3F969EDF91DE9BC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30D0D4C3F5916BC4D68C3E0DBCC9517E /* React.xcconfig */; + baseConfigurationReference = C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30941,7 +31405,7 @@ }; EF837CE35B7A473EFD08BF3C094E6D28 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A2F1E4070AF4AD5830BF74B0EAC6FC0 /* EXPermissions.xcconfig */; + baseConfigurationReference = 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30968,7 +31432,7 @@ }; EFBC1B2B4FDA4EAFF967FBC3A5455A23 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFCB8E6A0EB6DAD34AA30A88AAD2711B /* React-RCTSettings.xcconfig */; + baseConfigurationReference = D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30995,7 +31459,7 @@ }; F110780FDF9D939A972D53231EE6FA24 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98EC4E89DD324DCC11248145EC58BDEA /* EXFileSystem.xcconfig */; + baseConfigurationReference = 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31049,7 +31513,7 @@ }; F3D3F652EF48BAA51EBC8E2B8BF33B10 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 621760E57ABAA1008C332FB653081A9F /* React-cxxreact.xcconfig */; + baseConfigurationReference = 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31076,7 +31540,7 @@ }; F557FCBDFC24296FDD3F0B44C274A253 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 847E5743C00A3FE878DE06813290EA0D /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31103,7 +31567,7 @@ }; F7F7649CBC7C19196B8BBEF0DD2B193F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 66590469C3C0AF368D9F0433F6ACA4A6 /* ReactCommon.xcconfig */; + baseConfigurationReference = CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31185,7 +31649,7 @@ }; FA6530159C429B86F21FB87A3F4E315D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B38030C6457042B7E387FF284371FEA /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31238,7 +31702,7 @@ }; FA75107B9FA4AEC31421192228EAF167 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5DD06B5D07354B1AE2ECE57824782241 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31262,35 +31726,9 @@ }; name = Debug; }; - FBA6D707CFA07A0E37317DFCD2262A3E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; FC4DE0C4A8D93C86E058BD266AD33FA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F910EE1A4DA7853B3533645D672CCE2 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31344,7 +31782,7 @@ }; FE5DF526A592397782C99673E1056E52 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E749C38DDC6B784160FB8707D902A54 /* EXHaptics.xcconfig */; + baseConfigurationReference = EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31371,7 +31809,7 @@ }; FEE2A6B5E74B79501495E1D072804DE2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D46BEAF80F28B45FCA1B569AA07B1A28 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31398,7 +31836,7 @@ }; FFB88A23A6CBC95B90E15C63EDA3D2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E749C38DDC6B784160FB8707D902A54 /* EXHaptics.xcconfig */; + baseConfigurationReference = EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31652,6 +32090,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 382D0CE89F73B3FA8CE01BA09956DD23 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7B7C0755F8375DAF3EF185586C94D369 /* Debug */, + E2D24AA18608BA090376E86DB7BCB26E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3CA06B300CC116BE49202F8E1F82A5F8 /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 59F8A83A04EE60686800B304A0A1B420 /* Debug */, + 630D3143C493E80D71A24FDEC5E714D1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4162C715916F5229E2751C537686A610 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -31661,15 +32117,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 41E1C1AC555FA34BD4DE9C3EC2355C63 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9AD29742B51BE094C7FC42AAC0A8F86E /* Debug */, - FBA6D707CFA07A0E37317DFCD2262A3E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 436743F59DB2399AA677A0CF7D210291 /* Build configuration list for PBXNativeTarget "react-native-appearance" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -31805,6 +32252,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 64DB932A72AC27314419FE6861FADD3F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4C168093C8EBAB4B79BF8C1C2FF085AA /* Debug */, + 8318601443E9A810BCA4D6580373DEDE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 6724FB64E45E8AF2DFE38B228CA55678 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -31931,6 +32387,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 90263AB0A28855EB2C91CD34783542CD /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 92A3674E494DB07A3079268B0B7BF25A /* Debug */, + E0E00834D930FBADC9C7DB6F3FD98E87 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 913138D43225773C4430483BA181BA0E /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -31958,15 +32423,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9886625934528003DD66A1B59C4E2C4A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9294253273753AE0A2A4B24BE7235C8B /* Debug */, - CFA1E13CB357F2C204E57C9814010235 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 99B604AD5E0CD5A7F25BD799A6909DC7 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index bc5120adf..610cf666a 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 @@ -3963,6 +3963,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-safe-area-context + +MIT License + +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-webview 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 8df559ac4..f61e1970a 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 @@ -4338,6 +4338,37 @@ SOFTWARE. <key>FooterText</key> <string>MIT License +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +</string> + <key>License</key> + <string>MIT</string> + <key>Title</key> + <string>react-native-safe-area-context</string> + <key>Type</key> + <string>PSGroupSpecifier</string> + </dict> + <dict> + <key>FooterText</key> + <string>MIT License + Copyright (c) 2015-present, Facebook, Inc. 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 83ee80926..8813e4539 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index 6f60e6559..a9664777d 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_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 bc5120adf..610cf666a 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 @@ -3963,6 +3963,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-safe-area-context + +MIT License + +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-webview 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 8df559ac4..f61e1970a 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 @@ -4338,6 +4338,37 @@ SOFTWARE. <key>FooterText</key> <string>MIT License +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +</string> + <key>License</key> + <string>MIT</string> + <key>Title</key> + <string>react-native-safe-area-context</string> + <key>Type</key> + <string>PSGroupSpecifier</string> + </dict> + <dict> + <key>FooterText</key> + <string>MIT License + Copyright (c) 2015-present, Facebook, Inc. 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 c643f4715..a8dd196b0 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 00f2022b6..9318f92c6 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_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/RNCMaskedView/RNCMaskedView-dummy.m b/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-dummy.m new file mode 100644 index 000000000..6358d0297 --- /dev/null +++ b/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-dummy.m @@ -0,0 +1,5 @@ +#import <Foundation/Foundation.h> +@interface PodsDummy_RNCMaskedView : NSObject +@end +@implementation PodsDummy_RNCMaskedView +@end diff --git a/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch b/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import <UIKit/UIKit.h> +#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/RNCMaskedView/RNCMaskedView.xcconfig b/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView.xcconfig new file mode 100644 index 000000000..35f54e6d1 --- /dev/null +++ b/ios/Pods/Target Support Files/RNCMaskedView/RNCMaskedView.xcconfig @@ -0,0 +1,12 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNCMaskedView" "${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/RNCMaskedView" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@react-native-community/masked-view +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/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist b/ios/Pods/Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist index 76264f2d8..0f2cfbce1 100644 --- a/ios/Pods/Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist +++ b/ios/Pods/Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist @@ -13,7 +13,7 @@ <key>CFBundlePackageType</key> <string>BNDL</string> <key>CFBundleShortVersionString</key> - <string>0.28.0</string> + <string>0.30.0</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> diff --git a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m new file mode 100644 index 000000000..53fd2c867 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m @@ -0,0 +1,5 @@ +#import <Foundation/Foundation.h> +@interface PodsDummy_react_native_safe_area_context : NSObject +@end +@implementation PodsDummy_react_native_safe_area_context +@end diff --git a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import <UIKit/UIKit.h> +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig new file mode 100644 index 000000000..ae3b76eba --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig @@ -0,0 +1,12 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/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-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-safe-area-context" +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-safe-area-context +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index 042345f63..1375bb2b4 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -841,7 +841,7 @@ "$(inherited)", "$(SRCROOT)/../node_modules/rn-extensions-share/ios/**", "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**", - $PODS_CONFIGURATION_BUILD_DIR/Firebase, + "$PODS_CONFIGURATION_BUILD_DIR/Firebase", ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; @@ -907,7 +907,7 @@ "$(inherited)", "$(SRCROOT)/../node_modules/rn-extensions-share/ios/**", "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**", - $PODS_CONFIGURATION_BUILD_DIR/Firebase, + "$PODS_CONFIGURATION_BUILD_DIR/Firebase", ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; diff --git a/package.json b/package.json index 5ee6f9051..2c800cc4f 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,11 @@ "@react-native-community/async-storage": "^1.9.0", "@react-native-community/cameraroll": "1.6.0", "@react-native-community/datetimepicker": "2.3.2", + "@react-native-community/masked-view": "^0.1.10", "@react-native-community/slider": "2.0.9", + "@react-navigation/drawer": "5.8.1", + "@react-navigation/native": "5.5.0", + "@react-navigation/stack": "^5.3.9", "@rocket.chat/sdk": "djorkaeffalexandre/Rocket.Chat.js.SDK#test.fix-ddp", "@rocket.chat/ui-kit": "0.8.0", "base-64": "0.1.0", @@ -66,7 +70,7 @@ "react-native-easy-toast": "^1.2.0", "react-native-fast-image": "8.1.5", "react-native-firebase": "5.6.0", - "react-native-gesture-handler": "1.6.1", + "react-native-gesture-handler": "^1.6.1", "react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker", "react-native-image-progress": "^1.1.1", "react-native-jitsi-meet": "2.1.1", @@ -85,18 +89,16 @@ "react-native-popover-view": "2.0.9", "react-native-progress": "4.1.2", "react-native-prompt-android": "^1.1.0", - "react-native-reanimated": "1.8.0", + "react-native-reanimated": "^1.8.0", "react-native-responsive-ui": "^1.1.1", - "react-native-screens": "2.7.0", + "react-native-safe-area-context": "^3.0.2", + "react-native-screens": "^2.7.0", "react-native-scrollable-tab-view": "^1.0.0", "react-native-slowlog": "^1.0.2", "react-native-unimodules": "0.9.1", "react-native-vector-icons": "6.6.0", "react-native-webview": "9.4.0", - "react-navigation": "4.3.9", - "react-navigation-drawer": "1.4.0", "react-navigation-header-buttons": "3.0.5", - "react-navigation-stack": "^1.10.3", "react-redux": "7.2.0", "reactotron-react-native": "5.0.0", "redux": "4.0.5", diff --git a/storybook/stories/RoomViewHeader.js b/storybook/stories/RoomViewHeader.js index dc28ad6f9..cce19f675 100644 --- a/storybook/stories/RoomViewHeader.js +++ b/storybook/stories/RoomViewHeader.js @@ -1,6 +1,6 @@ import React from 'react'; import { ScrollView, View, StyleSheet } from 'react-native'; -import { HeaderBackButton } from 'react-navigation-stack'; +import { HeaderBackButton } from '@react-navigation/stack'; import HeaderComponent from '../../app/views/RoomView/Header/Header'; // import { CustomHeaderButtons, Item } from '../../app/containers/HeaderButton'; diff --git a/yarn.lock b/yarn.lock index a073435ef..88acc194f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,21 +2,14 @@ # yarn lockfile v1 -"@babel/code-frame@7.5.5", "@babel/code-frame@^7.5.5": +"@babel/code-frame@7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== dependencies: "@babel/highlight" "^7.0.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/code-frame@^7.8.3": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== @@ -32,90 +25,29 @@ invariant "^2.2.4" semver "^5.5.0" -"@babel/core@^7.0.0", "@babel/core@^7.1.0": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687" - integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.2.2" - "@babel/helpers" "^7.2.0" - "@babel/parser" "^7.2.2" - "@babel/template" "^7.2.2" - "@babel/traverse" "^7.2.2" - "@babel/types" "^7.2.2" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.10" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" - integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helpers" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.5" - "@babel/types" "^7.4.4" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.11" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.6.2": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.4.tgz#d496799e5c12195b3602d0fddd77294e3e38e80e" - integrity sha512-0LiLrB2PwrVI+a2/IEskBopDYSd8BCb3rOvH7D5tzoWd696TBEduBvuLVm4Nx6rltrLZqvI3MCalB2K2aVzQjA== +"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.6.2": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.6.tgz#d9aa1f580abf3b2286ef40b6904d390904c63376" + integrity sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg== dependencies: "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.8.4" - "@babel/helpers" "^7.8.4" - "@babel/parser" "^7.8.4" - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.4" - "@babel/types" "^7.8.3" + "@babel/generator" "^7.9.6" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helpers" "^7.9.6" + "@babel/parser" "^7.9.6" + "@babel/template" "^7.8.6" + "@babel/traverse" "^7.9.6" + "@babel/types" "^7.9.6" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.1" - json5 "^2.1.0" + json5 "^2.1.2" lodash "^4.17.13" resolve "^1.3.2" semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.2.2": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.0.tgz#f663838cd7b542366de3aa608a657b8ccb2a99eb" - integrity sha512-dZTwMvTgWfhmibq4V9X+LMf6Bgl7zAodRn9PvcPdhlzFMbvUutx74dbEv7Atz3ToeEpevYEJtAwfxq/bDCzHWg== - dependencies: - "@babel/types" "^7.3.0" - jsesc "^2.5.1" - lodash "^4.17.10" - source-map "^0.5.0" - trim-right "^1.0.1" - -"@babel/generator@^7.4.0", "@babel/generator@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" - integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ== - dependencies: - "@babel/types" "^7.4.4" - jsesc "^2.5.1" - lodash "^4.17.11" - source-map "^0.5.0" - trim-right "^1.0.1" - -"@babel/generator@^7.5.0", "@babel/generator@^7.9.6": +"@babel/generator@^7.4.0", "@babel/generator@^7.5.0", "@babel/generator@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz#5408c82ac5de98cda0d77d8124e99fa1f2170a43" integrity sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ== @@ -125,34 +57,6 @@ lodash "^4.17.13" source-map "^0.5.0" -"@babel/generator@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf" - integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ== - dependencies: - "@babel/types" "^7.5.5" - jsesc "^2.5.1" - lodash "^4.17.13" - source-map "^0.5.0" - trim-right "^1.0.1" - -"@babel/generator@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.4.tgz#35bbc74486956fe4251829f9f6c48330e8d0985e" - integrity sha512-PwhclGdRpNAf3IxZb0YVuITPZmmrXz9zf6fH8lT4XbrmfQKr6ryBzhv593P5C6poJRciFCL/eHGW2NuGrgEyxA== - dependencies: - "@babel/types" "^7.8.3" - jsesc "^2.5.1" - lodash "^4.17.13" - source-map "^0.5.0" - -"@babel/helper-annotate-as-pure@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" - integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== - dependencies: - "@babel/types" "^7.0.0" - "@babel/helper-annotate-as-pure@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" @@ -160,14 +64,6 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" - integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.1.0" - "@babel/types" "^7.0.0" - "@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" @@ -176,22 +72,22 @@ "@babel/helper-explode-assignable-expression" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-builder-react-jsx@^7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" - integrity sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw== +"@babel/helper-builder-react-jsx-experimental@^7.9.0": + version "7.9.5" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3" + integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg== dependencies: - "@babel/types" "^7.3.0" - esutils "^2.0.0" + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-module-imports" "^7.8.3" + "@babel/types" "^7.9.5" -"@babel/helper-call-delegate@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a" - integrity sha512-YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ== +"@babel/helper-builder-react-jsx@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" + integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== dependencies: - "@babel/helper-hoist-variables" "^7.0.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/types" "^7.9.0" "@babel/helper-compilation-targets@^7.9.6": version "7.9.6" @@ -204,29 +100,6 @@ levenary "^1.1.1" semver "^5.5.0" -"@babel/helper-create-class-features-plugin@^7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.3.0.tgz#2b01a81b3adc2b1287f9ee193688ef8dc71e718f" - integrity sha512-DUsQNS2CGLZZ7I3W3fvh0YpPDd6BuWJlDl+qmZZpABZHza2ErE3LxtEzLJFHFC1ZwtlAXvHhbFYbtM5o5B0WBw== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-member-expression-to-functions" "^7.0.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.2.3" - -"@babel/helper-create-class-features-plugin@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f" - integrity sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-member-expression-to-functions" "^7.5.5" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/helper-create-class-features-plugin@^7.8.3", "@babel/helper-create-class-features-plugin@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.6.tgz#965c8b0a9f051801fd9d3b372ca0ccf200a90897" @@ -248,15 +121,6 @@ "@babel/helper-regex" "^7.8.3" regexpu-core "^4.7.0" -"@babel/helper-define-map@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c" - integrity sha512-yPPcW8dc3gZLN+U1mhYV91QU3n5uTbx7DUdf8NnPbjS0RMwBuHi9Xt2MUgppmNz7CJxTBWsGczTiEp1CSOTPRg== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/types" "^7.0.0" - lodash "^4.17.10" - "@babel/helper-define-map@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" @@ -266,14 +130,6 @@ "@babel/types" "^7.8.3" lodash "^4.17.13" -"@babel/helper-explode-assignable-expression@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" - integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== - dependencies: - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - "@babel/helper-explode-assignable-expression@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" @@ -282,25 +138,7 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-function-name@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" - integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== - dependencies: - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-function-name@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" - integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA== - dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-function-name@^7.9.5": +"@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c" integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw== @@ -309,13 +147,6 @@ "@babel/template" "^7.8.3" "@babel/types" "^7.9.5" -"@babel/helper-get-function-arity@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" - integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== - dependencies: - "@babel/types" "^7.0.0" - "@babel/helper-get-function-arity@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" @@ -323,13 +154,6 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-hoist-variables@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88" - integrity sha512-Ggv5sldXUeSKsuzLkddtyhyHe2YantsxWKNi7A+7LeD12ExRDWTRk29JCXpaHPAbMaIPZSil7n+lq78WY2VY7w== - dependencies: - "@babel/types" "^7.0.0" - "@babel/helper-hoist-variables@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134" @@ -337,20 +161,6 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-member-expression-to-functions@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" - integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-member-expression-to-functions@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" - integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== - dependencies: - "@babel/types" "^7.5.5" - "@babel/helper-member-expression-to-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" @@ -358,32 +168,13 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-module-imports@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" - integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-module-imports@^7.8.3": +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== dependencies: "@babel/types" "^7.8.3" -"@babel/helper-module-transforms@^7.1.0": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963" - integrity sha512-YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.0.0" - "@babel/template" "^7.2.2" - "@babel/types" "^7.2.2" - lodash "^4.17.10" - "@babel/helper-module-transforms@^7.9.0": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" @@ -397,13 +188,6 @@ "@babel/types" "^7.9.0" lodash "^4.17.13" -"@babel/helper-optimise-call-expression@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" - integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== - dependencies: - "@babel/types" "^7.0.0" - "@babel/helper-optimise-call-expression@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" @@ -411,23 +195,11 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-plugin-utils@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" - integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== - -"@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== -"@babel/helper-regex@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27" - integrity sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg== - dependencies: - lodash "^4.17.10" - "@babel/helper-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" @@ -435,17 +207,6 @@ dependencies: lodash "^4.17.13" -"@babel/helper-remap-async-to-generator@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" - integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-wrap-function" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - "@babel/helper-remap-async-to-generator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" @@ -457,26 +218,6 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz#19970020cf22677d62b3a689561dbd9644d8c5e5" - integrity sha512-GyieIznGUfPXPWu0yLS6U55Mz67AZD9cUk0BfirOWlPrXlBcan9Gz+vHGz+cPfuoweZSnPzPIm67VtQM0OWZbA== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.0.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.2.3" - "@babel/types" "^7.0.0" - -"@babel/helper-replace-supers@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" - integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.5.5" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.5.5" - "@babel/types" "^7.5.5" - "@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6", "@babel/helper-replace-supers@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz#03149d7e6a5586ab6764996cd31d6981a17e1444" @@ -487,14 +228,6 @@ "@babel/traverse" "^7.9.6" "@babel/types" "^7.9.6" -"@babel/helper-simple-access@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" - integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== - dependencies: - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" - "@babel/helper-simple-access@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" @@ -503,20 +236,6 @@ "@babel/template" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-split-export-declaration@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" - integrity sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-split-export-declaration@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" - integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== - dependencies: - "@babel/types" "^7.4.4" - "@babel/helper-split-export-declaration@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" @@ -524,21 +243,11 @@ dependencies: "@babel/types" "^7.8.3" -"@babel/helper-validator-identifier@^7.9.5": +"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== -"@babel/helper-wrap-function@^7.1.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" - integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.2.0" - "@babel/helper-wrap-function@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" @@ -549,87 +258,35 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helpers@^7.2.0": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.3.1.tgz#949eec9ea4b45d3210feb7dc1c22db664c9e44b9" - integrity sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA== - dependencies: - "@babel/template" "^7.1.2" - "@babel/traverse" "^7.1.5" - "@babel/types" "^7.3.0" - -"@babel/helpers@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" - integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A== - dependencies: - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/helpers@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.4.tgz#754eb3ee727c165e0a240d6c207de7c455f36f73" - integrity sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w== +"@babel/helpers@^7.9.6": + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.6.tgz#092c774743471d0bb6c7de3ad465ab3d3486d580" + integrity sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw== dependencies: "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.4" - "@babel/types" "^7.8.3" + "@babel/traverse" "^7.9.6" + "@babel/types" "^7.9.6" -"@babel/highlight@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" - integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== +"@babel/highlight@^7.0.0", "@babel/highlight@^7.8.3": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" + integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== dependencies: + "@babel/helper-validator-identifier" "^7.9.0" chalk "^2.0.0" - esutils "^2.0.2" js-tokens "^4.0.0" -"@babel/highlight@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" - integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== - dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" - -"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.1.tgz#8f4ffd45f779e6132780835ffa7a215fa0b2d181" - integrity sha512-ATz6yX/L8LEnC3dtLQnIx4ydcPxhLcoy9Vl6re00zb2w5lG6itY6Vhnr1KFRPq/FHNsgl/gh2mjNN20f9iJTTA== - -"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.4.tgz#5977129431b8fe33471730d255ce8654ae1250b6" - integrity sha512-5pCS4mOsL+ANsFZGdvNLybx4wtqAZJ0MJjMHxvzI3bvIsz6sQvzW8XX92EYIkiPtIvcfG3Aj+Ir5VNyjnZhP7w== - -"@babel/parser@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" - integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew== - -"@babel/parser@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b" - integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g== - -"@babel/parser@^7.8.3", "@babel/parser@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.4.tgz#d1dbe64691d60358a974295fa53da074dd2ce8e8" - integrity sha512-0fKu/QqildpXmPVaRBoXOlyBb3MC+J0A66x97qEfLOMkn3u6nfY5esWogQwi/K0BjASYy4DbnsEWnpNL6qT5Mw== - -"@babel/parser@^7.8.6", "@babel/parser@^7.9.6": +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.8.6", "@babel/parser@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.6.tgz#3b1bbb30dabe600cd72db58720998376ff653bc7" integrity sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q== "@babel/plugin-external-helpers@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.2.0.tgz#7f4cb7dee651cd380d2034847d914288467a6be4" - integrity sha512-QFmtcCShFkyAsNtdCM3lJPmRe1iB+vPZymlB4LnDIKEBj2yKQLQKtoxXxJ8ePT5fwMl4QGg303p4mB0UsSI2/g== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b" + integrity sha512-mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-proposal-async-generator-functions@^7.8.3": version "7.8.3" @@ -640,15 +297,7 @@ "@babel/helper-remap-async-to-generator" "^7.8.3" "@babel/plugin-syntax-async-generators" "^7.8.0" -"@babel/plugin-proposal-class-properties@^7.0.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.0.tgz#272636bc0fa19a0bc46e601ec78136a173ea36cd" - integrity sha512-wNHxLkEKTQ2ay0tnsam2z7fGZUi+05ziDJflEt3AZTP3oXLKHJp9HqhfroB/vdMvt3sda9fAbq7FsG8QPDrZBg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.3.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-proposal-class-properties@^7.7.0": +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.7.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== @@ -657,13 +306,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-proposal-decorators@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.6.0.tgz#6659d2572a17d70abd68123e89a12a43d90aa30c" - integrity sha512-ZSyYw9trQI50sES6YxREXKu+4b7MAg6Qx2cvyDDYjP2Hpzd3FleOUwC9cqn1+za8d0A2ZU8SHujxFao956efUg== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz#2156860ab65c5abf068c3f67042184041066543e" + integrity sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w== dependencies: - "@babel/helper-create-class-features-plugin" "^7.6.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-decorators" "^7.2.0" + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-decorators" "^7.8.3" "@babel/plugin-proposal-dynamic-import@^7.8.3": version "7.8.3" @@ -674,12 +323,12 @@ "@babel/plugin-syntax-dynamic-import" "^7.8.0" "@babel/plugin-proposal-export-default-from@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.2.0.tgz#737b0da44b9254b6152fe29bb99c64e5691f6f68" - integrity sha512-NVfNe7F6nsasG1FnvcFxh2FN0l04ZNe75qTOAVOILWPam0tw9a63RtT/Dab8dPjedZa4fTQaQ83yMMywF9OSug== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.8.3.tgz#4cb7c2fdeaed490b60d9bfd3dc8a20f81f9c2e7c" + integrity sha512-PYtv2S2OdCdp7GSPDg5ndGZFm9DmWFvuLoS5nBxZCgOBggluLnhTScspJxng96alHQzPyrrHxvC9/w4bFuspeA== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-export-default-from" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-export-default-from" "^7.8.3" "@babel/plugin-proposal-json-strings@^7.8.3": version "7.8.3" @@ -689,15 +338,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-json-strings" "^7.8.0" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.2.0.tgz#c3fda766187b2f2162657354407247a758ee9cf9" - integrity sha512-QXj/YjFuFJd68oDvoc1e8aqLr2wz7Kofzvp6Ekd/o7MWZl+nZ0/cpStxND+hlZ7DpRWAp7OmuyT2areZ2V3YUA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.2.0" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== @@ -713,15 +354,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-numeric-separator" "^7.8.3" -"@babel/plugin-proposal-object-rest-spread@^7.0.0": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.1.tgz#f69fb6a1ea6a4e1c503994a91d9cf76f3c4b36e8" - integrity sha512-Nmmv1+3LqxJu/V5jU9vJmxR/KIRWFk2qLHmbB56yRRRFhlaSuOVXscX3gUmhaKgUhzA3otOHVubbIEVYsZ0eZg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - -"@babel/plugin-proposal-object-rest-spread@^7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.9.6": +"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz#7a093586fcb18b08266eb1a7177da671ac575b63" integrity sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A== @@ -730,15 +363,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-transform-parameters" "^7.9.5" -"@babel/plugin-proposal-optional-catch-binding@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" - integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - -"@babel/plugin-proposal-optional-catch-binding@^7.8.3": +"@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== @@ -746,15 +371,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" -"@babel/plugin-proposal-optional-chaining@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.2.0.tgz#ae454f4c21c6c2ce8cb2397dc332ae8b420c5441" - integrity sha512-ea3Q6edZC/55wEBVZAEz42v528VulyO0eir+7uky/sT4XRcdkWJcFi1aPtitTlwUzGnECWJNExWww1SStt+yWw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-chaining" "^7.2.0" - -"@babel/plugin-proposal-optional-chaining@^7.9.0": +"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.9.0": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== @@ -778,46 +395,39 @@ "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-class-properties@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.2.0.tgz#23b3b7b9bcdabd73672a9149f728cd3be6214812" - integrity sha512-UxYaGXYQ7rrKJS/PxIKRkv3exi05oH7rokBAsmCSsCxz1sVPZ7Fu6FzKoGgUvmY+0YgSkYHgUoCh5R5bCNBQlw== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" + integrity sha512-UcAyQWg2bAN647Q+O811tG9MrJ38Z10jjhQdKNAL8fsyPzE3cCN/uT+f55cFVY4aGO4jqJAvmqsuY3GQDwAoXg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-decorators@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" - integrity sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA== +"@babel/plugin-syntax-decorators@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz#8d2c15a9f1af624b0025f961682a9d53d3001bda" + integrity sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-dynamic-import@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" - integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0": +"@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.2.0.tgz#edd83b7adc2e0d059e2467ca96c650ab6d2f3820" - integrity sha512-c7nqUnNST97BWPtoe+Ssi+fJukc9P9/JMZ71IOMNQWza2E+Psrd46N6AEvtw6pqK+gt7ChjXyrw4SPDO79f3Lw== +"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.8.3.tgz#f1e55ce850091442af4ba9c2550106035b29d678" + integrity sha512-a1qnnsr73KLNIQcQlcQ4ZHxqqfBKM6iNQZW2OMTyxNbA2WC7SHWHtGVpFzWtQAuS2pspkWVzdEBXXx8Ik0Za4w== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" - integrity sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg== +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f" + integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-json-strings@^7.8.0": version "7.8.3" @@ -826,19 +436,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" - integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" + integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.2.0.tgz#f75083dfd5ade73e783db729bbd87e7b9efb7624" - integrity sha512-lRCEaKE+LTxDQtgbYajI04ddt6WW0WJq57xqkAZ+s11h4YgfRHhVA/Y2VhfPzzFD4qeLHWg32DMp9HooY4Kqlg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": version "7.8.3" @@ -854,27 +457,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" - integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-object-rest-spread@^7.8.0": +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" - integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-catch-binding@^7.8.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" @@ -882,13 +471,6 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-chaining@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.2.0.tgz#a59d6ae8c167e7608eaa443fda9fa8fa6bf21dff" - integrity sha512-HtGCtvp5Uq/jH/WNUPkK6b7rufnCPLLlDAFN7cmACoIjaOOiXxUt3SswU5loHqrhtqTsa/WoLQ1OQ1AGuZqaWA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-chaining@^7.8.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" @@ -910,30 +492,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-arrow-functions@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" - integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-arrow-functions@^7.8.3": +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-async-to-generator@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz#68b8a438663e88519e65b776f8938f3445b1a2ff" - integrity sha512-CEHzg4g5UraReozI9D4fblBYABs7IM6UerAVG7EJVrTLC5keh00aEuLUT+O40+mJCEzaXkYfTCUKIyeDfMOFFQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - -"@babel/plugin-transform-async-to-generator@^7.8.3": +"@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== @@ -942,29 +508,14 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-remap-async-to-generator" "^7.8.3" -"@babel/plugin-transform-block-scoped-functions@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" - integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-block-scoped-functions@^7.8.3": +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-block-scoping@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz#f17c49d91eedbcdf5dd50597d16f5f2f770132d4" - integrity sha512-vDTgf19ZEV6mx35yiPJe4fS02mPQUUcBNwWQSZFXSzTSbsJFQvHt7DqyS3LK8oOWALFOsJ+8bbqBgkirZteD5Q== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - lodash "^4.17.10" - -"@babel/plugin-transform-block-scoping@^7.8.3": +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== @@ -972,21 +523,7 @@ "@babel/helper-plugin-utils" "^7.8.3" lodash "^4.17.13" -"@babel/plugin-transform-classes@^7.0.0": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz#6c90542f210ee975aa2aa8c8b5af7fa73a126953" - integrity sha512-gEZvgTy1VtcDOaQty1l10T3jQmJKlNVxLDCs+3rCVPr6nMkODLELxViq5X9l+rfxbie3XrfrMCYYY6eX3aOcOQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.1.0" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.0.0" - globals "^11.1.0" - -"@babel/plugin-transform-classes@^7.9.5": +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c" integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== @@ -1000,28 +537,14 @@ "@babel/helper-split-export-declaration" "^7.8.3" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" - integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-computed-properties@^7.8.3": +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b" integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-destructuring@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.2.0.tgz#e75269b4b7889ec3a332cd0d0c8cff8fed0dc6f3" - integrity sha512-coVO2Ayv7g0qdDbrNiadE4bU7lvCd9H539m2gMknyVjjMdwF/iCOM7R+E8PkntoqLkltO0rk+3axhpp/0v68VQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-destructuring@^7.9.5": +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50" integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== @@ -1043,15 +566,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" - integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-exponentiation-operator@^7.8.3": +"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== @@ -1060,36 +575,21 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-flow-strip-types@^7.0.0": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.2.3.tgz#e3ac2a594948454e7431c7db33e1d02d51b5cd69" - integrity sha512-xnt7UIk9GYZRitqCnsVMjQK1O2eKZwFB3CvvHjf5SGx6K6vr/MScCKQDnf1DxRaj501e3pXjti+inbSXX2ZUoQ== + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" + integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-flow" "^7.8.3" -"@babel/plugin-transform-for-of@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9" - integrity sha512-Kz7Mt0SsV2tQk6jG5bBv5phVbkd0gd27SgYD4hH1aLMJRchM0dzHaXvrWhVZ+WxAlDoAKZ7Uy3jVTW2mKXQ1WQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-for-of@^7.9.0": +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.9.0": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-function-name@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a" - integrity sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-function-name@^7.8.3": +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b" integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== @@ -1097,28 +597,14 @@ "@babel/helper-function-name" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-literals@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" - integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-literals@^7.8.3": +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-member-expression-literals@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" - integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-member-expression-literals@^7.8.3": +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== @@ -1134,16 +620,7 @@ "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-commonjs@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz#c4f1933f5991d5145e9cfad1dfd848ea1727f404" - integrity sha512-V6y0uaUQrQPXUrmj+hgnks8va2L0zcZymeU7TtWEgdRLNkceafKXEduv7QzgQAE4lT+suwooG9dC7LFhdRAbVQ== - dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - -"@babel/plugin-transform-modules-commonjs@^7.9.6": +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz#64b7474a4279ee588cacd1906695ca721687c277" integrity sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ== @@ -1186,21 +663,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-object-assign@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.2.0.tgz#6fdeea42be17040f119e38e23ea0f49f31968bde" - integrity sha512-nmE55cZBPFgUktbF2OuoZgPRadfxosLOpSgzEPYotKSls9J4pEPcembi8r78RU37Rph6UApCpNmsQA4QMWK9Ng== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.8.3.tgz#dc3b8dd50ef03837868a37b7df791f64f288538e" + integrity sha512-i3LuN8tPDqUCRFu3dkzF2r1Nx0jp4scxtm7JxtIqI9he9Vk20YD+/zshdzR9JLsoBMlJlNR82a62vQExNEVx/Q== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-object-super@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" - integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.1.0" - -"@babel/plugin-transform-object-super@^7.8.3": +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== @@ -1208,16 +677,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-replace-supers" "^7.8.3" -"@babel/plugin-transform-parameters@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz#0d5ad15dc805e2ea866df4dd6682bfe76d1408c2" - integrity sha512-kB9+hhUidIgUoBQ0MsxMewhzr8i60nMa2KgeJKQWYrqQpqcBYtnpR+JgkadZVZoaEZ/eKu9mclFaVwhRpLNSzA== - dependencies: - "@babel/helper-call-delegate" "^7.1.0" - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-parameters@^7.9.5": +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795" integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== @@ -1225,14 +685,7 @@ "@babel/helper-get-function-arity" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-property-literals@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" - integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-property-literals@^7.8.3": +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263" integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== @@ -1247,37 +700,31 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-react-display-name@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0" - integrity sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A== + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" + integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-react-jsx-source@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz#20c8c60f0140f5dd3cd63418d452801cf3f7180f" - integrity sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g== + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" + integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" "@babel/plugin-transform-react-jsx@^7.0.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" - integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg== + version "7.9.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f" + integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw== dependencies: - "@babel/helper-builder-react-jsx" "^7.3.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" + "@babel/helper-builder-react-jsx" "^7.9.0" + "@babel/helper-builder-react-jsx-experimental" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-regenerator@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1" - integrity sha512-sj2qzsEx8KDVv1QuJc/dEfilkg3RRPvPYx/VnKLtItVQRWt1Wqf5eVCOLZm29CiGFfYYsA3VPjfizTCV0S0Dlw== - dependencies: - regenerator-transform "^0.13.3" - -"@babel/plugin-transform-regenerator@^7.8.7": +"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.8.7": version "7.8.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== @@ -1292,52 +739,30 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-runtime@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.2.0.tgz#566bc43f7d0aedc880eaddbd29168d0f248966ea" - integrity sha512-jIgkljDdq4RYDnJyQsiWbdvGeei/0MOTtSHKO/rfbd/mXBxNpdlulMx49L0HQ4pug1fXannxoqCI+fYSle9eSw== + version "7.9.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.6.tgz#3ba804438ad0d880a17bca5eaa0cdf1edeedb2fd" + integrity sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w== dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" resolve "^1.8.1" semver "^5.5.1" -"@babel/plugin-transform-shorthand-properties@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" - integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-shorthand-properties@^7.8.3": +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-spread@^7.0.0": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" - integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-spread@^7.8.3": +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-sticky-regex@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" - integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.0.0" - -"@babel/plugin-transform-sticky-regex@^7.8.3": +"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== @@ -1345,15 +770,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-regex" "^7.8.3" -"@babel/plugin-transform-template-literals@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b" - integrity sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-template-literals@^7.8.3": +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== @@ -1377,16 +794,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-typescript" "^7.8.3" -"@babel/plugin-transform-unicode-regex@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b" - integrity sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.0.0" - regexpu-core "^4.1.3" - -"@babel/plugin-transform-unicode-regex@^7.8.3": +"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== @@ -1472,17 +880,15 @@ esutils "^2.0.2" "@babel/register@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0.tgz#fa634bae1bfa429f60615b754fc1f1d745edd827" - integrity sha512-f/+CRmaCe7rVEvcvPvxeA8j5aJhHC3aJie7YuqcMDhUOuyWLA7J/aNrTaHIzoWPEhpHA54mec4Mm8fv8KBlv3g== + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.9.0.tgz#02464ede57548bddbb5e9f705d263b7c3f43d48b" + integrity sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q== dependencies: - core-js "^2.5.7" - find-cache-dir "^1.0.0" - home-or-tmp "^3.0.0" - lodash "^4.17.10" - mkdirp "^0.5.1" + find-cache-dir "^2.0.0" + lodash "^4.17.13" + make-dir "^2.1.0" pirates "^4.0.0" - source-map-support "^0.5.9" + source-map-support "^0.5.16" "@babel/runtime-corejs3@^7.8.3": version "7.9.6" @@ -1492,90 +898,14 @@ core-js-pure "^3.0.0" regenerator-runtime "^0.13.4" -"@babel/runtime@7.3.4": - version "7.3.4" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.4.tgz#73d12ba819e365fcf7fd152aed56d6df97d21c83" - integrity sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g== - dependencies: - regenerator-runtime "^0.12.0" - -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.1.tgz#574b03e8e8a9898eaf4a872a92ea20b7846f6f2a" - integrity sha512-7jGW8ppV0ant637pIqAcFfQDDH1orEPGJb8aXfUozuCU3QqX7rX4DA8iwrbPrR1hcH0FTTHz47yQnk+bl5xHQA== - dependencies: - regenerator-runtime "^0.12.0" - -"@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f" integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.4.2", "@babel/runtime@^7.4.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.5.tgz#74fba56d35efbeca444091c7850ccd494fd2f132" - integrity sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/runtime@^7.5.5": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.2.tgz#c3d6e41b304ef10dcf13777a33e7694ec4a9a6dd" - integrity sha512-EXxN64agfUqqIGeEjI5dL5z0Sw0ZwWo1mLTi4mQowCZ42O59b7DRpZAnTC6OqdF28wMBMFKNb/4uFGrVaigSpg== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/runtime@^7.6.2": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz#d79f5a2040f7caa24d53e563aad49cbc05581308" - integrity sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/runtime@^7.6.3": - version "7.7.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a" - integrity sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/runtime@^7.7.2": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" - integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907" - integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.2.2" - "@babel/types" "^7.2.2" - -"@babel/template@^7.4.0", "@babel/template@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" - integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/template@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz#e02ad04fe262a657809327f578056ca15fd4d1b8" - integrity sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/parser" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/template@^7.8.6": +"@babel/template@^7.0.0", "@babel/template@^7.4.0", "@babel/template@^7.8.3", "@babel/template@^7.8.6": version "7.8.6" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== @@ -1584,67 +914,7 @@ "@babel/parser" "^7.8.6" "@babel/types" "^7.8.6" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2", "@babel/traverse@^7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8" - integrity sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.2.2" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.0.0" - "@babel/parser" "^7.2.3" - "@babel/types" "^7.2.2" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.10" - -"@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.4.tgz#0776f038f6d78361860b6823887d4f3937133fe8" - integrity sha512-Gw6qqkw/e6AGzlyj9KnkabJX7VcubqPtkUQVAwkc0wUMldr3A/hezNB3Rc5eIvId95iSGkGIOe5hh1kMKf951A== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.4.4" - "@babel/types" "^7.4.4" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.11" - -"@babel/traverse@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" - integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/types" "^7.4.4" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.11" - -"@babel/traverse@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb" - integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.5.5" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.5.5" - "@babel/types" "^7.5.5" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.13" - -"@babel/traverse@^7.8.3", "@babel/traverse@^7.9.6": +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.8.3", "@babel/traverse@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.6.tgz#5540d7577697bf619cc57b92aa0f1c231a94f442" integrity sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg== @@ -1659,58 +929,7 @@ globals "^11.1.0" lodash "^4.17.13" -"@babel/traverse@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.4.tgz#f0845822365f9d5b0e312ed3959d3f827f869e3c" - integrity sha512-NGLJPZwnVEyBPLI+bl9y9aSnxMhsKz42so7ApAv9D+b4vAFPpY013FTS9LdKxcABoIYFU52HcYga1pPlx454mg== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.8.4" - "@babel/helper-function-name" "^7.8.3" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/parser" "^7.8.4" - "@babel/types" "^7.8.3" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.13" - -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.0.tgz#61dc0b336a93badc02bf5f69c4cd8e1353f2ffc0" - integrity sha512-QkFPw68QqWU1/RVPyBe8SO7lXbPfjtqAxRYQKpFpaB8yMq7X2qAqfwK5LKoQufEkSmO5NQ70O6Kc3Afk03RwXw== - dependencies: - esutils "^2.0.2" - lodash "^4.17.10" - to-fast-properties "^2.0.0" - -"@babel/types@^7.4.0", "@babel/types@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" - integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ== - dependencies: - esutils "^2.0.2" - lodash "^4.17.11" - to-fast-properties "^2.0.0" - -"@babel/types@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a" - integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw== - dependencies: - esutils "^2.0.2" - lodash "^4.17.13" - to-fast-properties "^2.0.0" - -"@babel/types@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" - integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg== - dependencies: - esutils "^2.0.2" - lodash "^4.17.13" - to-fast-properties "^2.0.0" - -"@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5", "@babel/types@^7.9.6": +"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5", "@babel/types@^7.9.6": version "7.9.6" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7" integrity sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA== @@ -1720,9 +939,9 @@ to-fast-properties "^2.0.0" "@cnakazawa/watch@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" - integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== dependencies: exec-sh "^0.3.2" minimist "^1.2.0" @@ -1845,63 +1064,44 @@ resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924" integrity sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw== -"@emotion/weak-memoize@0.2.4": - version "0.2.4" - resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.4.tgz#622a72bebd1e3f48d921563b4b60a762295a81fc" - integrity sha512-6PYY5DVdAY1ifaQW6XYTnOMihmBVT27elqSjEoodchsGjzYlEsTQMcEhSud99kVawatyTZRTiVkJ/c6lwbQ7nA== - "@emotion/weak-memoize@0.2.5": version "0.2.5" resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== "@hapi/address@2.x.x": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.0.0.tgz#9f05469c88cb2fd3dcd624776b54ee95c312126a" - integrity sha512-mV6T0IYqb0xL1UALPFplXYQmR0twnXG0M6jUswpquqT2sD12BOiCiLy3EvMp/Fy7s3DZElC4/aPjEjo2jeZpvw== + version "2.1.4" + resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" + integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ== -"@hapi/hoek@6.x.x": - version "6.2.4" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-6.2.4.tgz#4b95fbaccbfba90185690890bdf1a2fbbda10595" - integrity sha512-HOJ20Kc93DkDVvjwHyHawPwPkX44sIrbXazAUDiUXaY2R9JwQGo2PhFfnQtdrsIe4igjG2fPgMra7NYw7qhy0A== +"@hapi/bourne@1.x.x": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" + integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA== -"@hapi/hoek@8.x.x": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.1.0.tgz#8f7627b23ed9bf67088fc7f9669e48c63ad421bd" - integrity sha512-b1J4jxYnW+n6lC91V6Pqg9imP9BZq0HNCeM+3sbXg05rQsE9cGYrKFpZjyztVesGmNRE6R+QaEoWGATeIiUVjA== +"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": + version "8.5.1" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" + integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow== "@hapi/joi@^15.0.3": - version "15.1.0" - resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.0.tgz#940cb749b5c55c26ab3b34ce362e82b6162c8e7a" - integrity sha512-n6kaRQO8S+kepUTbXL9O/UOL788Odqs38/VOfoCrATDtTvyfiO3fgjlSRaNkHabpTLgM7qru9ifqXlXbXk8SeQ== + version "15.1.1" + resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7" + integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ== dependencies: "@hapi/address" "2.x.x" - "@hapi/hoek" "6.x.x" - "@hapi/marker" "1.x.x" + "@hapi/bourne" "1.x.x" + "@hapi/hoek" "8.x.x" "@hapi/topo" "3.x.x" -"@hapi/marker@1.x.x": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@hapi/marker/-/marker-1.0.0.tgz#65b0b2b01d1be06304886ce9b4b77b1bfb21a769" - integrity sha512-JOfdekTXnJexfE8PyhZFyHvHjt81rBFSAbTIRAhF2vv/2Y1JzoKsGqxH/GpZJoF7aEfYok8JVcAHmSz1gkBieA== - "@hapi/topo@3.x.x": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.2.tgz#57cc1317be1a8c5f47c124f9b0e3c49cd78424d2" - integrity sha512-r+aumOqJ5QbD6aLPJWqVjMAPsx5pZKz+F5yPqXZ/WWG9JTtHbQqlzrJoknJ0iJxLj9vlXtmpSdjlkszseeG8OA== + version "3.1.6" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" + integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ== dependencies: - "@hapi/hoek" "8.x.x" + "@hapi/hoek" "^8.3.0" -"@jest/console@^24.7.1": - version "24.7.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" - integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== - dependencies: - "@jest/source-map" "^24.3.0" - chalk "^2.0.1" - slash "^2.0.0" - -"@jest/console@^24.9.0": +"@jest/console@^24.7.1", "@jest/console@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== @@ -1954,15 +1154,6 @@ "@jest/types" "^24.9.0" jest-mock "^24.9.0" -"@jest/fake-timers@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" - integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw== - dependencies: - "@jest/types" "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" - "@jest/fake-timers@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" @@ -1999,16 +1190,7 @@ source-map "^0.6.0" string-length "^2.0.0" -"@jest/source-map@^24.3.0": - version "24.3.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" - integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.1.15" - source-map "^0.6.0" - -"@jest/source-map@^24.9.0": +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== @@ -2017,15 +1199,6 @@ graceful-fs "^4.1.15" source-map "^0.6.0" -"@jest/test-result@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" - integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng== - dependencies: - "@jest/console" "^24.7.1" - "@jest/types" "^24.8.0" - "@types/istanbul-lib-coverage" "^2.0.0" - "@jest/test-result@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" @@ -2067,15 +1240,6 @@ source-map "^0.6.1" write-file-atomic "2.4.1" -"@jest/types@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" - integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^12.0.9" - "@jest/types@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" @@ -2441,15 +1605,14 @@ sql-escape-string "^1.1.0" "@reach/router@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.2.1.tgz#34ae3541a5ac44fa7796e5506a5d7274a162be4e" - integrity sha512-kTaX08X4g27tzIFQGRukaHmNbtMYDS3LEWIS8+l6OayGIw6Oyo1HIF/JzeuR2FoF9z6oV+x/wJSVSq4v8tcUGQ== + version "1.3.3" + resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.3.tgz#58162860dce6c9449d49be86b0561b5ef46d80db" + integrity sha512-gOIAiFhWdiVGSVjukKeNKkCRBLmnORoTPyBihI/jLunICPgxdP30DroAvPQuf1eVfQbfGJQDJkwhJXsNPMnVWw== dependencies: - create-react-context "^0.2.1" + create-react-context "0.3.0" invariant "^2.2.3" prop-types "^15.6.1" react-lifecycles-compat "^3.0.4" - warning "^3.0.0" "@react-native-community/art@^1.1.2", "@react-native-community/art@^1.2.0": version "1.2.0" @@ -2461,9 +1624,9 @@ prop-types "^15.7.2" "@react-native-community/async-storage@^1.9.0": - version "1.10.0" - resolved "https://registry.yarnpkg.com/@react-native-community/async-storage/-/async-storage-1.10.0.tgz#fd6a9737f3c227ef4e28858b8201ad793a022296" - integrity sha512-kPJwhUpBKLXGrBnUjx0JVSJvSEl5nPO+puJ3Uy9pMvika9uWeniRGZPQjUWWQimU5M7xhQ41d5I1OP82Q3Xx9A== + version "1.10.3" + resolved "https://registry.yarnpkg.com/@react-native-community/async-storage/-/async-storage-1.10.3.tgz#6974404a903a317f462bd0ac3fafa7c0291679df" + integrity sha512-f3G3dX5aoFZZC1G7alnaFmlTpXn8HPfpR8H3Hf7wbbQrQvZmW7mW2fXHv/oj99FNPd228bneL3GOnjGe2Epkww== dependencies: deep-assign "^3.0.0" @@ -2472,19 +1635,19 @@ resolved "https://registry.yarnpkg.com/@react-native-community/cameraroll/-/cameraroll-1.6.0.tgz#2a4f9318fb53b5b2576269085c60ec7aced764c8" integrity sha512-0P6IDqFlpWmuqLBFvm4WsQ6QR6E7WDadtFQiug/zU4Ieu6wcz70pgbB6yG3uQwGqwQf6HgFq95Z7+SHV3k5hpw== -"@react-native-community/cli-debugger-ui@^4.8.0": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-4.8.0.tgz#9a6419b29be69422e0056bbb1874775750351d22" - integrity sha512-Eq9lHINDXiBAwmFRCMN8jeKk6FTDnTxAfITkjPUNNTj7q3K+fH/oyOMJjxbIZbryIJY6g+g/ln6vsS2WzISNYQ== +"@react-native-community/cli-debugger-ui@^4.9.0": + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-4.9.0.tgz#4177764ba69243c97aa26829d59d9501acb2bd71" + integrity sha512-fBFGamHm4VUrDqkBGnsrwQL8OC6Om7K6EBQb4xj0nWekpXt1HSa3ScylYHTTWwYcpRf9htGMRGiv4dQDY/odAw== dependencies: serve-static "^1.13.1" "@react-native-community/cli-platform-android@^4.5.1": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-4.8.0.tgz#f495b227e82c75c676dfa53c0dac33bf438b50b8" - integrity sha512-sYa4K0t0VL99j+bloHTL2BwXFJpHCdPN4SRTm9/wfxuWDkiPFvo9TaX0adh7GbUoKalLq2k0z+iEpHMN3HtZiw== + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-4.9.0.tgz#12ba32875afca81202e1dbf0005f022fa9158352" + integrity sha512-Tw2rQ84zXl5BGZT3rWmDXXUtkmHr73qa/qaP2WMemHTM28boXBdzkkVCnJMdCLZnCphOcpikYsBQALgqFKWOeQ== dependencies: - "@react-native-community/cli-tools" "^4.8.0" + "@react-native-community/cli-tools" "^4.9.0" chalk "^3.0.0" execa "^1.0.0" fs-extra "^8.1.0" @@ -2496,11 +1659,11 @@ xmldoc "^1.1.2" "@react-native-community/cli-platform-ios@^4.5.0": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-4.8.0.tgz#bfa20f398837256ee943192930d1f94fa92f521d" - integrity sha512-UZyc/bwG23HKsvHVmDrlZulIRMK8Jl7njN9oCO0pohOYxRJIwueRP7A8IPCwVVohmSEuNmhCWpMIIxTAo7zzwg== + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-4.9.0.tgz#211ca9cd3976fbbb41406c0a846e445cc04c773c" + integrity sha512-8BWe3XM1vKS2/BXXDL5gbD/5rA/u34Irs0Ublrx1JSGqv83g7T9V2DlBMR5xYRbhBWnWnGXVhsN1ckxlkXh8PA== dependencies: - "@react-native-community/cli-tools" "^4.8.0" + "@react-native-community/cli-tools" "^4.9.0" chalk "^3.0.0" glob "^7.1.3" js-yaml "^3.13.1" @@ -2508,10 +1671,24 @@ plist "^3.0.1" xcode "^2.0.0" -"@react-native-community/cli-tools@^4.8.0": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-4.8.0.tgz#144a029c741c2cf40a7f9c059819ce9a69e7f1e3" - integrity sha512-voXGruhYyyhCbEYM2uZ54dMZcBgXFFcQxVK3nLwJDG9nSQGObZInj9Zf76ix5qGnvKKGWIGUcbmRhyLpAzTXuQ== +"@react-native-community/cli-server-api@^4.9.0": + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-4.9.0.tgz#503f50331c6e2cc8c5fcf6b693170e3a3a669d1a" + integrity sha512-lKBIXJjFLyu4+6Vhhj/QzD41aQGkVi8xWLqTYCgi26d61kjLuuZs0Xer02DPJK3+YADKExVdWrJzVHfJ7zYlTA== + dependencies: + "@react-native-community/cli-debugger-ui" "^4.9.0" + "@react-native-community/cli-tools" "^4.9.0" + compression "^1.7.1" + connect "^3.6.5" + errorhandler "^1.5.0" + pretty-format "^25.1.0" + serve-static "^1.13.1" + ws "^1.1.0" + +"@react-native-community/cli-tools@^4.9.0": + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-4.9.0.tgz#d8fd0326cc2fcaeb8c920baf24b68b63c8164fa2" + integrity sha512-vCeYkJ3n/EIaW3lAfznzojMffGxYhCUzwZzwBuC3+O+gYxkymdpletqNYLLEa04DzJr174mxgbgBw8g5IP91yA== dependencies: chalk "^3.0.0" lodash "^4.17.15" @@ -2520,29 +1697,27 @@ open "^6.2.0" shell-quote "1.6.1" -"@react-native-community/cli-types@^4.8.0": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-4.8.0.tgz#d929f0d47ecdc69027de02a89d17f0ece9ee3ca2" - integrity sha512-gkjQdmzskQJdddVNRBATa7rWMbamD2j4B7w9shbg20tIBYoh/tgHdkgiLqZQSfBKa8HqrAkeCJTYaT1oV4oReQ== +"@react-native-community/cli-types@^4.9.0": + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-4.9.0.tgz#4c80b5f3789f2d3ee744e4fbb01ce839d8399ac3" + integrity sha512-Sjun3LHuuuA6G9NIiyiqolNA7NP0CBGhbQA7twslJi3VaE1kj7OdBRCzpPtIYwK8eFWv3CEc/Qh+CoAw83Jp8A== "@react-native-community/cli@^4.5.1": - version "4.8.0" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-4.8.0.tgz#b9e3916ceb0fe6bcbc2943fea2caa0ca3739d080" - integrity sha512-z4qHfxtoTxKhQ0V9B02a82IxBkEBH5FfKnaJn9WL5Tf4SmE91ER8ZNVEWNr97S4TCFVYDrpM7iKnrYpNi/ciYQ== + version "4.9.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-4.9.0.tgz#3525d831087e084861ca484569ebfb9b1a63faac" + integrity sha512-Aai8Tan2nJWbtJIzEMe/BrbbGFAAdusgXZ5/NB1k5oFUS6iXvW18+59ssC8FR2qGPbOLBg87oDn4Pca2u4CTlQ== dependencies: "@hapi/joi" "^15.0.3" - "@react-native-community/cli-debugger-ui" "^4.8.0" - "@react-native-community/cli-tools" "^4.8.0" - "@react-native-community/cli-types" "^4.8.0" + "@react-native-community/cli-debugger-ui" "^4.9.0" + "@react-native-community/cli-server-api" "^4.9.0" + "@react-native-community/cli-tools" "^4.9.0" + "@react-native-community/cli-types" "^4.9.0" chalk "^3.0.0" command-exists "^1.2.8" commander "^2.19.0" - compression "^1.7.1" - connect "^3.6.5" cosmiconfig "^5.1.0" deepmerge "^3.2.0" envinfo "^7.1.0" - errorhandler "^1.5.0" execa "^1.0.0" find-up "^4.1.0" fs-extra "^8.1.0" @@ -2555,19 +1730,17 @@ metro-config "^0.58.0" metro-core "^0.58.0" metro-react-native-babel-transformer "^0.58.0" + metro-resolver "^0.58.0" minimist "^1.2.0" mkdirp "^0.5.1" node-stream-zip "^1.9.1" - open "^6.2.0" ora "^3.4.0" pretty-format "^25.2.0" semver "^6.3.0" serve-static "^1.13.1" - shell-quote "1.6.1" strip-ansi "^5.2.0" sudo-prompt "^9.0.0" wcwidth "^1.0.1" - ws "^1.1.0" "@react-native-community/datetimepicker@2.3.2": version "2.3.2" @@ -2576,33 +1749,62 @@ dependencies: invariant "^2.2.4" +"@react-native-community/masked-view@^0.1.10": + version "0.1.10" + resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.10.tgz#5dda643e19e587793bc2034dd9bf7398ad43d401" + integrity sha512-rk4sWFsmtOw8oyx8SD3KSvawwaK7gRBSEIy2TAwURyGt+3TizssXP1r8nx3zY+R7v2vYYHXZ+k2/GULAT/bcaQ== + "@react-native-community/slider@2.0.9": version "2.0.9" resolved "https://registry.yarnpkg.com/@react-native-community/slider/-/slider-2.0.9.tgz#bf74045c96f1fb22e3ec961e321300c230c63990" integrity sha512-6GHUKXxiDSs75VZQRa6B+nxo8rqpIEcegZ1iCSQG4aW2oSVepceqDol+0y3/KaBt5WMpD4KybLw8ZZqkT6olaQ== "@react-native-community/viewpager@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@react-native-community/viewpager/-/viewpager-2.0.1.tgz#892e2148c8bca4ff157280e4be81d88be3264efc" - integrity sha512-fTTpO6xdVrTAAWbC1B2TQbxOkzDtvE9YfovDPYpi+S9oWmT06Eh8pv1Umd/7R/ewuLy9i2fzBnAu5WY+Di8OwA== + version "2.0.2" + resolved "https://registry.yarnpkg.com/@react-native-community/viewpager/-/viewpager-2.0.2.tgz#622b190294b1310c4825c98daeaee1c8443f7124" + integrity sha512-CKVhIZdX/Cmb80muog8sKpi5vM8npwFp4tx4Dj1IvTBidZweuO22+VH2rDOj7E0LzdV9IYRJ4FGBwcPBD2qUrQ== -"@react-navigation/core@^3.7.6": - version "3.7.6" - resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-3.7.6.tgz#e0244fcdc22937825b252197f70308bbe5709c58" - integrity sha512-loYFIn0Boy7C+vYxwcqsBVRFRO1EizZJErdutE6/3Jw6dbzz3Bnzupbw5hckZNB16GckacMwGoepZNIK51IIcg== +"@react-navigation/core@^5.9.0": + version "5.9.0" + resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-5.9.0.tgz#013bcfad898d8cf3bfb7cab3bf796afb660285a9" + integrity sha512-1e0vlM0yAAYyy+AKC9oVtwqKfTHl+1ZXJRz16toP07Y6N5cWB6ZsTJIhiL3CHC6d2vBLYSkJca9ID+GB2VGi8Q== dependencies: - hoist-non-react-statics "^3.3.2" - path-to-regexp "^1.8.0" - query-string "^6.11.1" + "@react-navigation/routers" "^5.4.7" + escape-string-regexp "^4.0.0" + nanoid "^3.1.5" + query-string "^6.12.1" react-is "^16.13.0" + use-subscription "^1.4.0" -"@react-navigation/native@^3.7.13": - version "3.7.13" - resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-3.7.13.tgz#5fdf879d5af40fb5bf751b6d932dd30656c9991e" - integrity sha512-M6v1bLz0WbQmlPKF3WKBEZDGQ3CaqmzQULGs7XWtQe+f03VEbeX+kCkr/J6hw+rsgAy9Nwr4mGCPPQhF2pa7Yw== +"@react-navigation/drawer@5.8.1": + version "5.8.1" + resolved "https://registry.yarnpkg.com/@react-navigation/drawer/-/drawer-5.8.1.tgz#6679f309f2758920f17cca3aa253fc7b3fc0c85a" + integrity sha512-V8hu0T9ckHRt3oAsAw4TTTu3D7FD+QNqFU8EcwbOPvOouXzCB8QyKQKjvQHYYlf5NRWTLUEeWMlA/i/NQgESJg== dependencies: - hoist-non-react-statics "^3.3.2" - react-native-safe-area-view "^0.14.9" + color "^3.1.2" + react-native-iphone-x-helper "^1.2.1" + +"@react-navigation/native@5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-5.5.0.tgz#04bc9a09f9c3fd6c704f56d979772a80327f5c12" + integrity sha512-pRNUg/TzTH+Me/lAguMhRQc3EbyJlTvmUFChAM+s5sOFMtEin+t9jcOEJhEdRtepc6xXQGKipuNA9GFDj2ezzA== + dependencies: + "@react-navigation/core" "^5.9.0" + +"@react-navigation/routers@^5.4.7": + version "5.4.7" + resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-5.4.7.tgz#05f85a099d7ee5677edeced98959e4b87562e3b5" + integrity sha512-J+lQYDbEsyhAjcPpWY6ZJYEkGiZcPX62hNtySruShjbIEnI9gm3rC+BHdcrP/lufeWxWGFhI8CN7NSJGgP/Nmg== + dependencies: + nanoid "^3.1.5" + +"@react-navigation/stack@^5.3.9": + version "5.3.9" + resolved "https://registry.yarnpkg.com/@react-navigation/stack/-/stack-5.3.9.tgz#0122e1f231ed16caac18479637c0a806e37c3048" + integrity sha512-Hcp44zILnlgtl9ZsSroMUPpU2iZNZWml2FcGmF69SvZXP3PT/bfp0pRzshv31oSEnlLvwqYmHYwUQnFwNAlLmg== + dependencies: + color "^3.1.2" + react-native-iphone-x-helper "^1.2.1" "@redux-saga/core@^1.1.3": version "1.1.3" @@ -3049,9 +2251,9 @@ integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== "@types/babel__core@^7.1.0": - version "7.1.1" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.1.tgz#ce9a9e5d92b7031421e1d0d74ae59f572ba48be6" - integrity sha512-+hjBtgcFPYyCTo0A15+nxrCVJL7aC6Acg87TXd5OW3QhHswdrOLoles+ldL2Uk8q++7yIfl4tURtztccdeeyOw== + version "7.1.7" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.7.tgz#1dacad8840364a57c98d0dd4855c6dd3752c6b89" + integrity sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -3060,9 +2262,9 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.0.2" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" - integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ== + version "7.6.1" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" + integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew== dependencies: "@babel/types" "^7.0.0" @@ -3075,9 +2277,9 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.6" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz#328dd1a8fc4cfe3c8458be9477b219ea158fd7b2" - integrity sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw== + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.11.tgz#1ae3010e8bf8851d324878b42acec71986486d18" + integrity sha512-ddHK5icION5U6q11+tV2f9Mo6CZVuT8GJKld2q9LqHSZbvLbH34Kcu2yFGckZut453+eQU6btIA3RihmnRgI+Q== dependencies: "@babel/types" "^7.3.0" @@ -3106,9 +2308,9 @@ integrity sha512-7TUK/k2/QGpEAv/BCwSHlYu3NXZhQ9ZwBYpzr9tjlPIL2C5BeGhH3DmVavRx3ZNyELX5TLC91JTz/cen6AAtIQ== "@types/history@*": - version "4.7.5" - resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.5.tgz#527d20ef68571a4af02ed74350164e7a67544860" - integrity sha512-wLD/Aq2VggCJXSjxEwrMafIP51Z+13H78nXIX0ABEuIGhmB5sNGbR113MOKo+yfw+RDo1ZU3DM6yfnnRF/+ouw== + version "4.7.6" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.6.tgz#ed8fc802c45b8e8f54419c2d054e55c9ea344356" + integrity sha512-GRTZLeLJ8ia00ZH8mxMO8t0aC9M1N9bN461Z2eaRurJo6Fpa+utgCwLzI4jQHcrdzuzp5WPN9jRwpsCQ1VhJ5w== "@types/html-minifier-terser@^5.0.0": version "5.1.0" @@ -3121,21 +2323,21 @@ integrity sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w== "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" - integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.2.tgz#79d7a78bad4219f4c03d6557a1c72d9ca6ba62d5" + integrity sha512-rsZg7eL+Xcxsxk2XlBt9KcG8nOp9iYdKCOikY9x2RFJCyOdNj4MKPQty0e8oZr29vVAzKXr1BmR+kZauti3o1w== "@types/istanbul-lib-report@*": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" - integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" - integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" + integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" @@ -3148,9 +2350,9 @@ "@types/jest" "*" "@types/jest@*": - version "25.2.1" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.2.1.tgz#9544cd438607955381c1bdbdb97767a249297db5" - integrity sha512-msra1bCaAeEdkSyA0CZ6gW1ukMIvZ5YoJkdXw/qhQdsuuDlFTcEUrUw8CLCPt2rVRUfXlClVvK2gvPs9IokZaA== + version "25.2.3" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.2.3.tgz#33d27e4c4716caae4eced355097a47ad363fdcaf" + integrity sha512-JXc1nK/tXHiDhV55dvfzqtmP4S3sy3T3ouV2tkViZgxY/zeUkcpQcQPGRlgF4KmWzWW5oiWYSZwtCB+2RsE4Fw== dependencies: jest-diff "^25.2.1" pretty-format "^25.2.1" @@ -3168,9 +2370,9 @@ integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== "@types/node@*": - version "12.6.9" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.6.9.tgz#ffeee23afdc19ab16e979338e7b536fdebbbaeaf" - integrity sha512-+YB9FtyxXGyD54p8rXwWaN1EWEyar5L58GlGWgtH2I9rGmLGBQcw63+0jw+ujqVavNuO47S1ByAjm9zdHMnskw== + version "14.0.4" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz#43a63fc5edce226bed106b31b875165256271107" + integrity sha512-k3NqigXWRzQZVBDS5D1U70A5E8Qk4Kh+Ha/x4M8Bt9pF0X05eggfnC9+63Usc9Q928hRUIpIhTQaXsZwZBl4Ew== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -3201,9 +2403,9 @@ "@types/react" "*" "@types/react-native@^0.62.7": - version "0.62.7" - resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.7.tgz#bfc5ed03ba576f288603daa3f67f0f67d9a8bf57" - integrity sha512-FGFEt9GcFVl//XxWmxkeBxAx0YnzyEhJpR8hOJrjfaFKZm0KjHzzyCmCksBAP2qHSTrcJCiBkIvYCX/kGiOgww== + version "0.62.10" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.10.tgz#82c481df21db4e7460755dc3fc7091e333a1d2bd" + integrity sha512-QR4PGrzZ3IvRIHlScyIPuv2GV8tD/BMICZz514KGvn3KHbh0mLphHHemtHZC1o8u4xM5LxwVpMpMYHQ+ncSfag== dependencies: "@types/react" "*" @@ -3222,9 +2424,9 @@ "@types/react" "*" "@types/react@*": - version "16.9.31" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.31.tgz#6a543529766c8934ec8a89667376c2e73e9e2636" - integrity sha512-NpYJpNMWScFXtx3A2BJMeew2G3+9SEslVWMdxNJ6DLvxIuxWjY1bizK9q5Y1ujhln31vtjmhjOAYDr9Xx3k9FQ== + version "16.9.35" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.35.tgz#a0830d172e8aadd9bd41709ba2281a3124bbd368" + integrity sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ== dependencies: "@types/prop-types" "*" csstype "^2.2.0" @@ -3245,9 +2447,9 @@ integrity sha512-/gG2M/Imw7cQFp8PGvz/SwocNrmKFjFsm5Pb8HdbHkZ1K8pmuPzOX4VeVoiEecFCVf4CsN1r3/BRvx+6sNqwtQ== "@types/uglify-js@*": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.0.tgz#4490a140ca82aa855ad68093829e7fd6ae94ea87" - integrity sha512-3ZcoyPYHVOCcLpnfZwD47KFLr8W/mpUcgjpf1M4Q78TMJIw7KMAHSjiCLJp1z3ZrBR9pTLbe191O0TldFK5zcw== + version "3.9.2" + resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.2.tgz#01992579debba674e1e359cd6bcb1a1d0ab2e02b" + integrity sha512-d6dIfpPbF+8B7WiCi2ELY7m0w1joD8cRW4ms88Emdb2w062NeEpbNCeWwVCgzLRpVG+5e74VFSg4rgJ2xXjEiQ== dependencies: source-map "^0.6.1" @@ -3273,9 +2475,9 @@ source-map "^0.6.1" "@types/webpack@^4.41.8": - version "4.41.12" - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.12.tgz#0386ee2a2814368e2f2397abb036c0bf173ff6c3" - integrity sha512-BpCtM4NnBen6W+KEhrL9jKuZCXVtiH6+0b6cxdvNt2EwU949Al334PjQSl2BeAyvAX9mgoNNG21wvjP3xZJJ5w== + version "4.41.13" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.13.tgz#988d114c8913d039b8a0e0502a7fe4f1f84f3d5e" + integrity sha512-RYmIHOWSxnTTa765N6jJBVE45pd2SYNblEYshVDduLw6RhocazNmRzE5/ytvBD8IkDMH6DI+bcrqxh8NILimBA== dependencies: "@types/anymatch" "*" "@types/node" "*" @@ -3285,26 +2487,21 @@ source-map "^0.6.0" "@types/yargs-parser@*": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" - integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== - -"@types/yargs@^12.0.9": - version "12.0.12" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" - integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== + version "15.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" + integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== "@types/yargs@^13.0.0": - version "13.0.3" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.3.tgz#76482af3981d4412d65371a318f992d33464a380" - integrity sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ== + version "13.0.9" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.9.tgz#44028e974343c7afcf3960f1a2b1099c39a7b5e1" + integrity sha512-xrvhZ4DZewMDhoH1utLtOAwYQy60eYFoXeje30TzM3VOvQlBwQaEpKFq5m34k1wOw2AKIi2pwtiAjdmhvlBUzg== dependencies: "@types/yargs-parser" "*" "@types/yargs@^15.0.0": - version "15.0.4" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.4.tgz#7e5d0f8ca25e9d5849f2ea443cf7c402decd8299" - integrity sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg== + version "15.0.5" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz#947e9a6561483bdee9adffc983e91a6902af8b79" + integrity sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w== dependencies: "@types/yargs-parser" "*" @@ -3485,14 +2682,9 @@ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== abab@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" - integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + version "2.0.3" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" + integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== abort-controller@^3.0.0: version "3.0.0" @@ -3506,15 +2698,7 @@ absolute-path@^0.0.0: resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" integrity sha1-p4di+9rftSl76ZsV01p4Wy8JW/c= -accepts@~1.3.3, accepts@~1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" - integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= - dependencies: - mime-types "~2.1.18" - negotiator "0.6.1" - -accepts@~1.3.7: +accepts@~1.3.5, accepts@~1.3.7: version "1.3.7" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== @@ -3523,42 +2707,37 @@ accepts@~1.3.7: negotiator "0.6.2" acorn-globals@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103" - integrity sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw== + version "4.3.4" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== dependencies: acorn "^6.0.1" acorn-walk "^6.0.1" -acorn-jsx@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384" - integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== +acorn-jsx@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" + integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== acorn-walk@^6.0.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" - integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== + version "6.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== acorn@^5.5.3: version "5.7.4" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== -acorn@^6.0.1: - version "6.0.6" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.6.tgz#cd75181670d5b99bdb1b1c993941d3a239ab1f56" - integrity sha512-5M3G/A4uBSMIlfJ+h9W125vJvPFH/zirISsW5qfxF5YzEvXJCtolLoQvM5yZft0DvMcUrPGKPOlgEu55I6iUtA== - -acorn@^6.4.1: +acorn@^6.0.1, acorn@^6.4.1: version "6.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== -acorn@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" - integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== +acorn@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.2.0.tgz#17ea7e40d7c8640ff54a694c889c26f31704effe" + integrity sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ== address@1.1.2, address@^1.0.1: version "1.1.2" @@ -3618,7 +2797,7 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== -ajv@^6.1.0, ajv@^6.12.0: +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5: version "6.12.2" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== @@ -3628,26 +2807,6 @@ ajv@^6.1.0, ajv@^6.12.0: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^6.10.0, ajv@^6.10.2: - version "6.10.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" - integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^6.5.5: - version "6.7.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.7.0.tgz#e3ce7bb372d6577bb1839f1dfdfcbf5ad2948d96" - integrity sha512-RZXPviBTtfmtka9n9sy1N5M5b82CbxWIR6HIis4s3WQTXDJamc/0gpCWNGz6EWdWp4DOfjzJfhz/AS9zVPjjWg== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - anser@^1.4.9: version "1.4.9" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" @@ -3690,11 +2849,11 @@ ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== ansi-escapes@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.2.1.tgz#4dccdb846c3eee10f6d64dea66273eab90c37228" - integrity sha512-Cg3ymMAdN10wOk/VYfLV7KCQyv7EDirJ64500sU7n9UlmioEtDuU5Gd+hj73hXSU/ex7tHJSssmyftDdkMLO8Q== + version "4.3.1" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" + integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== dependencies: - type-fest "^0.5.2" + type-fest "^0.11.0" ansi-fragments@^0.2.1: version "0.2.1" @@ -3734,12 +2893,7 @@ ansi-regex@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= -ansi-regex@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9" - integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w== - -ansi-regex@^4.1.0: +ansi-regex@^4.0.0, ansi-regex@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== @@ -3907,15 +3061,7 @@ array-flatten@1.1.1: resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= -array-includes@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" - integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= - dependencies: - define-properties "^1.1.2" - es-abstract "^1.7.0" - -array-includes@^3.1.1: +array-includes@^3.0.3, array-includes@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== @@ -4053,39 +3199,39 @@ async-each@^1.0.1: integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -async@^2.1.4, async@^2.4.0, async@^2.5.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" - integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ== +async@^2.1.4, async@^2.4.0: + version "2.6.3" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== dependencies: - lodash "^4.17.10" + lodash "^4.17.14" asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= -atob@^2.1.1: +atob@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^9.7.2: - version "9.7.6" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4" - integrity sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ== + version "9.8.0" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.0.tgz#68e2d2bef7ba4c3a65436f662d0a56a741e56511" + integrity sha512-D96ZiIHXbDmU02dBaemyAg53ez+6F5yZmapmgKcjm35yEe1uVDYI8hGW3VYoGRaG290ZFf91YxHrR518vC0u/A== dependencies: - browserslist "^4.11.1" - caniuse-lite "^1.0.30001039" + browserslist "^4.12.0" + caniuse-lite "^1.0.30001061" chalk "^2.4.2" normalize-range "^0.1.2" num2fraction "^1.2.2" - postcss "^7.0.27" - postcss-value-parser "^4.0.3" + postcss "^7.0.30" + postcss-value-parser "^4.1.0" available-typed-arrays@^1.0.0, available-typed-arrays@^1.0.2: version "1.0.2" @@ -4100,16 +3246,14 @@ aws-sign2@~0.7.0: integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" - integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + version "1.9.1" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" + integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== axobject-query@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9" - integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww== - dependencies: - ast-types-flow "0.0.7" + version "2.1.2" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799" + integrity sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ== babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: version "6.26.0" @@ -4281,10 +3425,11 @@ babel-plugin-istanbul@^4.1.6: test-exclude "^4.2.1" babel-plugin-istanbul@^5.1.0: - version "5.1.4" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz#841d16b9a58eeb407a0ddce622ba02fe87a752ba" - integrity sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ== + version "5.2.0" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" + integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== dependencies: + "@babel/helper-plugin-utils" "^7.0.0" find-up "^3.0.0" istanbul-lib-instrument "^3.3.0" test-exclude "^5.2.3" @@ -4301,16 +3446,7 @@ babel-plugin-jest-hoist@^24.9.0: dependencies: "@types/babel__traverse" "^7.0.6" -babel-plugin-macros@^2.0.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181" - integrity sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ== - dependencies: - "@babel/runtime" "^7.4.2" - cosmiconfig "^5.2.0" - resolve "^1.10.0" - -babel-plugin-macros@^2.7.0: +babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.7.0: version "2.8.0" resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== @@ -4474,40 +3610,7 @@ babel-plugin-transform-undefined-to-void@^6.9.4: resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= -babel-preset-fbjs@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz#c0e6347d3e0379ed84b3c2434d3467567aa05297" - integrity sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g== - dependencies: - "@babel/plugin-proposal-class-properties" "^7.0.0" - "@babel/plugin-proposal-object-rest-spread" "^7.0.0" - "@babel/plugin-syntax-class-properties" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - "@babel/plugin-transform-arrow-functions" "^7.0.0" - "@babel/plugin-transform-block-scoped-functions" "^7.0.0" - "@babel/plugin-transform-block-scoping" "^7.0.0" - "@babel/plugin-transform-classes" "^7.0.0" - "@babel/plugin-transform-computed-properties" "^7.0.0" - "@babel/plugin-transform-destructuring" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - "@babel/plugin-transform-for-of" "^7.0.0" - "@babel/plugin-transform-function-name" "^7.0.0" - "@babel/plugin-transform-literals" "^7.0.0" - "@babel/plugin-transform-member-expression-literals" "^7.0.0" - "@babel/plugin-transform-modules-commonjs" "^7.0.0" - "@babel/plugin-transform-object-super" "^7.0.0" - "@babel/plugin-transform-parameters" "^7.0.0" - "@babel/plugin-transform-property-literals" "^7.0.0" - "@babel/plugin-transform-react-display-name" "^7.0.0" - "@babel/plugin-transform-react-jsx" "^7.0.0" - "@babel/plugin-transform-shorthand-properties" "^7.0.0" - "@babel/plugin-transform-spread" "^7.0.0" - "@babel/plugin-transform-template-literals" "^7.0.0" - babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" - -babel-preset-fbjs@^3.3.0: +babel-preset-fbjs@^3.2.0, babel-preset-fbjs@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541" integrity sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw== @@ -4657,16 +3760,11 @@ base-64@0.1.0: resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs= -base64-js@^1.0.2: +base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3: version "1.3.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== -base64-js@^1.1.2, base64-js@^1.2.3: - version "1.3.0" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" - integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== - base@^0.11.1: version "0.11.2" resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" @@ -4692,10 +3790,10 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -big-integer@^1.6.7, big-integer@^1.6.9: - version "1.6.41" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.41.tgz#6fb0e51bc8661129ef3832d46c939170b81ca794" - integrity sha512-d5AT9lMTYJ/ZE/4gzxb+5ttPcRWljVsvv7lF1w9KzkPhVUhBtHrjDo1J8swfZKepfLsliDhYa31zRYwcD0Yg9w== +big-integer@^1.6.44, big-integer@^1.6.9: + version "1.6.48" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.48.tgz#8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e" + integrity sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w== big.js@^5.2.2: version "5.2.2" @@ -4712,6 +3810,13 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + binstring@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/binstring/-/binstring-0.2.1.tgz#8a174d301f6d54efda550dd98bb4cb524eacd75d" @@ -4723,9 +3828,9 @@ bluebird@^3.3.5, bluebird@^3.5.4, bluebird@^3.5.5: integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== blueimp-md5@^2.10.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.10.0.tgz#02f0843921f90dca14f5b8920a38593201d6964d" - integrity sha512-EkNUOi7tpV68TqjpiUz9D9NcT8um2+qtgntmMbi5UKssVX2m/2PLqotcric0RE63pB3HPN/fjf3cKHN2ufGSUQ== + version "2.16.0" + resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.16.0.tgz#9018bb805e4ee05512e0e8cbdb9305eeecbdc87c" + integrity sha512-j4nzWIqEFpLSbdhUApHRGDwfXbV8ALhqOn+FY5L6XBdKPAXU9BpGgFSbDsgqogfqPPR9R2WooseWCsfhfEC6uQ== bmp-js@^0.1.0: version "0.1.0" @@ -4733,14 +3838,14 @@ bmp-js@^0.1.0: integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== + version "4.11.9" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" + integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== bn.js@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.1.tgz#48efc4031a9c4041b9c99c6941d903463ab62eb5" - integrity sha512-IUTD/REb78Z2eodka1QZyyEk66pciRcP6Sroka0aI3tG/iwIdYLrBD62RsubR7vqdt3WyX8p4jxeatzmRSphtA== + version "5.1.2" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" + integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== body-parser@1.19.0: version "1.19.0" @@ -4777,19 +3882,19 @@ boxen@^4.1.0: type-fest "^0.8.1" widest-line "^3.1.0" -bplist-creator@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" - integrity sha1-N98VNgkoJLh8QvlXsBNEEXNyrkU= +bplist-creator@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.8.tgz#56b2a6e79e9aec3fc33bf831d09347d73794e79c" + integrity sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA== dependencies: stream-buffers "~2.2.0" -bplist-parser@0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" - integrity sha1-1g1dzCDLptx+HymbNdPh+V2vuuY= +bplist-parser@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== dependencies: - big-integer "^1.6.7" + big-integer "^1.6.44" brace-expansion@^1.1.7: version "1.1.11" @@ -4836,10 +3941,10 @@ brorand@^1.0.1: resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= -browser-process-hrtime@^0.1.2: - version "0.1.3" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" - integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== browser-resolve@^1.11.3: version "1.11.3" @@ -4893,9 +3998,9 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: randombytes "^2.0.1" browserify-sign@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.1.0.tgz#4fe971b379a5aeb4925e06779f9fa1f41d249d70" - integrity sha512-VYxo7cDCeYUoBZ0ZCy4UyEUCP3smyBd4DRQM5nrFS1jJjPJjX7rP3oLRpPoWfkhQfyJ0I9ZbHbKafrFD/SGlrg== + version "4.2.0" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" + integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== dependencies: bn.js "^5.1.1" browserify-rsa "^4.0.1" @@ -4905,6 +4010,7 @@ browserify-sign@^4.0.0: inherits "^2.0.4" parse-asn1 "^5.1.5" readable-stream "^3.6.0" + safe-buffer "^5.2.0" browserify-zlib@^0.2.0: version "0.2.0" @@ -4922,7 +4028,7 @@ browserslist@4.7.0: electron-to-chromium "^1.3.247" node-releases "^1.1.29" -browserslist@^4.11.1, browserslist@^4.8.5: +browserslist@^4.11.1, browserslist@^4.12.0, browserslist@^4.8.5: version "4.12.0" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d" integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== @@ -4932,10 +4038,10 @@ browserslist@^4.11.1, browserslist@^4.8.5: node-releases "^1.1.53" pkg-up "^2.0.0" -bser@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" - integrity sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk= +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== dependencies: node-int64 "^0.4.0" @@ -4987,9 +4093,9 @@ buffer@^4.3.0: isarray "^1.0.0" buffer@^5.2.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.5.0.tgz#9c3caa3d623c33dd1c7ef584b89b88bf9c9bc1ce" - integrity sha512-9FTEDjLjwoAkEwyMGDjYJQN2gfRgOKBKRfiglhvibGbpeeU/pQn1bJxQqm32OD/AIeEuHxU9roxXxg34Byp/Ww== + version "5.6.0" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786" + integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw== dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -5019,11 +4125,6 @@ bugsnag-sourcemaps@1.3.0: read-pkg-up "^2.0.0" run-parallel-limit "^1.0.5" -builtin-modules@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" - integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= - builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" @@ -5142,9 +4243,9 @@ callsites@^2.0.0: integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= callsites@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3" - integrity sha512-tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw== + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camel-case@^4.1.1: version "4.1.1" @@ -5172,12 +4273,7 @@ camelcase@^4.1.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= -camelcase@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" - integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== - -camelcase@^5.3.1: +camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== @@ -5192,10 +4288,10 @@ can-use-dom@^0.1.0: resolved "https://registry.yarnpkg.com/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a" integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo= -caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001039, caniuse-lite@^1.0.30001043: - version "1.0.30001054" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz#7e82fc42d927980b0ce1426c4813df12381e1a75" - integrity sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw== +caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001043, caniuse-lite@^1.0.30001061: + version "1.0.30001062" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001062.tgz#d814b648338504b315222ace6f1a533d9a55e390" + integrity sha512-ei9ZqeOnN7edDrb24QfJ0OZicpEbsWxv7WusOiQGz/f2SfvBgHHbOEwBJ8HKGVSyx8Z6ndPjxzR6m0NQq+0bfw== capture-exit@^1.2.0: version "1.2.0" @@ -5258,19 +4354,19 @@ chalk@^3.0.0: supports-color "^7.1.0" character-entities-legacy@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz#3c729991d9293da0ede6dddcaf1f2ce1009ee8b4" - integrity sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww== + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" + integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== character-entities@^1.0.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.3.tgz#bbed4a52fe7ef98cc713c6d80d9faa26916d54e6" - integrity sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w== + version "1.2.4" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" + integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== character-reference-invalid@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz#1647f4f726638d3ea4a750cf5d1975c1c7919a85" - integrity sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg== + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" + integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== chardet@^0.4.0: version "0.4.2" @@ -5325,12 +4421,22 @@ chokidar@^2.0.4, chokidar@^2.1.8: optionalDependencies: fsevents "^1.2.7" -chownr@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" - integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== +chokidar@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" + integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.4.0" + optionalDependencies: + fsevents "~2.1.2" -chownr@^1.1.2: +chownr@^1.1.1, chownr@^1.1.2: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== @@ -5407,9 +4513,9 @@ cli-cursor@^3.1.0: restore-cursor "^3.1.0" cli-spinners@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77" - integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ== + version "2.3.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.3.0.tgz#0632239a4b5aa4c958610142c34bb7a651fc8df5" + integrity sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w== cli-table3@0.5.1: version "0.5.1" @@ -5422,14 +4528,14 @@ cli-table3@0.5.1: colors "^1.1.2" cli-width@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" - integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" + integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== clipboard@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d" - integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ== + version "2.0.6" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" + integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== dependencies: good-listener "^1.2.2" select "^1.1.2" @@ -5487,7 +4593,7 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" -color-convert@^1.9.0: +color-convert@^1.9.0, color-convert@^1.9.1: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== @@ -5506,54 +4612,60 @@ color-name@1.1.3: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= -color-name@~1.1.4: +color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-string@^1.5.2: + version "1.5.3" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + color-support@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== +color@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" + integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + colorette@^1.0.7: - version "1.1.0" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.1.0.tgz#1f943e5a357fac10b4e0f5aaef3b14cdc1af6ec7" - integrity sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg== + version "1.2.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.0.tgz#45306add826d196e8c87236ac05d797f25982e63" + integrity sha512-soRSroY+OF/8OdA3PTQXwaDJeMc7TfknKKrxeSCencL2a4+Tx5zhxmmv7hdpCjhKBjehzp8+bwe/T68K0hpIjw== -colors@^1.0.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" - integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== - -colors@^1.1.2: +colors@^1.0.3, colors@^1.1.2: version "1.4.0" resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" - integrity sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w== + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" comma-separated-tokens@^1.0.0: - version "1.0.7" - resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.7.tgz#419cd7fb3258b1ed838dc0953167a25e152f5b59" - integrity sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ== + version "1.0.8" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" + integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== command-exists@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.8.tgz#715acefdd1223b9c9b37110a149c6392c2852291" - integrity sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw== + version "1.2.9" + resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" + integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== -commander@^2.11.0, commander@^2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" - integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== - -commander@^2.20.0: +commander@^2.11.0, commander@^2.19.0, commander@^2.20.0, commander@~2.20.3: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== @@ -5568,11 +4680,6 @@ commander@~2.13.0: resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA== -commander@~2.17.1: - version "2.17.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" - integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== - commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -5605,32 +4712,32 @@ compare-urls@^2.0.0: normalize-url "^2.0.1" compare-versions@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26" - integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg== + version "3.6.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" + integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== component-emitter@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" - integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== -compressible@~2.0.14: - version "2.0.15" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.15.tgz#857a9ab0a7e5a07d8d837ed43fe2defff64fe212" - integrity sha512-4aE67DL33dSW9gw4CI2H/yTxqHLNcxp0yS6jB+4h+wr3e43+1z7vm0HU9qXOH8j+qjKuL8+UtkOxYQSMq60Ylw== +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: - mime-db ">= 1.36.0 < 2" + mime-db ">= 1.43.0 < 2" compression@^1.7.1: - version "1.7.3" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db" - integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg== + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== dependencies: accepts "~1.3.5" bytes "3.0.0" - compressible "~2.0.14" + compressible "~2.0.16" debug "2.6.9" - on-headers "~1.0.1" + on-headers "~1.0.2" safe-buffer "5.1.2" vary "~1.1.2" @@ -5665,13 +4772,13 @@ confusing-browser-globals@^1.0.9: integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== connect@^3.6.5: - version "3.6.6" - resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.6.tgz#09eff6c55af7236e137135a72574858b6786f524" - integrity sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ= + version "3.7.0" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== dependencies: debug "2.6.9" - finalhandler "1.1.0" - parseurl "~1.3.2" + finalhandler "1.1.2" + parseurl "~1.3.3" utils-merge "1.0.1" console-browserify@^1.1.0: @@ -5711,14 +4818,7 @@ convert-base@^0.1.0: resolved "https://registry.yarnpkg.com/convert-base/-/convert-base-0.1.0.tgz#8da74eb98f1e8b9de76bd92a3dce97f1d37f32b7" integrity sha1-jadOuY8ei53na9kqPc6X8dN/Mrc= -convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== - dependencies: - safe-buffer "~5.1.1" - -convert-source-map@^1.7.0: +convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1, convert-source-map@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== @@ -5777,26 +4877,16 @@ core-js@^1.0.0: resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= -core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.7: - version "2.6.3" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.3.tgz#4b70938bdffdaf64931e66e2db158f0892289c49" - integrity sha512-l00tmFFZOBHtYhN4Cz7k32VM7vTn3rE2ANjQDxdEN6zmXZ/xq1jQuutnmHvMG1ZJ7xd72+TA5YpUK8wz3rWsfQ== +core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: + version "2.6.11" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" + integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== -core-js@^3.0.1: - version "3.1.4" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.1.4.tgz#3a2837fc48e582e1ae25907afcd6cf03b0cc7a07" - integrity sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ== - -core-js@^3.0.4: +core-js@^3.0.1, core-js@^3.0.4, core-js@^3.4.1: version "3.6.5" resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== -core-js@^3.4.1: - version "3.6.4" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647" - integrity sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw== - core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -5810,7 +4900,7 @@ corejs-upgrade-webpack-plugin@^2.2.0: resolve-from "^5.0.0" webpack "^4.38.0" -cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: +cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.1.0, cosmiconfig@^5.2.1: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== @@ -5820,16 +4910,6 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: js-yaml "^3.13.1" parse-json "^4.0.0" -cosmiconfig@^5.0.5: - version "5.0.7" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04" - integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA== - dependencies: - import-fresh "^2.0.0" - is-directory "^0.3.1" - js-yaml "^3.9.0" - parse-json "^4.0.0" - cosmiconfig@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" @@ -5881,21 +4961,13 @@ create-react-class@^15.6.2, create-react-class@^15.6.3: loose-envify "^1.3.1" object-assign "^4.1.1" -create-react-context@<=0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.2.tgz#9836542f9aaa22868cd7d4a6f82667df38019dca" - integrity sha512-KkpaLARMhsTsgp0d2NA/R94F/eDLbhXERdIq3LvX2biCAXcDvHYoOqHfWCHf1+OLj+HKBotLG3KqaOOf+C1C+A== +create-react-context@0.3.0, create-react-context@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c" + integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw== dependencies: - fbjs "^0.8.0" - gud "^1.0.0" - -create-react-context@^0.2.1: - version "0.2.3" - resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.3.tgz#9ec140a6914a22ef04b8b09b7771de89567cb6f3" - integrity sha512-CQBmD0+QGgTaxDL3OX1IDXYqjkp2It4RIbcb99jS6AEg27Ga+a9G3JtK6SIu0HBwPLZlmwt9F7UwWA4Bn92Rag== - dependencies: - fbjs "^0.8.0" gud "^1.0.0" + warning "^4.0.3" cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" @@ -5916,7 +4988,7 @@ cross-spawn@^4.0.2: lru-cache "^4.0.1" which "^1.2.9" -cross-spawn@^5.0.1, cross-spawn@^5.1.0: +cross-spawn@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= @@ -5977,9 +5049,9 @@ css-select@^1.1.0: nth-check "~1.0.1" css-to-react-native@^2.2.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-2.3.1.tgz#cf0f61e0514846e2d4dc188b0886e29d8bef64a2" - integrity sha512-yO+oEx1Lf+hDKasqQRVrAvzMCz825Huh1VMlEEDlRWyAhFb/FWb6I0KpEF1PkyKQ7NEdcx9d5M2ZEWgJAsgPvQ== + version "2.3.2" + resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-2.3.2.tgz#e75e2f8f7aa385b4c3611c52b074b70a002f2e7d" + integrity sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw== dependencies: camelize "^1.0.0" css-color-keywords "^1.0.0" @@ -5996,27 +5068,22 @@ cssesc@^3.0.0: integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": - version "0.3.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.4.tgz#8cd52e8a3acfd68d3aed38ee0a640177d2f9d797" - integrity sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog== + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb" - integrity sha512-364AI1l/M5TYcFH83JnOH/pSqgaNnKmYgKrm0didZMGKWjQB60dymwWy1rKUgL3J1ffdq9xVi2yGLHdSjjSNog== + version "1.4.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" + integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== dependencies: cssom "0.3.x" -csstype@^2.2.0: +csstype@^2.2.0, csstype@^2.5.7: version "2.6.10" resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== -csstype@^2.5.7: - version "2.6.6" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.6.tgz#c34f8226a94bbb10c32cc0d714afdf942291fc41" - integrity sha512-RpFbQGUE74iyPgvr46U9t1xoQBM8T4BL8SxrN66Le2xYAPSaDJJKeztV3awugusb3g3G9iL8StmkBBXhcbbXhg== - currently-unhandled@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -6030,9 +5097,9 @@ cyclist@^1.0.1: integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= damerau-levenshtein@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" - integrity sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ= + version "1.0.6" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" + integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== dashdash@^1.12.0: version "1.14.1" @@ -6051,11 +5118,11 @@ data-urls@^1.0.0: whatwg-url "^7.0.0" dayjs@^1.8.15: - version "1.8.16" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.16.tgz#2a3771de537255191b947957af2fd90012e71e64" - integrity sha512-XPmqzWz/EJiaRHjBqSJ2s6hE/BUoCIHKgdS2QPtTQtKcS9E4/Qn0WomoH1lXanWCzri+g7zPcuNV4aTZ8PMORQ== + version "1.8.27" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.27.tgz#a8ae63ee990af28c05c430f0e160ae835a0fbbf8" + integrity sha512-Jpa2acjWIeOkg8KURUHICk0EqnEFSSF5eMEscsOgyJ92ZukXwmpmRkPSUka7KHSfbj5eKH30ieosYip+ky9emQ== -debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: +debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -6113,6 +5180,18 @@ deep-equal@2.0.3: which-collection "^1.0.1" which-typed-array "^1.1.2" +deep-equal@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" + deep-extend@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" @@ -6226,11 +5305,6 @@ detect-indent@^4.0.0: dependencies: repeating "^2.0.0" -detect-libc@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= - detect-newline@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" @@ -6258,9 +5332,9 @@ detect-port@^1.3.0: debug "^2.6.0" detox@^16.5.0: - version "16.5.0" - resolved "https://registry.yarnpkg.com/detox/-/detox-16.5.0.tgz#81cd560de917fca9e6ecd10cfd68c1831e896da4" - integrity sha512-UQ4GuMyHv87+LOP0VQqoNIVRhren2xSGt2bXikVNjURlxBTT3GG+e+QmjCZtlUVntbsV0UHsbdNPzYveLS84mw== + version "16.5.1" + resolved "https://registry.yarnpkg.com/detox/-/detox-16.5.1.tgz#4d2472f641c3aadaeaed4967a7c3c84dca4b0f34" + integrity sha512-GtNQY20r7n0Nl0u4C3vHjv9Zsp1Nw1puOHOLylqeX3WGe8V5awutIipp2ASKc7ufSn0Z8lteRoY7HGVtzpf67w== dependencies: "@babel/core" "^7.4.5" bunyan "^1.8.12" @@ -6284,11 +5358,6 @@ detox@^16.5.0: yargs "^13.0.0" yargs-parser "^13.0.0" -diff-sequences@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" - integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== - diff-sequences@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" @@ -6359,9 +5428,9 @@ dom-serializer@0: entities "^2.0.0" dom-walk@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" - integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg= + version "0.1.2" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" + integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== domain-browser@^1.1.1: version "1.2.0" @@ -6429,9 +5498,9 @@ dotenv-expand@^5.1.0: integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== dotenv-webpack@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.7.0.tgz#4384d8c57ee6f405c296278c14a9f9167856d3a1" - integrity sha512-wwNtOBW/6gLQSkb8p43y0Wts970A3xtNiG/mpwj9MLUhtPCQG6i+/DSXXoNN7fbPCU/vQ7JjwGmgOeGZSSZnsw== + version "1.8.0" + resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e" + integrity sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg== dependencies: dotenv-defaults "^1.0.2" @@ -6446,11 +5515,11 @@ dotenv@^8.0.0: integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== dtrace-provider@~0.8: - version "0.8.7" - resolved "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.7.tgz#dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04" - integrity sha1-3JObTT4GIM/gwc2APQ0tftBP/QQ= + version "0.8.8" + resolved "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.8.tgz#2996d5490c37e1347be263b423ed7b297fb0d97e" + integrity sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg== dependencies: - nan "^2.10.0" + nan "^2.14.0" duplexer@^0.1.1: version "0.1.1" @@ -6491,9 +5560,9 @@ ejson@2.2.0: integrity sha512-kWa0AKAxDhmr4t6c4pgQqk6yL52/M67xOMh60HRnAeydzo5QIxOitN5bE1+e0rbdnxfly7FTB9e2Ny0ypLMbag== electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.413: - version "1.3.431" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz#705dd8ef46200415ba837b31d927cdc1e43db303" - integrity sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg== + version "1.3.448" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.448.tgz#682831ecf3ce505231978f7c795a2813740cae7c" + integrity sha512-WOr3SrZ55lUFYugA6sUu3H3ZoxVIH5o3zTSqYS+2DOJJP4hnHmBiD1w432a2YFW/H2G5FIxE6DB06rv+9dUL5g== element-resize-detector@^1.2.1: version "1.2.1" @@ -6535,7 +5604,7 @@ emojis-list@^3.0.0: resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== -emotion-theming@10.0.27: +emotion-theming@10.0.27, emotion-theming@^10.0.19: version "10.0.27" resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10" integrity sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw== @@ -6544,16 +5613,7 @@ emotion-theming@10.0.27: "@emotion/weak-memoize" "0.2.5" hoist-non-react-statics "^3.3.0" -emotion-theming@^10.0.19: - version "10.0.19" - resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.19.tgz#66d13db74fccaefad71ba57c915b306cf2250295" - integrity sha512-dQRBPLAAQ6eA8JKhkLCIWC8fdjPbiNC1zNTdFF292h9amhZXofcNGUP7axHoHX4XesqQESYwZrXp53OPInMrKw== - dependencies: - "@babel/runtime" "^7.5.5" - "@emotion/weak-memoize" "0.2.4" - hoist-non-react-statics "^3.3.0" - -encodeurl@~1.0.1, encodeurl@~1.0.2: +encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= @@ -6565,20 +5625,13 @@ encoding@^0.1.11: dependencies: iconv-lite "~0.4.13" -end-of-stream@^1.0.0: +end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" -end-of-stream@^1.1.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" - integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== - dependencies: - once "^1.4.0" - enhanced-resolve@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" @@ -6594,14 +5647,14 @@ entities@^1.1.1, entities@^1.1.2, "entities@~ 1.1.1": integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" - integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + version "2.0.2" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.2.tgz#ac74db0bba8d33808bbf36809c3a5c3683531436" + integrity sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw== envinfo@^7.1.0: - version "7.3.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.3.1.tgz#892e42f7bf858b3446d9414ad240dbaf8da52f09" - integrity sha512-GvXiDTqLYrORVSCuJCsWHPXF5BFvoWMQA9xX4YVjPT1jyS3aZEHUBwjzxU/6LTPF9ReHgVEbX7IEN5UvSXHw/A== + version "7.5.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.5.1.tgz#93c26897225a00457c75e734d354ea9106a72236" + integrity sha512-hQBkDf2iO4Nv0CNHpCuSBeaSrveU6nThVxFGTrq/eDlV716UQk09zChaJae4mZRsos1x4YLY2TaH3LHUae3ZmQ== errno@^0.1.3, errno@~0.1.7: version "0.1.7" @@ -6618,26 +5671,14 @@ error-ex@^1.2.0, error-ex@^1.3.1: is-arrayish "^0.2.1" errorhandler@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.0.tgz#eaba64ca5d542a311ac945f582defc336165d9f4" - integrity sha1-6rpkyl1UKjEayUX1gt78M2Fl2fQ= + version "1.5.1" + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" + integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== dependencies: - accepts "~1.3.3" + accepts "~1.3.7" escape-html "~1.0.3" -es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.7.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" - integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== - dependencies: - es-to-primitive "^1.2.0" - function-bind "^1.1.1" - has "^1.0.3" - is-callable "^1.1.4" - is-regex "^1.0.4" - object-keys "^1.0.12" - -es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.4, es-abstract@^1.17.5: +es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5: version "1.17.5" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== @@ -6672,15 +5713,6 @@ es-get-iterator@^1.0.2, es-get-iterator@^1.1.0: is-string "^1.0.5" isarray "^2.0.5" -es-to-primitive@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" @@ -6715,12 +5747,17 @@ escape-string-regexp@2.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + escodegen@^1.9.1: - version "1.11.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" - integrity sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw== + version "1.14.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" + integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== dependencies: - esprima "^3.1.3" + esprima "^4.0.1" estraverse "^4.2.0" esutils "^2.0.2" optionator "^0.8.1" @@ -6746,12 +5783,12 @@ eslint-config-airbnb@^18.1.0: object.entries "^1.1.1" eslint-import-resolver-node@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" - integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== + version "0.3.3" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" + integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== dependencies: debug "^2.6.9" - resolve "^1.5.0" + resolve "^1.13.1" eslint-module-utils@^2.4.1: version "2.6.0" @@ -6911,30 +5948,25 @@ eslint@6.8.0: v8-compile-cache "^2.0.3" espree@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.2.tgz#6c272650932b4f91c3714e5e7b5f5e2ecf47262d" - integrity sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA== + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== dependencies: - acorn "^7.1.0" - acorn-jsx "^5.1.0" + acorn "^7.1.1" + acorn-jsx "^5.2.0" eslint-visitor-keys "^1.1.0" -esprima@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= - -esprima@^4.0.0: +esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" - integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== + version "1.3.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" + integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== dependencies: - estraverse "^4.0.0" + estraverse "^5.1.0" esrecurse@^4.1.0: version "4.2.1" @@ -6943,15 +5975,20 @@ esrecurse@^4.1.0: dependencies: estraverse "^4.1.0" -estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= +estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -esutils@^2.0.0, esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= +estraverse@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" + integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== etag@~1.8.1: version "1.8.1" @@ -6964,14 +6001,14 @@ event-target-shim@^5.0.0, event-target-shim@^5.0.1: integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== eventemitter3@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163" - integrity sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" + integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== eventemitter3@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb" - integrity sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg== + version "4.0.4" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" + integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== events@^3.0.0: version "3.1.0" @@ -7008,22 +6045,9 @@ exec-sh@^0.2.0: merge "^1.2.0" exec-sh@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" - integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== - -execa@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" + version "0.3.4" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" + integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== execa@^1.0.0: version "1.0.0" @@ -7087,18 +6111,6 @@ expect@^23.6.0: jest-message-util "^23.4.0" jest-regex-util "^23.3.0" -expect@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" - integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA== - dependencies: - "@jest/types" "^24.8.0" - ansi-styles "^3.2.0" - jest-get-type "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-regex-util "^24.3.0" - expect@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" @@ -7112,9 +6124,9 @@ expect@^24.9.0: jest-regex-util "^24.9.0" expo-asset@~8.1.0: - version "8.1.4" - resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-8.1.4.tgz#5265c28c1c279b2f9779269195bec4caf250ba5d" - integrity sha512-6YqW22F5issD1rgqBCja8TCA2dr+yf/89FdYs/jhQYpw5OJAnAvfpK3GL8h3jRCu1TvxZqhH5NeLG6f2b3oUqg== + version "8.1.5" + resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-8.1.5.tgz#6d0e3504cd719e9b888d32978d419d6522eed799" + integrity sha512-Ivc4GsAXawfFT6IgjvV4BHXFdAHT+1ZhewuBm/mQ1vvkYOqcPksDVRuChdbfvgAl82lbDfAN/FeEcIfGnvevEQ== dependencies: blueimp-md5 "^2.10.0" invariant "^2.2.4" @@ -7249,9 +6261,9 @@ external-editor@^2.0.4: tmp "^0.0.33" external-editor@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" - integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" iconv-lite "^0.4.24" @@ -7321,21 +6333,21 @@ fast-glob@^2.0.2: micromatch "^3.1.10" fast-json-stable-stringify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@~2.0.4, fast-levenshtein@~2.0.6: +fast-levenshtein@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= fault@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.3.tgz#4da88cf979b6b792b4e13c7ec836767725170b7e" - integrity sha512-sfFuP4X0hzrbGKjAUNXYvNqsZ5F6ohx/dZ9I0KQud/aiZNwg263r5L9yGB0clvXHCkzXh5W3t7RSHchggYIFmA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" + integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA== dependencies: - format "^0.2.2" + format "^0.2.0" faye-websocket@~0.11.1: version "0.11.3" @@ -7345,11 +6357,11 @@ faye-websocket@~0.11.1: websocket-driver ">=0.5.1" fb-watchman@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" - integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= + version "2.0.1" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== dependencies: - bser "^2.0.0" + bser "2.1.1" fbemitter@^2.1.1: version "2.1.1" @@ -7379,7 +6391,7 @@ fbjs-scripts@^1.1.0: semver "^5.1.0" through2 "^2.0.0" -fbjs@^0.8.0, fbjs@^0.8.4, fbjs@^0.8.9: +fbjs@^0.8.4, fbjs@^0.8.9: version "0.8.17" resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= @@ -7419,9 +6431,9 @@ figures@^2.0.0: escape-string-regexp "^1.0.5" figures@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.1.0.tgz#4b198dd07d8d71530642864af2d45dd9e459c4ec" - integrity sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg== + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" @@ -7454,6 +6466,11 @@ file-type@^9.0.0: resolved "https://registry.yarnpkg.com/file-type/-/file-type-9.0.0.tgz#a68d5ad07f486414dfb2c8866f73161946714a18" integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw== +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + filename-regex@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" @@ -7500,20 +6517,7 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -finalhandler@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" - integrity sha1-zgtoVbRYU+eRsvzGgARtiCU91/U= - dependencies: - debug "2.6.9" - encodeurl "~1.0.1" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.2" - statuses "~1.3.1" - unpipe "~1.0.0" - -finalhandler@~1.1.2: +finalhandler@1.1.2, finalhandler@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== @@ -7526,16 +6530,7 @@ finalhandler@~1.1.2: statuses "~1.5.0" unpipe "~1.0.0" -find-cache-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" - integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8= - dependencies: - commondir "^1.0.1" - make-dir "^1.0.0" - pkg-dir "^2.0.0" - -find-cache-dir@^2.1.0: +find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== @@ -7613,9 +6608,9 @@ flat@^4.1.0: is-buffer "~2.0.3" flatted@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" - integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== flush-write-stream@^1.0.0: version "1.1.1" @@ -7684,7 +6679,7 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" -format@^0.2.2: +format@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs= @@ -7761,13 +6756,6 @@ fs-extra@^8.0.1, fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-minipass@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" - integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== - dependencies: - minipass "^2.2.1" - fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -7790,23 +6778,15 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= -fsevents@^1.2.3: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" - integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw== - dependencies: - nan "^2.9.2" - node-pre-gyp "^0.10.0" - -fsevents@^1.2.7: - version "1.2.9" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" - integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== +fsevents@^1.2.3, fsevents@^1.2.7: + version "1.2.13" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" + integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== dependencies: + bindings "^1.5.0" nan "^2.12.1" - node-pre-gyp "^0.12.0" -fsevents@~2.1.1: +fsevents@~2.1.1, fsevents@~2.1.2: version "2.1.3" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== @@ -7891,11 +6871,6 @@ get-stdin@^7.0.0: resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== -get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= - get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" @@ -7938,14 +6913,7 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.0.0.tgz#1dc99f0f39b006d3e92c2c284068382f0c20e954" - integrity sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg== - dependencies: - is-glob "^4.0.1" - -glob-parent@~5.1.0: +glob-parent@^5.0.0, glob-parent@~5.1.0: version "5.1.1" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== @@ -7969,7 +6937,7 @@ glob@7.0.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.3, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: +glob@7.1.3: version "7.1.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== @@ -7992,7 +6960,7 @@ glob@^6.0.1: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.0.0, glob@^7.1.4: +glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: version "7.1.6" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== @@ -8020,15 +6988,7 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" -global@^4.3.2, global@~4.3.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" - integrity sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8= - dependencies: - min-document "^2.19.0" - process "~0.5.1" - -global@^4.4.0: +global@^4.3.2, global@^4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== @@ -8036,10 +6996,18 @@ global@^4.4.0: min-document "^2.19.0" process "^0.11.10" +global@~4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" + integrity sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8= + dependencies: + min-document "^2.19.0" + process "~0.5.1" + globals@^11.1.0: - version "11.10.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50" - integrity sha512-0GZF1RiPKU97IHUO5TORo9w1PwrH/NBPl+fS7oMLdaTRiYmYbwK4NWoZWrAdd0/abG9R2BU+OiwyQpTpE6pdfQ== + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^12.1.0: version "12.4.0" @@ -8080,12 +7048,7 @@ good-listener@^1.2.2: dependencies: delegate "^3.1.2" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9: - version "4.1.15" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" - integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== - -graceful-fs@^4.2.0, graceful-fs@^4.2.2: +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2: version "4.2.4" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== @@ -8121,24 +7084,14 @@ gzip-size@5.1.1: pify "^4.0.1" handlebars@^4.0.3: - version "4.0.12" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz#2c15c8a96d46da5e266700518ba8cb8d919d5bc5" - integrity sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA== - dependencies: - async "^2.5.0" - optimist "^0.6.1" - source-map "^0.6.1" - optionalDependencies: - uglify-js "^3.1.4" - -handlebars@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" - integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw== + version "4.7.6" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" + integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== dependencies: + minimist "^1.2.5" neo-async "^2.6.0" - optimist "^0.6.1" source-map "^0.6.1" + wordwrap "^1.0.0" optionalDependencies: uglify-js "^3.1.4" @@ -8147,7 +7100,7 @@ har-schema@^2.0.0: resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= -har-validator@~5.1.0: +har-validator@~5.1.3: version "5.1.3" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== @@ -8182,12 +7135,7 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= - -has-symbols@^1.0.1: +has-symbols@^1.0.0, has-symbols@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== @@ -8228,7 +7176,7 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -has@^1.0.1, has@^1.0.3: +has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== @@ -8252,19 +7200,19 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -hast-util-parse-selector@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.2.tgz#66aabccb252c47d94975f50a281446955160380b" - integrity sha512-jIMtnzrLTjzqgVEQqPEmwEZV+ea4zHRFTP8Z2Utw0I5HuBOXHzUPPQWr6ouJdJqDKLbFU/OEiYwZ79LalZkmmw== +hast-util-parse-selector@^2.0.0: + version "2.2.4" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.4.tgz#60c99d0b519e12ab4ed32e58f150ec3f61ed1974" + integrity sha512-gW3sxfynIvZApL4L07wryYF4+C9VvH3AUi7LAnVXV4MneGEgwOByXvFo18BgmTWnm7oHAe874jKbIB1YhHSIzA== hastscript@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.0.tgz#a19b3cca6a26a2bcd0f1b1eac574af9427c1c7df" - integrity sha512-7mOQX5VfVs/gmrOGlN8/EDfp1GqV6P3gTNVt+KnX4gbYhpASTM8bklFdFQCbFRAadURXAmw0R1QQdBdqp7jswQ== + version "5.1.2" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a" + integrity sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ== dependencies: comma-separated-tokens "^1.0.0" - hast-util-parse-selector "^2.2.0" - property-information "^5.0.1" + hast-util-parse-selector "^2.0.0" + property-information "^5.0.0" space-separated-tokens "^1.0.0" he@1.2.0, he@^1.2.0: @@ -8301,7 +7249,7 @@ hoek@4.x.x: resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" integrity sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA== -hoist-non-react-statics@3.3.2, hoist-non-react-statics@^3.3.2: +hoist-non-react-statics@3.3.2, hoist-non-react-statics@^3.3.0: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== @@ -8313,13 +7261,6 @@ hoist-non-react-statics@^2.3.1: resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw== -hoist-non-react-statics@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz#b09178f0122184fb95acf525daaecb4d8f45958b" - integrity sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA== - dependencies: - react-is "^16.7.0" - home-or-tmp@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" @@ -8328,15 +7269,10 @@ home-or-tmp@^2.0.0: os-homedir "^1.0.0" os-tmpdir "^1.0.1" -home-or-tmp@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb" - integrity sha1-V6j+JM8zzdUkhgoVgh3cJchmcfs= - hosted-git-info@^2.1.4: - version "2.7.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" - integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== + version "2.8.8" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" + integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== html-encoding-sniffer@^1.0.2: version "1.0.2" @@ -8350,10 +7286,15 @@ html-entities@^1.2.0: resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + html-minifier-terser@^5.0.1: - version "5.1.0" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#95d3df037f04835e9d1a09d1767c0e361a7de916" - integrity sha512-tiYE76O1zunboByeB/nFGwUEb263Z3nkNv6Lz2oLC1s6M36bLKfTrjQ+7ssVfaucVllE+N7hh/FbpbxvnIA+LQ== + version "5.1.1" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" + integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== dependencies: camel-case "^4.1.1" clean-css "^4.2.3" @@ -8401,16 +7342,6 @@ http-errors@1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - http-errors@~1.7.2: version "1.7.3" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" @@ -8480,7 +7411,7 @@ i18n-js@3.5.1: resolved "https://registry.yarnpkg.com/i18n-js/-/i18n-js-3.5.1.tgz#9787450894059bec1af791123231e59898eb97c1" integrity sha512-nJgbE5Vj9qzOQfjdVd/uoMoO8ppVaB/3LB6KOmMfD8IQ1vNNh307iHyQLK8ZnLYWkAszfPvVpYmUt1Le/RuHMQ== -iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13: +iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@~0.4.13: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -8518,13 +7449,6 @@ ignore-walk@3.0.3: dependencies: minimatch "^3.0.4" -ignore-walk@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" - integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== - dependencies: - minimatch "^3.0.4" - ignore@^3.3.5: version "3.3.10" resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" @@ -8560,15 +7484,7 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" -import-fresh@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" - integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-fresh@^3.1.0: +import-fresh@^3.0.0, import-fresh@^3.1.0: version "3.2.1" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== @@ -8634,20 +7550,20 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inherits@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= -inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" @@ -8694,22 +7610,22 @@ inquirer@^3.0.6: through "^2.3.6" inquirer@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.0.tgz#9e2b032dde77da1db5db804758b8fea3a970519a" - integrity sha512-rSdC7zelHdRQFkWnhsMu2+2SO41mpv2oF2zy4tMhmiLWkcKbOAs87fWAJhVXttKVwhdZvymvnuM95EyEXg2/tQ== + version "7.1.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" + integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== dependencies: ansi-escapes "^4.2.1" - chalk "^2.4.2" + chalk "^3.0.0" cli-cursor "^3.1.0" cli-width "^2.0.0" external-editor "^3.0.3" figures "^3.0.0" lodash "^4.17.15" mute-stream "0.0.8" - run-async "^2.2.0" - rxjs "^6.4.0" + run-async "^2.4.0" + rxjs "^6.5.3" string-width "^4.1.0" - strip-ansi "^5.1.0" + strip-ansi "^6.0.0" through "^2.3.6" internal-slot@^1.0.2: @@ -8738,21 +7654,11 @@ invariant@2.2.4, invariant@^2.1.0, invariant@^2.2.2, invariant@^2.2.3, invariant dependencies: loose-envify "^1.0.0" -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - invert-kv@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== -ip-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-3.0.0.tgz#0a934694b4066558c46294244a23cc33116bf732" - integrity sha512-T8wDtjy+Qf2TAPDQmBp0eGKJ8GavlWlUnamr3wRn6vvdZlKVuJXXMlSncYFRYgVHOM3If5NR1H4+OvVQU9Idvg== - ip@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" @@ -8778,14 +7684,14 @@ is-accessor-descriptor@^1.0.0: kind-of "^6.0.0" is-alphabetical@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.3.tgz#eb04cc47219a8895d8450ace4715abff2258a1f8" - integrity sha512-eEMa6MKpHFzw38eKm56iNNi6GJ7lf6aLLio7Kr23sJPAECscgRtZvOBYybejWDQ2bM949Y++61PY+udzj5QMLA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" + integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== is-alphanumerical@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz#57ae21c374277b3defe0274c640a5704b8f6657c" - integrity sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" + integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== dependencies: is-alphabetical "^1.0.0" is-decimal "^1.0.0" @@ -8800,6 +7706,11 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + is-bigint@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.0.tgz#73da8c33208d00f130e9b5e15d23eac9215601c4" @@ -8834,19 +7745,7 @@ is-buffer@~2.0.3: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== -is-builtin-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" - integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= - dependencies: - builtin-modules "^1.0.0" - -is-callable@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== - -is-callable@^1.1.5: +is-callable@^1.1.4, is-callable@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== @@ -8879,20 +7778,15 @@ is-data-descriptor@^1.0.0: dependencies: kind-of "^6.0.0" -is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= - -is-date-object@^1.0.2: +is-date-object@^1.0.1, is-date-object@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== is-decimal@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.3.tgz#381068759b9dc807d8c0dc0bfbae2b68e1da48b7" - integrity sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ== + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" + integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== is-descriptor@^0.1.0: version "0.1.6" @@ -8923,9 +7817,12 @@ is-docker@^2.0.0: integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== is-dom@^1.0.9: - version "1.0.9" - resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.0.9.tgz#483832d52972073de12b9fe3f60320870da8370d" - integrity sha1-SDgy1SlyBz3hK5/j9gMghw2oNw0= + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a" + integrity sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ== + dependencies: + is-object "^1.0.1" + is-window "^1.0.2" is-dotfile@^1.0.0: version "1.0.3" @@ -8962,11 +7859,9 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= - dependencies: - number-is-nan "^1.0.0" + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" + integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== is-fullwidth-code-point@^1.0.0: version "1.0.0" @@ -8986,9 +7881,9 @@ is-fullwidth-code-point@^3.0.0: integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-function@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" - integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU= + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" + integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== is-generator-fn@^1.0.0: version "1.0.0" @@ -9014,14 +7909,7 @@ is-glob@^3.1.0: dependencies: is-extglob "^2.1.0" -is-glob@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" - integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= - dependencies: - is-extglob "^2.1.1" - -is-glob@^4.0.1, is-glob@~4.0.1: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== @@ -9029,9 +7917,9 @@ is-glob@^4.0.1, is-glob@~4.0.1: is-extglob "^2.1.1" is-hexadecimal@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz#e8a426a69b6d31470d3a33a47bb825cda02506ee" - integrity sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" + integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== is-map@^2.0.1: version "2.0.1" @@ -9072,12 +7960,17 @@ is-obj@^1.0.0: resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= +is-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" + integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA= + is-plain-obj@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= -is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: +is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== @@ -9101,19 +7994,7 @@ is-primitive@^2.0.0: resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= -is-promise@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" - integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= - -is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= - dependencies: - has "^1.0.1" - -is-regex@^1.0.5: +is-regex@^1.0.4, is-regex@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== @@ -9140,14 +8021,7 @@ is-string@^1.0.4, is-string@^1.0.5: resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== -is-symbol@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== - dependencies: - has-symbols "^1.0.0" - -is-symbol@^1.0.3: +is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== @@ -9184,6 +8058,11 @@ is-weakset@^2.0.1: resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz#e9a0af88dbd751589f5e50d80f4c98b780884f83" integrity sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw== +is-window@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" + integrity sha1-LIlspT25feRdPDMTOmXYyfVjSA0= + is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -9201,11 +8080,6 @@ is-wsl@^2.1.1: dependencies: is-docker "^2.0.0" -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= - isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -9370,11 +8244,11 @@ istanbul-reports@^1.5.1: handlebars "^4.0.3" istanbul-reports@^2.2.6: - version "2.2.6" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" - integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== + version "2.2.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz#5d939f6237d7b48393cc0959eab40cd4fd056931" + integrity sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg== dependencies: - handlebars "^4.1.2" + html-escaper "^2.0.0" iterall@^1.2.2: version "1.3.0" @@ -9534,16 +8408,6 @@ jest-diff@^24.3.0, jest-diff@^24.9.0: jest-get-type "^24.9.0" pretty-format "^24.9.0" -jest-diff@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" - integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g== - dependencies: - chalk "^2.0.1" - diff-sequences "^24.3.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" - jest-diff@^25.2.1: version "25.5.0" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" @@ -9562,9 +8426,9 @@ jest-docblock@^23.2.0: detect-newline "^2.1.0" jest-docblock@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" - integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== dependencies: detect-newline "^2.1.0" @@ -9632,11 +8496,6 @@ jest-get-type@^22.1.0: resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w== -jest-get-type@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" - integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ== - jest-get-type@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" @@ -9661,26 +8520,7 @@ jest-haste-map@^23.6.0: micromatch "^2.3.11" sane "^2.0.0" -jest-haste-map@^24.7.1: - version "24.8.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.1.tgz#f39cc1d2b1d907e014165b4bd5a957afcb992982" - integrity sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g== - dependencies: - "@jest/types" "^24.8.0" - anymatch "^2.0.0" - fb-watchman "^2.0.0" - graceful-fs "^4.1.15" - invariant "^2.2.4" - jest-serializer "^24.4.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" - micromatch "^3.1.10" - sane "^4.0.3" - walker "^1.0.7" - optionalDependencies: - fsevents "^1.2.7" - -jest-haste-map@^24.9.0: +jest-haste-map@^24.7.1, jest-haste-map@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== @@ -9763,16 +8603,6 @@ jest-matcher-utils@^23.6.0: jest-get-type "^22.1.0" pretty-format "^23.6.0" -jest-matcher-utils@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" - integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw== - dependencies: - chalk "^2.0.1" - jest-diff "^24.8.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" - jest-matcher-utils@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" @@ -9794,20 +8624,6 @@ jest-message-util@^23.4.0: slash "^1.0.0" stack-utils "^1.0.1" -jest-message-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" - integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/stack-utils" "^1.0.1" - chalk "^2.0.1" - micromatch "^3.1.10" - slash "^2.0.0" - stack-utils "^1.0.1" - jest-message-util@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" @@ -9827,13 +8643,6 @@ jest-mock@^23.2.0: resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134" integrity sha1-rRxg8p6HGdR8JuETgJi20YsmETQ= -jest-mock@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" - integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A== - dependencies: - "@jest/types" "^24.8.0" - jest-mock@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" @@ -9851,12 +8660,7 @@ jest-regex-util@^23.3.0: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5" integrity sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U= -jest-regex-util@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" - integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== - -jest-regex-util@^24.9.0: +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== @@ -9887,17 +8691,6 @@ jest-resolve@^23.6.0: chalk "^2.0.1" realpath-native "^1.0.0" -jest-resolve@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" - integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw== - dependencies: - "@jest/types" "^24.8.0" - browser-resolve "^1.11.3" - chalk "^2.0.1" - jest-pnp-resolver "^1.2.1" - realpath-native "^1.1.0" - jest-resolve@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" @@ -10014,12 +8807,7 @@ jest-serializer@^23.0.1: resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" integrity sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU= -jest-serializer@^24.4.0: - version "24.4.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" - integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== - -jest-serializer@^24.9.0: +jest-serializer@^24.4.0, jest-serializer@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== @@ -10040,25 +8828,7 @@ jest-snapshot@^23.6.0: pretty-format "^23.6.0" semver "^5.5.0" -jest-snapshot@^24.1.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" - integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^24.8.0" - chalk "^2.0.1" - expect "^24.8.0" - jest-diff "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - pretty-format "^24.8.0" - semver "^5.5.0" - -jest-snapshot@^24.9.0: +jest-snapshot@^24.1.0, jest-snapshot@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== @@ -10098,24 +8868,6 @@ jest-util@^23.4.0: slash "^1.0.0" source-map "^0.6.0" -jest-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" - integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA== - dependencies: - "@jest/console" "^24.7.1" - "@jest/fake-timers" "^24.8.0" - "@jest/source-map" "^24.3.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - callsites "^3.0.0" - chalk "^2.0.1" - graceful-fs "^4.1.15" - is-ci "^2.0.0" - mkdirp "^0.5.1" - slash "^2.0.0" - source-map "^0.6.0" - jest-util@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" @@ -10144,19 +8896,7 @@ jest-validate@^23.6.0: leven "^2.1.0" pretty-format "^23.6.0" -jest-validate@^24.7.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" - integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA== - dependencies: - "@jest/types" "^24.8.0" - camelcase "^5.0.0" - chalk "^2.0.1" - jest-get-type "^24.8.0" - leven "^2.1.0" - pretty-format "^24.8.0" - -jest-validate@^24.9.0: +jest-validate@^24.7.0, jest-validate@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== @@ -10197,15 +8937,7 @@ jest-worker@^23.2.0: dependencies: merge-stream "^1.0.1" -jest-worker@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" - integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== - dependencies: - merge-stream "^1.0.1" - supports-color "^6.1.0" - -jest-worker@^24.9.0: +jest-worker@^24.6.0, jest-worker@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== @@ -10230,9 +8962,9 @@ jest@^24.9.0: jest-cli "^24.9.0" jetifier@^1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.3.tgz#61a95b29aefddfe3b6d81ee956f5e99f8b9cba19" - integrity sha512-i0rb2nHVPZDPzFhgs9+yYxEDMh2z0iSHRD3vBQmvn98wlgWKwhmU2F3MUEEXfK+MLnKwLKqsCTvlcS1+CpDTUg== + version "1.6.5" + resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.5.tgz#ea87324a4230bef20a9651178ecab978ee54a8cb" + integrity sha512-T7yzBSu9PR+DqjYt+I0KVO1XTb1QhAfHnXV5Nd3xpbXM6Xg4e3vP60Q4qkNU8Fh6PHC2PivPUNN3rY7G2MxcDQ== jimp@0.10.1: version "0.10.1" @@ -10281,7 +9013,7 @@ js-tokens@^3.0.2: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= -js-yaml@3.13.1, js-yaml@^3.13.1, js-yaml@^3.7.0, js-yaml@^3.9.0: +js-yaml@3.13.1, js-yaml@^3.13.1, js-yaml@^3.7.0: version "3.13.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== @@ -10395,13 +9127,6 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" - integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== - dependencies: - minimist "^1.2.0" - json5@^2.1.1, json5@^2.1.2: version "2.1.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" @@ -10438,15 +9163,7 @@ jsprim@^1.2.2: json-schema "0.2.3" verror "1.10.0" -jsx-ast-utils@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb" - integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ== - dependencies: - array-includes "^3.0.3" - object.assign "^4.1.0" - -jsx-ast-utils@^2.2.3: +jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA== @@ -10479,9 +9196,9 @@ kind-of@^5.0.0: integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" - integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== klaw-sync@^6.0.0: version "6.0.0" @@ -10502,7 +9219,7 @@ kleur@^2.0.1: resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300" integrity sha512-77XF9iTllATmG9lSlIv0qdQ2BQ/h9t0bJllHlbvsQ0zUWfU7Yi0S8L5JXzPZgkefIiajLmBJJ4BsMJmqcf7oxQ== -kleur@^3.0.2, kleur@^3.0.3: +kleur@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== @@ -10518,13 +9235,6 @@ lazy-universal-dotenv@^3.0.1: dotenv "^8.0.0" dotenv-expand "^5.1.0" -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" - lcid@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" @@ -10707,16 +9417,11 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= -lodash@4.17.15, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15: +lodash@4.17.15, lodash@4.x.x, lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.5.0: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== -lodash@4.x.x, lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.5.0: - version "4.17.11" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" - integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== - log-symbols@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" @@ -10789,13 +9494,6 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" -make-dir@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" - integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== - dependencies: - pify "^3.0.0" - make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" @@ -10847,18 +9545,10 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -markdown-to-jsx@^6.9.1: - version "6.10.3" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.10.3.tgz#7f0946684acd321125ff2de7fd258a9b9c7c40b7" - integrity sha512-PSoUyLnW/xoW6RsxZrquSSz5eGEOTwa15H5eqp3enmrp8esmgDJmhzd6zmQ9tgAA9TxJzx1Hmf3incYU/IamoQ== - dependencies: - prop-types "^15.6.2" - unquote "^1.1.0" - -markdown-to-jsx@^6.9.3: - version "6.11.1" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.1.tgz#3931612cfffaa5fd6610ecf2a4055eccccb98fa8" - integrity sha512-FdtDAv8d9/tjyHxdCvWZxxOgK2icwzBkTq/dPk+XlQ2B+DYDcwE89FWGzT92erXQ0CQR/bQbpNK3loNYhYL70g== +markdown-to-jsx@^6.9.1, markdown-to-jsx@^6.9.3: + version "6.11.2" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.2.tgz#d58d5497bad5decff415354854ce56a8a07a819c" + integrity sha512-Jip5MDGQ47tj/aQws9p/qctN2Myj2MsZts4tjfzm7Qfqir/TxgEuItJWjP4LtGVEFiv5bfNfvXwU0zG+1I2uPA== dependencies: prop-types "^15.6.2" unquote "^1.1.0" @@ -10894,20 +9584,13 @@ media-typer@0.3.0: resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= -mem@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" - integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= - dependencies: - mimic-fn "^1.0.0" - mem@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-4.1.0.tgz#aeb9be2d21f47e78af29e4ac5978e8afa2ca5b8a" - integrity sha512-I5u6Q1x7wxO0kdOpYBB28xueHADYps5uty/zg936CiG8NTe5sJL8EjrCuLneuDW3PlMdZBGDIn8BirEVdovZvg== + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== dependencies: map-age-cleaner "^0.1.1" - mimic-fn "^1.0.0" + mimic-fn "^2.0.0" p-is-promise "^2.0.0" memoizerific@^1.11.3: @@ -11109,7 +9792,7 @@ metro-react-native-babel-transformer@0.58.0, metro-react-native-babel-transforme metro-react-native-babel-preset "0.58.0" metro-source-map "0.58.0" -metro-resolver@0.58.0: +metro-resolver@0.58.0, metro-resolver@^0.58.0: version "0.58.0" resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.58.0.tgz#4d03edc52e2e25d45f16688adf3b3f268ea60df9" integrity sha512-XFbAKvCHN2iWqKeiRARzEXn69eTDdJVJC7lu16S4dPQJ+Dy82dZBr5Es12iN+NmbJuFgrAuIHbpWrdnA9tOf6Q== @@ -11261,21 +9944,21 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.44.0: +mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": version "1.44.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== -"mime-db@>= 1.36.0 < 2", mime-db@~1.37.0: - version "1.37.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" - integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg== - mime-db@~1.23.0: version "1.23.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659" integrity sha1-oxtAcK2uon1zLqMzdApk0OyaZlk= +mime-db@~1.37.0: + version "1.37.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" + integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg== + mime-types@2.1.11: version "2.1.11" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c" @@ -11283,36 +9966,19 @@ mime-types@2.1.11: dependencies: mime-db "~1.23.0" -mime-types@^2.1.12, mime-types@~2.1.18, mime-types@~2.1.19: - version "2.1.21" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" - integrity sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg== - dependencies: - mime-db "~1.37.0" - -mime-types@~2.1.24: +mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: version "2.1.27" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== dependencies: mime-db "1.44.0" -mime@1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" - integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ== - mime@1.6.0, mime@^1.3.4: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== -mime@^2.4.1: - version "2.4.4" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" - integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== - -mime@^2.4.4: +mime@^2.4.1, mime@^2.4.4: version "2.4.5" resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.5.tgz#d8de2ecb92982dedbb6541c9b6841d7f218ea009" integrity sha512-3hQhEUF027BuxZjQA3s7rIv/7VCQPa27hN9u9g87sEkWaKwQPuXOkVKtOeiyUrnWqTDiOs8Ed2rwg733mB0R5w== @@ -11322,7 +9988,7 @@ mimic-fn@^1.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== -mimic-fn@^2.1.0: +mimic-fn@^2.0.0, mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== @@ -11351,26 +10017,11 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: dependencies: brace-expansion "^1.1.7" -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= - -minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, "minimist@~ 1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= - -minimist@^1.2.5: +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, "minimist@~ 1.2.0": version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== -minimist@~0.0.1: - version "0.0.10" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= - minipass-collect@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" @@ -11386,34 +10037,19 @@ minipass-flush@^1.0.5: minipass "^3.0.0" minipass-pipeline@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz#3dcb6bb4a546e32969c7ad710f2c79a86abba93a" - integrity sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA== + version "1.2.3" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" + integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== dependencies: minipass "^3.0.0" -minipass@^2.2.1, minipass@^2.3.4: - version "2.3.5" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" - integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - minipass@^3.0.0, minipass@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5" - integrity sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w== + version "3.1.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" + integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== dependencies: yallist "^4.0.0" -minizlib@^1.1.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" - integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== - dependencies: - minipass "^2.2.1" - mississippi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" @@ -11443,20 +10079,13 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" -mkdirp@0.5.5, mkdirp@^0.5.3: +mkdirp@0.5.5, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: version "0.5.5" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== dependencies: minimist "^1.2.5" -mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= - dependencies: - minimist "0.0.8" - mocha@7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.1.2.tgz#8e40d198acf91a52ace122cd7599c9ab857b29e6" @@ -11493,9 +10122,9 @@ moment@2.25.3: integrity sha512-PuYv0PHxZvzc15Sp8ybUCoQ+xpyPWvjOuK72a5ovzp2LI32rJXOiIfyoFoYvG3s6EwwrdkMyWuRiEHSZRLJNdg== moment@2.x.x, moment@^2.10.6: - version "2.24.0" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" - integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== + version "2.26.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a" + integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw== move-concurrently@^1.0.1: version "1.0.1" @@ -11514,11 +10143,16 @@ ms@2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= -ms@2.1.1, ms@^2.1.1: +ms@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== +ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" @@ -11538,15 +10172,15 @@ mv@~2: ncp "~2.0.0" rimraf "~2.4.0" -nan@^2.10.0: - version "2.14.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== +nan@^2.12.1, nan@^2.14.0: + version "2.14.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" + integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== -nan@^2.12.1, nan@^2.9.2: - version "2.12.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" - integrity sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw== +nanoid@^3.1.5: + version "3.1.9" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.9.tgz#1f148669c70bb2072dc5af0666e46edb6cd31fb2" + integrity sha512-fFiXlFo4Wkuei3i6w9SQI6yuzGRTGi8Z2zZKZpUxv/bQlBi4jtbVPBSNFZHQA9PNjofWqtIa8p+pnsc0kgZrhQ== nanomatch@^1.2.9: version "1.2.13" @@ -11575,35 +10209,16 @@ ncp@~2.0.0: resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" integrity sha1-GVoh1sRuNh0vsSgbo4uR6d9727M= -needle@^2.2.1: - version "2.2.4" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" - integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== - dependencies: - debug "^2.1.2" - iconv-lite "^0.4.4" - sax "^1.2.4" - -negotiator@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" - integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= - negotiator@0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -neo-async@^2.5.0, neo-async@^2.6.1: +neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== -neo-async@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835" - integrity sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA== - nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" @@ -11633,12 +10248,7 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" -node-fetch@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.3.0.tgz#1a1d940bbfb916a1d3e0219f037e89e71f8c5fa5" - integrity sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA== - -node-fetch@^2.6.0: +node-fetch@^2.2.0, node-fetch@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== @@ -11682,17 +10292,7 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-notifier@^5.2.1: - version "5.3.0" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.3.0.tgz#c77a4a7b84038733d5fb351aafd8a268bfe19a01" - integrity sha512-AhENzCSGZnZJgBARsUjnQ7DnZbzyP+HxlVXuD0xqAnvL8q+OqtSX7lGg9e8nHzwXkMMXNdVeqq4E2M3EUAqX6Q== - dependencies: - growly "^1.3.0" - semver "^5.5.0" - shellwords "^0.1.1" - which "^1.3.0" - -node-notifier@^5.4.2: +node-notifier@^5.2.1, node-notifier@^5.4.2: version "5.4.3" resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== @@ -11703,72 +10303,22 @@ node-notifier@^5.4.2: shellwords "^0.1.1" which "^1.3.0" -node-pre-gyp@^0.10.0: - version "0.10.3" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" - integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4" - -node-pre-gyp@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" - integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4" - node-releases@^1.1.29, node-releases@^1.1.53: - version "1.1.55" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.55.tgz#8af23b7c561d8e2e6e36a46637bab84633b07cee" - integrity sha512-H3R3YR/8TjT5WPin/wOoHOUPHgvj8leuU/Keta/rwelEQN9pA/S2Dx8/se4pZ2LBxSd0nAGzsNzhqwa77v7F1w== + version "1.1.56" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.56.tgz#bc054a417d316e3adac90eafb7e1932802f28705" + integrity sha512-EVo605FhWLygH8a64TjgpjyHYOihkxECwX1bHHr8tETJKWEiWS2YJjPbvsX2jFjnjTNEgBCmk9mLjKG1Mf11cw== node-stream-zip@^1.9.1: - version "1.10.1" - resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.10.1.tgz#d4c648e8d4cf97311e655b3c998d344ccbb421a8" - integrity sha512-fd2jdfvs3xJhSGpipy3EgCHGgFMXZkJh6HeQ8LURfMUW9oHcPEMWLXO657MtMRGJCHvQYQk6dTHZmNycu87PEg== + version "1.11.1" + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.11.1.tgz#7af41e2622f1dc354db602e53f7a62e21a69308e" + integrity sha512-eiNM9UJ26OkbOLfv4VI8X94KRw28xMq2cpWapRsR/aWXGu+hNFvEY889Glm6qi43wtbjcMSU1oFxv5XZ0OKhbA== node-version@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/node-version/-/node-version-1.2.0.tgz#34fde3ffa8e1149bd323983479dda620e1b5060d" integrity sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ== -nopt@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= - dependencies: - abbrev "1" - osenv "^0.1.4" - -normalize-package-data@^2.3.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.2.tgz#6b2abd85774e51f7936f1395e45acb905dc849b2" - integrity sha512-YcMnjqeoUckXTPKZSAsPjUPLxH85XotbpqK3w4RyCwdFQSU5FxxBys8buehkSfg0j9fKvV1hn7O0+8reEgkAiw== - dependencies: - hosted-git-info "^2.1.4" - is-builtin-module "^1.0.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== @@ -11804,19 +10354,6 @@ normalize-url@^2.0.1: query-string "^5.0.1" sort-keys "^2.0.0" -npm-bundled@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" - integrity sha512-m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g== - -npm-packlist@^1.1.6: - version "1.2.0" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f" - integrity sha512-7Mni4Z8Xkx0/oegoqlcao/JpPCPEMtUvsmB0q7mgvlMinykJLSRTYuFqoQLYgGY8biuxIeiHO+QNJKbCfljewQ== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -11824,7 +10361,7 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npmlog@^4.0.2, npmlog@^4.1.2: +npmlog@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== @@ -11857,9 +10394,9 @@ number-is-nan@^1.0.0: integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= nwsapi@^2.0.7: - version "2.0.9" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.9.tgz#77ac0cdfdcad52b6a1151a84e73254edc33ed016" - integrity sha512-nlWFSCTYQcHk/6A9FFnfhKc14c3aFhfdNBXgo8Qgi9QTBu/qg3Ww+Uiz9wMzXd1T8GFxPc2QIHB6Qtf2XFryFQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== oauth-sign@~0.9.0: version "0.9.0" @@ -11890,7 +10427,7 @@ object-inspect@^1.7.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== -object-is@^1.1.2: +object-is@^1.0.1, object-is@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.2.tgz#c5d2e87ff9e119f78b7a088441519e2eec1573b6" integrity sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ== @@ -11898,12 +10435,7 @@ object-is@^1.1.2: define-properties "^1.1.3" es-abstract "^1.17.5" -object-keys@^1.0.11, object-keys@^1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" - integrity sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag== - -object-keys@^1.1.1: +object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -11925,24 +10457,13 @@ object.assign@4.1.0, object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.entries@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" - integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== +object.entries@^1.1.0, object.entries@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" + integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== dependencies: define-properties "^1.1.3" - es-abstract "^1.12.0" - function-bind "^1.1.1" - has "^1.0.3" - -object.entries@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b" - integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" + es-abstract "^1.17.5" has "^1.0.3" "object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.2: @@ -11955,13 +10476,13 @@ object.entries@^1.1.1: function-bind "^1.1.1" has "^1.0.3" -object.getownpropertydescriptors@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= +object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" + integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.1" + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" object.omit@^2.0.0: version "2.0.1" @@ -11978,17 +10499,7 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -object.values@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" - integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.12.0" - function-bind "^1.1.1" - has "^1.0.3" - -object.values@^1.1.1: +object.values@^1.1.0, object.values@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== @@ -12010,10 +10521,10 @@ on-finished@~2.3.0: dependencies: ee-first "1.1.1" -on-headers@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" - integrity sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c= +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" @@ -12044,9 +10555,9 @@ open@^6.2.0, open@^6.3.0: is-wsl "^1.1.0" open@^7.0.0: - version "7.0.3" - resolved "https://registry.yarnpkg.com/open/-/open-7.0.3.tgz#db551a1af9c7ab4c7af664139930826138531c48" - integrity sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA== + version "7.0.4" + resolved "https://registry.yarnpkg.com/open/-/open-7.0.4.tgz#c28a9d315e5c98340bf979fdcb2e58664aa10d83" + integrity sha512-brSA+/yq+b08Hsr4c8fsEW2CRzk1BmfN3SAK/5VCHQ9bdoZJ4qa/+AfR0xHjlbbZUyPkUHs1b8x1RqdyZdkVqQ== dependencies: is-docker "^2.0.0" is-wsl "^2.1.1" @@ -12056,27 +10567,7 @@ opencollective-postinstall@^2.0.0, opencollective-postinstall@^2.0.2: resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== -optimist@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - -optionator@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.4" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - wordwrap "~1.0.0" - -optionator@^0.8.3: +optionator@^0.8.1, optionator@^0.8.3: version "0.8.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== @@ -12122,15 +10613,6 @@ os-homedir@^1.0.0: resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= -os-locale@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" - integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== - dependencies: - execa "^0.7.0" - lcid "^1.0.0" - mem "^1.1.0" - os-locale@^3.0.0, os-locale@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" @@ -12145,14 +10627,6 @@ os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= -osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - otp.js@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/otp.js/-/otp.js-1.2.0.tgz#51dc13a346313c4912c4fede41d344a40b252efe" @@ -12186,9 +10660,9 @@ p-finally@^1.0.0: integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= p-is-promise@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5" - integrity sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg== + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== p-limit@^1.1.0: version "1.3.0" @@ -12197,21 +10671,7 @@ p-limit@^1.1.0: dependencies: p-try "^1.0.0" -p-limit@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68" - integrity sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g== - dependencies: - p-try "^2.0.0" - -p-limit@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" - integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== - dependencies: - p-try "^2.0.0" - -p-limit@^2.3.0: +p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== @@ -12257,9 +10717,9 @@ p-try@^1.0.0: integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= p-try@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" - integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== pad-component@0.0.1: version "0.0.1" @@ -12289,9 +10749,9 @@ param-case@^3.0.3: tslib "^1.10.0" parent-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz#df250bdc5391f4a085fb589dad761f5ad6b865b5" - integrity sha512-8Mf5juOMmiE4FcmzYc4IaiS9L3+9paz2KOiXzkRviCP6aDmN49Hz6EMWz0lGNp9pX80GvvAuLADtyGfW/Em3TA== + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" @@ -12387,12 +10847,7 @@ parse5@4.0.0: resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== -parseurl@~1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" - integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M= - -parseurl@~1.3.3: +parseurl@~1.3.2, parseurl@~1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== @@ -12434,9 +10889,9 @@ path-browserify@0.0.1: integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== path-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.0.tgz#40702a97af46ae00b0ea6fa8998c0b03c0af160d" - integrity sha512-Hkavx/nY4/plImrZPHRk2CL9vpOymZLgEbMNX1U0bjcBL7QN9wODxyx0yaMZURSQaUtSEvDrfAvxa9oPb0at9g== + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== path-dirname@^1.0.0: version "1.0.2" @@ -12480,13 +10935,6 @@ path-to-regexp@0.1.7: resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= -path-to-regexp@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" - integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== - dependencies: - isarray "0.0.1" - path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" @@ -12536,7 +10984,7 @@ phin@^2.9.1: resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== -picomatch@^2.0.4, picomatch@^2.0.5: +picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== @@ -12568,14 +11016,7 @@ pinkie@^2.0.0: resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= -pirates@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.0.tgz#850b18781b4ac6ec58a43c9ed9ec5fe6796addbd" - integrity sha512-8t5BsXy1LUIjn3WWOlOuFDuKswhQb/tkak641lvBgmPOBUQHXveORtlMCp6OdPV1dtuTaEahKA8VNz6uLfKBtA== - dependencies: - node-modules-regexp "^1.0.0" - -pirates@^4.0.1: +pirates@^4.0.0, pirates@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== @@ -12662,16 +11103,16 @@ pnp-webpack-plugin@1.5.0: ts-pnp "^1.1.2" polished@^3.3.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/polished/-/polished-3.4.1.tgz#1eb5597ec1792206365635811d465751f5cbf71c" - integrity sha512-GflTnlP5rrpDoigjczEkS6Ye7NDA4sFvAnlr5hSDrEvjiVj97Xzev3hZlLi3UB27fpxyTS9rWU64VzVLWkG+mg== + version "3.6.3" + resolved "https://registry.yarnpkg.com/polished/-/polished-3.6.3.tgz#68f4fe7ffad46530733029b939dd12978200cb59" + integrity sha512-QJ0q0b6gX1+0OJtPMfgVJxV0vg5XTa4im+Rca989dAtmsd/fEky3X+0A+V+OUXq1nyiDGplJwqD853dTS0gkPg== dependencies: - "@babel/runtime" "^7.4.5" + "@babel/runtime" "^7.9.2" popper.js@^1.14.4, popper.js@^1.14.7: - version "1.15.0" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.15.0.tgz#5560b99bbad7647e9faa475c6b8056621f5a4ff2" - integrity sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA== + version "1.16.1" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" + integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== posix-character-classes@^0.1.0: version "0.1.1" @@ -12750,15 +11191,15 @@ postcss-value-parser@^3.3.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== -postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.3: +postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.3, postcss-value-parser@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== -postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.29" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.29.tgz#d3a903872bd52280b83bce38cdc83ce55c06129e" - integrity sha512-ba0ApvR3LxGvRMMiUa9n0WR4HjzcYm7tS+ht4/2Nd0NLtHpPIH77fuB9Xh1/yJVz9O/E/95Y/dn8ygWsyffXtw== +postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.30, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.30" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz#cc9378beffe46a02cbc4506a0477d05fcea9a8e2" + integrity sha512-nu/0m+NtIzoubO+xdAlwZl/u5S5vi/y6BCsoL8D+8IxsD3XvBS8X4YEADNIVXKVuQvduiucnRv+vPIqj56EGMQ== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -12795,17 +11236,7 @@ pretty-format@^23.6.0: ansi-regex "^3.0.0" ansi-styles "^3.2.0" -pretty-format@^24.7.0, pretty-format@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" - integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw== - dependencies: - "@jest/types" "^24.8.0" - ansi-regex "^4.0.0" - ansi-styles "^3.2.0" - react-is "^16.8.4" - -pretty-format@^24.9.0: +pretty-format@^24.7.0, pretty-format@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== @@ -12815,7 +11246,7 @@ pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -pretty-format@^25.2.0, pretty-format@^25.2.1, pretty-format@^25.5.0: +pretty-format@^25.1.0, pretty-format@^25.2.0, pretty-format@^25.2.1, pretty-format@^25.5.0: version "25.5.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== @@ -12830,22 +11261,29 @@ pretty-hrtime@^1.0.3: resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= -prismjs@^1.8.4, prismjs@~1.17.0: +prismjs@^1.8.4: + version "1.20.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.20.0.tgz#9b685fc480a3514ee7198eac6a3bf5024319ff03" + integrity sha512-AEDjSrVNkynnw6A+B1DsFkd6AVdTnp+/WoUixFRULlCLZVRZlVQMVWio/16jv7G1FscUxQxOQhWwApgbnxr6kQ== + optionalDependencies: + clipboard "^2.0.0" + +prismjs@~1.17.0: version "1.17.1" resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.17.1.tgz#e669fcbd4cdd873c35102881c33b14d0d68519be" integrity sha512-PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q== optionalDependencies: clipboard "^2.0.0" -private@^0.1.6, private@^0.1.8: +private@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== process-nextick-args@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" - integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== process@^0.11.10: version "0.11.10" @@ -12899,7 +11337,7 @@ promise@^7, promise@^7.1.1: dependencies: asap "~2.0.3" -prompts@2.3.2: +prompts@2.3.2, prompts@^2.0.1: version "2.3.2" resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== @@ -12915,15 +11353,7 @@ prompts@^0.1.9: kleur "^2.0.1" sisteransi "^0.1.1" -prompts@^2.0.1: - version "2.0.4" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.4.tgz#179f9d4db3128b9933aa35f93a800d8fce76a682" - integrity sha512-HTzM3UWp/99A0gk51gAegwo1QRYA7xjcZufMNe33rCclFszUYAuHe1fIN/3ZmiHeGPkUsNaRyQm1hHOfM0PKxA== - dependencies: - kleur "^3.0.2" - sisteransi "^1.0.0" - -prop-types@15.7.2, prop-types@^15.7.2: +prop-types@15.7.2, prop-types@^15.5.10, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== @@ -12932,14 +11362,6 @@ prop-types@15.7.2, prop-types@^15.7.2: object-assign "^4.1.1" react-is "^16.8.1" -prop-types@^15.5.10, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2: - version "15.6.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" - integrity sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ== - dependencies: - loose-envify "^1.3.1" - object-assign "^4.1.1" - proper-lockfile@^3.0.2: version "3.2.0" resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-3.2.0.tgz#89ca420eea1d55d38ca552578851460067bcda66" @@ -12949,12 +11371,12 @@ proper-lockfile@^3.0.2: retry "^0.12.0" signal-exit "^3.0.2" -property-information@^5.0.1: - version "5.2.2" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.2.2.tgz#20555eafd2296278a682e5a51d5123e7878ecc30" - integrity sha512-N2moasZmjn2mjVGIWpaqz5qnz6QyeQSGgGvMtl81gA9cPTWa6wpesRSe/quNnOjUHpvSH1oZx0pdz0EEckLFnA== +property-information@^5.0.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.5.0.tgz#4dc075d493061a82e2b7d096f406e076ed859943" + integrity sha512-RgEbCx2HLa1chNgvChcx+rrCWD0ctBmGSE0M7lVm1yyv4UbvbrWoXp/BkVLZefzjrRBGW8/Js6uh/BnlHXFyjA== dependencies: - xtend "^4.0.1" + xtend "^4.0.0" proxy-addr@~2.0.5: version "2.0.6" @@ -12974,10 +11396,10 @@ pseudomap@^1.0.2: resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= -psl@^1.1.24, psl@^1.1.28: - version "1.1.31" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" - integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw== +psl@^1.1.28: + version "1.8.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== public-encrypt@^4.0.0: version "4.0.3" @@ -13021,7 +11443,7 @@ punycode@1.3.2: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= -punycode@^1.2.4, punycode@^1.4.1: +punycode@^1.2.4: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= @@ -13036,11 +11458,16 @@ qr-image@^3.1.0: resolved "https://registry.yarnpkg.com/qr-image/-/qr-image-3.2.0.tgz#9fa8295beae50c4a149cf9f909a1db464a8672e8" integrity sha1-n6gpW+rlDEoUnPn5CaHbRkqGcug= -qs@6.7.0, qs@^6.6.0: +qs@6.7.0: version "6.7.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== +qs@^6.6.0: + version "6.9.4" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" + integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== + qs@~6.5.2: version "6.5.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" @@ -13064,7 +11491,7 @@ query-string@^5.0.1: object-assign "^4.1.0" strict-uri-encode "^1.0.0" -query-string@^6.11.1: +query-string@^6.12.1: version "6.12.1" resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.12.1.tgz#2ae4d272db4fba267141665374e49a1de09e8a7c" integrity sha512-OHj+zzfRMyj3rmo/6G8a5Ifvw3AleL/EbcHMD27YA31Q+cO5lfmQxECkImuNVjcskLcvBRVHNAB3w6udMs1eAA== @@ -13083,11 +11510,6 @@ querystring@0.2.0, querystring@^0.2.0: resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= -querystringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef" - integrity sha512-sluvZZ1YiTLD5jsqZcDmFyV2EwToyXZBfpoVOmktMmW+VEnhgakFHnasVph65fOjGPTWN0Nw3+XQaSeMayr0kg== - querystringify@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" @@ -13137,11 +11559,6 @@ range-parser@^1.2.1, range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -range-parser@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= - raw-body@2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" @@ -13160,7 +11577,7 @@ raw-loader@^3.1.0: loader-utils "^1.1.0" schema-utils "^2.0.1" -rc@^1.2.7, rc@^1.2.8: +rc@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== @@ -13209,9 +11626,9 @@ react-dev-utils@^9.0.0: text-table "0.2.0" react-devtools-core@^4.0.6: - version "4.6.0" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.6.0.tgz#2443b3c6fac78b801702af188abc6d83d56224e6" - integrity sha512-sjR3KC5VvGV7X6vzR3OTutPT5VeBcSKwoIXUwihpl1Nb4dkmweEbzCTPx2PYMVAqc+NZ5tPGhqBzXV+iGg5CNA== + version "4.7.0" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.7.0.tgz#71e89087352abe60c160dfb60a7fa700f612af7a" + integrity sha512-6w/e0nkV0gogUnfz+9Q3yiMtYYol9T+oD27UIf4XWmula1KvSTTkQ9DnzLOqSSch8d1YzNWbTxguuNJMof58ww== dependencies: shell-quote "^1.6.1" ws "^7" @@ -13227,19 +11644,19 @@ react-dom@16.11.0: scheduler "^0.17.0" react-dom@^16.8.3: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f" - integrity sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA== + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" + integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.13.6" + scheduler "^0.19.1" react-draggable@^4.0.3: - version "4.3.1" - resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.3.1.tgz#f9c0cdcf2279ec5b79c65b70cdfd9361d82fa9ee" - integrity sha512-m8QeV+eIi7LhD5mXoLqDzLbokc6Ncwa0T34fF6uJzWSs4vc4fdZI/XGqHYoEn91T8S6qO+BSXslONh7Jz9VPQQ== + version "4.4.2" + resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.4.2.tgz#f3cefecee25f467f865144cda0d066e5f05f94a0" + integrity sha512-zLQs4R4bnBCGnCVTZiD8hPsHtkiJxgMpGDlRESM+EHQo8ysXhKJ2GKdJ8UxxLJdRVceX1j19jy+hQS2wHislPQ== dependencies: classnames "^2.2.5" prop-types "^15.6.0" @@ -13249,10 +11666,10 @@ react-error-overlay@^6.0.3: resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108" integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA== -react-fast-compare@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" - integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw== +react-fast-compare@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.1.1.tgz#0becf31e3812fa70dc231e259f40d892d4767900" + integrity sha512-SCsAORWK59BvauR2L1BTdjQbJcSGJJz03U0awektk2hshLKrITDDFTlgGCqIZpTDlPC/NFlZee6xTMzXPVLiHw== react-focus-lock@^2.1.0: version "2.3.1" @@ -13267,15 +11684,15 @@ react-focus-lock@^2.1.0: use-sidecar "^1.0.1" react-helmet-async@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.2.tgz#bb55dd8268f7b15aac69c6b22e2f950abda8cc44" - integrity sha512-qzzchrM/ibHuPS/60ief8jaibPunuRdeta4iBDQV+ri2SFKwOV+X2NlEpvevZOauhmHrH/I6dI4E90EPVfJBBg== + version "1.0.6" + resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.6.tgz#11c15c74e79b3f66670c73779bef3e0e352b1d4e" + integrity sha512-t+bhAI4NgxfEv8ez4r77cLfR4O4Z55E/FH2DT+uiE4U7yfWgAk7OAOi7IxHxuYEVLI26bqjZvlVCkpC5/5AoNA== dependencies: - "@babel/runtime" "7.3.4" - invariant "2.2.4" - prop-types "15.7.2" - react-fast-compare "2.0.4" - shallowequal "1.1.0" + "@babel/runtime" "^7.9.2" + invariant "^2.2.4" + prop-types "^15.7.2" + react-fast-compare "^3.0.1" + shallowequal "^1.1.0" react-hotkeys@2.0.0: version "2.0.0" @@ -13293,26 +11710,11 @@ react-inspector@^4.0.0: is-dom "^1.0.9" prop-types "^15.6.1" -react-is@^16.12.0, react-is@^16.13.0: +react-is@^16.12.0, react-is@^16.13.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-is@^16.7.0: - version "16.7.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.7.0.tgz#c1bd21c64f1f1364c6f70695ec02d69392f41bfa" - integrity sha512-Z0VRQdF4NPDoI0tsXVMLkJLiwEBa+RP66g0xDHxgxysxSoCUccSten4RTF/UFvZF1dZvZ9Zu1sx+MDXwcOR34g== - -react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" - integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== - -react-is@^16.9.0: - version "16.11.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" - integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw== - react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" @@ -13405,7 +11807,7 @@ react-native-flipper@^0.34.0: resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.34.0.tgz#7df1f38ba5d97a9321125fe0fccbe47d99e6fa1d" integrity sha512-48wgm29HJTOlZ0DibBsvXueEOY0EPIVL0wWKbwRfgrk86+luSEuLW3aZC50oJa95zSFb9qYShTV/6dWqh4Jamg== -react-native-gesture-handler@1.6.1: +react-native-gesture-handler@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-1.6.1.tgz#678e2dce250ed66e93af409759be22cd6375dd17" integrity sha512-gQgIKhDiYf754yzhhliagLuLupvGb6ZyBdzYzr7aus3Fyi87TLOw63ers+r4kGw0h26oAWTAdHd34JnF4NeL6Q== @@ -13416,8 +11818,8 @@ react-native-gesture-handler@1.6.1: prop-types "^15.7.2" react-native-image-crop-picker@RocketChat/react-native-image-crop-picker: - version "0.28.0" - resolved "https://codeload.github.com/RocketChat/react-native-image-crop-picker/tar.gz/d97520ee4f48ab90dfc40c4ef0e9f9031ad55375" + version "0.30.0" + resolved "https://codeload.github.com/RocketChat/react-native-image-crop-picker/tar.gz/2b52b25b9c328cefd16fd71421eda559c24efc00" react-native-image-progress@^1.1.1: version "1.1.1" @@ -13426,10 +11828,10 @@ react-native-image-progress@^1.1.1: dependencies: prop-types "^15.5.10" -react-native-iphone-x-helper@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.0.tgz#9f8a376eb00bc712115abff4420318a0063fa796" - integrity sha512-xIeTo4s77wwKgBZLVRIZC9tM9/PkXS46Ul76NXmvmixEb3ZwqGdQesR3zRiLMOoIdfOURB6N9bba9po7+x9Bag== +react-native-iphone-x-helper@^1.0.3, react-native-iphone-x-helper@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772" + integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ== react-native-jitsi-meet@2.1.1: version "2.1.1" @@ -13530,7 +11932,7 @@ react-native-prompt-android@^1.1.0: resolved "https://registry.yarnpkg.com/react-native-prompt-android/-/react-native-prompt-android-1.1.0.tgz#3c5168029075cb9f72549fd5f92403372fb234e9" integrity sha512-4JoyEaT2ZnK9IH+tDFpbTiQBgva8UIFGQf4/Uw/tnEVWBERlVlzcs5B82T9BkeEhEqXhp89JaiSBnLWj30lciw== -react-native-reanimated@1.8.0: +react-native-reanimated@^1.8.0: version "1.8.0" resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-1.8.0.tgz#0b5719b20c1fed9aaf8afd9a12e21c9bd46ee428" integrity sha512-vGTt94lE5fsZmfMwERWFIsCr5LHsyllOESeNvlKryLgAg7h4cnJ5XSmVSy4L3qogdgFYCL6HEgY+s7tQmKXiiQ== @@ -13544,21 +11946,19 @@ react-native-responsive-ui@^1.1.1: dependencies: lodash "^4.17.4" -react-native-safe-area-view@^0.14.6: - version "0.14.8" - resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.8.tgz#ef33c46ff8164ae77acad48c3039ec9c34873e5b" - integrity sha512-MtRSIcZNstxv87Jet+UsPhEd1tpGe8cVskDXlP657x6rHpSrbrc+y13ZNXrwAgGNNhqQNX7UJT68ZIq//ZRmvw== - dependencies: - hoist-non-react-statics "^2.3.1" +react-native-safe-area-context@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-3.0.2.tgz#95dd7e56bc89bcc4f3f7bb5fada30c98420328b2" + integrity sha512-x3yVMsxwe9GyvIkv0Q5jy2CWYN7VO0/CJTFGG5kSiMo8FFTQJbWtuWGANFqxDzEH5NEV7/SfK+qTgAh931KyUw== -react-native-safe-area-view@^0.14.9: +react-native-safe-area-view@^0.14.6: version "0.14.9" resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.9.tgz#90ee8383037010d9a5055a97cf97e4c1da1f0c3d" integrity sha512-WII/ulhpVyL/qbYb7vydq7dJAfZRBcEhg4/UWt6F6nAKpLa3gAceMOxBxI914ppwSP/TdUsandFy6lkJQE0z4A== dependencies: hoist-non-react-statics "^2.3.1" -react-native-screens@2.7.0: +react-native-screens@^2.7.0: version "2.7.0" resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-2.7.0.tgz#2d3cf3c39a665e9ca1c774264fccdb90e7944047" integrity sha512-n/23IBOkrTKCfuUd6tFeRkn3lB2QZ3cmvoubRscR0JU/Zl4/ZyKmwnFmUv1/Fr+2GH/H8UTX59kEKDYYg3dMgA== @@ -13583,13 +11983,6 @@ react-native-swipe-gestures@^1.0.4: resolved "https://registry.yarnpkg.com/react-native-swipe-gestures/-/react-native-swipe-gestures-1.0.5.tgz#a172cb0f3e7478ccd681fd36b8bfbcdd098bde7c" integrity sha512-Ns7Bn9H/Tyw278+5SQx9oAblDZ7JixyzeOczcBK8dipQk2pD7Djkcfnf1nB/8RErAmMLL9iXgW0QHqiII8AhKw== -react-native-tab-view@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-1.4.1.tgz#f113cd87485808f0c991abec937f70fa380478b9" - integrity sha512-Bke8KkDcDhvB/z0AS7MnQKMD2p6Kwfc1rSKlMOvg9CC5CnClQ2QEnhPSbwegKDYhUkBI92iH/BYy7hNSm5kbUQ== - dependencies: - prop-types "^15.6.1" - react-native-unimodules@0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/react-native-unimodules/-/react-native-unimodules-0.9.1.tgz#72e145a344e1b86baf513e9bfd96bbac227302b3" @@ -13669,13 +12062,6 @@ react-native@0.62.2: use-subscription "^1.0.0" whatwg-fetch "^3.0.0" -react-navigation-drawer@1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/react-navigation-drawer/-/react-navigation-drawer-1.4.0.tgz#70f3dd83e3da9cd4ea6e2739526502c823d466b9" - integrity sha512-ZyWBozcjB2aZ7vwCALv90cYA2NpDjM+WALaiYRshvPvue8l7cqynePbHK8GhlMGyJDwZqp4MxQmu8u1XAKp3Bw== - dependencies: - react-native-tab-view "^1.2.0" - react-navigation-header-buttons@3.0.5: version "3.0.5" resolved "https://registry.yarnpkg.com/react-navigation-header-buttons/-/react-navigation-header-buttons-3.0.5.tgz#5b8c0fc32bc59382f02015e4b2f19a135b99dca4" @@ -13683,36 +12069,22 @@ react-navigation-header-buttons@3.0.5: dependencies: react-native-platform-touchable "^1.1.1" -react-navigation-stack@^1.10.3: - version "1.10.3" - resolved "https://registry.yarnpkg.com/react-navigation-stack/-/react-navigation-stack-1.10.3.tgz#e714e442b20427f0d2d3c18fce1f9e8cfe69be0b" - integrity sha512-1gksFi/g/Lg9sBhgLlD0OiEB5xnatHb4C0eNMA5tli9cTVlhq375XNPIqOiTyftibBmjdApAsZFj5srUCoOu/w== - dependencies: - prop-types "^15.7.2" - -react-navigation@4.3.9: - version "4.3.9" - resolved "https://registry.yarnpkg.com/react-navigation/-/react-navigation-4.3.9.tgz#3b6a7224ac2ef6388593412c33aed6eacca10cbb" - integrity sha512-nqAHS7jL1hgFPZeYt1vU8zVuF2Ay3bVVdCYvJSFJ9UvQZOtqPr/Wen/Ya9fRc+AvTtf3+AJn97K8xIiz2HHusQ== - dependencies: - "@react-navigation/core" "^3.7.6" - "@react-navigation/native" "^3.7.13" - react-popper-tooltip@^2.8.3: - version "2.8.3" - resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.8.3.tgz#1c63e7473a96362bd93be6c94fa404470a265197" - integrity sha512-g5tfxmuj8ClNVwH4zswYJcD3GKoc5RMeRawd/WZnbyZGEDecsRKaVL+Kj7L3BG7w5qb6/MHcLTG8yE4CidwezQ== + version "2.11.1" + resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-2.11.1.tgz#3c4bdfd8bc10d1c2b9a162e859bab8958f5b2644" + integrity sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ== dependencies: - "@babel/runtime" "^7.4.5" - react-popper "^1.3.3" + "@babel/runtime" "^7.9.2" + react-popper "^1.3.7" -react-popper@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.3.tgz#2c6cef7515a991256b4f0536cd4bdcb58a7b6af6" - integrity sha512-ynMZBPkXONPc5K4P5yFWgZx5JGAUIP3pGGLNs58cfAPgK67olx7fmLp+AdpZ0+GoQ+ieFDa/z4cdV6u7sioH6w== +react-popper@^1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.7.tgz#f6a3471362ef1f0d10a4963673789de1baca2324" + integrity sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww== dependencies: "@babel/runtime" "^7.1.2" - create-react-context "<=0.2.2" + create-react-context "^0.3.0" + deep-equal "^1.1.1" popper.js "^1.14.4" prop-types "^15.6.1" typed-styles "^0.0.7" @@ -13766,9 +12138,9 @@ react-test-renderer@16.11.0: scheduler "^0.17.0" react-textarea-autosize@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.0.tgz#3132cb77e65d94417558d37c0bfe415a5afd3445" - integrity sha512-c2FlR/fP0qbxmlrW96SdrbgP/v0XZMTupqB90zybvmDVDutytUgPl7beU35klwcTeMepUIQEpQUn3P3bdshGPg== + version "7.1.2" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz#70fdb333ef86bcca72717e25e623e90c336e2cda" + integrity sha512-uH3ORCsCa3C6LHxExExhF4jHoXYCQwE5oECmrRsunlspaDAbS4mGKNlWZqjLfInWtFQcf0o1n1jC/NGXFdUBCg== dependencies: "@babel/runtime" "^7.1.2" prop-types "^15.6.0" @@ -13788,14 +12160,13 @@ react@16.11.0: prop-types "^15.6.2" react@^16.8.3: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe" - integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw== + version "16.13.1" + resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" + integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.13.6" reactotron-core-client@2.8.10: version "2.8.10" @@ -13894,7 +12265,7 @@ read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.3.3, readable-stream@^2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== @@ -13907,19 +12278,6 @@ read-pkg@^5.2.0: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@~2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" @@ -13945,14 +12303,14 @@ readdirp@~3.2.0: dependencies: picomatch "^2.0.4" -realpath-native@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz#cd51ce089b513b45cf9b1516c82989b51ccc6560" - integrity sha512-+S3zTvVt9yTntFrBpm7TQmQ3tzpCrnA1a/y+3cUHAc9ZR6aIjG0WNLR+Rj79QpJktY+VeW/TQtFlQ1bzsehI8g== +readdirp@~3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" + integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== dependencies: - util.promisify "^1.0.0" + picomatch "^2.2.1" -realpath-native@^1.1.0: +realpath-native@^1.0.0, realpath-native@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== @@ -13996,7 +12354,7 @@ redux-saga@1.1.3: dependencies: "@redux-saga/core" "^1.1.3" -redux@4.0.5: +redux@4.0.5, redux@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.5.tgz#4db5de5816e17891de8a80c424232d06f051d93f" integrity sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w== @@ -14004,30 +12362,15 @@ redux@4.0.5: loose-envify "^1.4.0" symbol-observable "^1.2.0" -redux@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.4.tgz#4ee1aeb164b63d6a1bcc57ae4aa0b6e6fa7a3796" - integrity sha512-vKv4WdiJxOWKxK0yRoaK3Y4pxxB0ilzVx6dszU2W8wLxlb2yikRph4iV/ymtdJ6ZxpBLFbyrxklnT5yBbQSl3Q== - dependencies: - loose-envify "^1.4.0" - symbol-observable "^1.2.0" - refractor@^2.4.1: - version "2.10.0" - resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.10.0.tgz#4cc7efc0028a87924a9b31d82d129dec831a287b" - integrity sha512-maW2ClIkm9IYruuFYGTqKzj+m31heq92wlheW4h7bOstP+gf8bocmMec+j7ljLcaB1CAID85LMB3moye31jH1g== + version "2.10.1" + resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e" + integrity sha512-Xh9o7hQiQlDbxo5/XkOX6H+x/q8rmlmZKr97Ie1Q8ZM32IRRd3B/UxuA/yXDW79DBSXGWxm2yRTbcTVmAciJRw== dependencies: hastscript "^5.0.0" parse-entities "^1.1.2" prismjs "~1.17.0" -regenerate-unicode-properties@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c" - integrity sha512-s5NGghCE4itSlUS+0WUj88G6cfMVMmH8boTPNvABf8od+2dhT9WDlWu8n01raQAJZMOK8Ch6jSexaRO7swd6aw== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties@^8.2.0: version "8.2.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" @@ -14045,28 +12388,11 @@ regenerator-runtime@^0.11.0: resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== -regenerator-runtime@^0.12.0: - version "0.12.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de" - integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg== - -regenerator-runtime@^0.13.2: - version "0.13.2" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447" - integrity sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA== - -regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: +regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: version "0.13.5" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== -regenerator-transform@^0.13.3: - version "0.13.3" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb" - integrity sha512-5ipTrZFSq5vU2YoGoww4uaRVAK4wyYC4TSICibbfEPOruUu8FFP7ErV0BjmbIOEpn3O/k9na9UEdYR/3m7N6uA== - dependencies: - private "^0.1.6" - regenerator-transform@^0.14.2: version "0.14.4" resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" @@ -14090,7 +12416,7 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp.prototype.flags@^1.3.0: +regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== @@ -14103,18 +12429,6 @@ regexpp@^2.0.1: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== -regexpu-core@^4.1.3: - version "4.4.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.4.0.tgz#8d43e0d1266883969720345e70c275ee0aec0d32" - integrity sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^7.0.0" - regjsgen "^0.5.0" - regjsparser "^0.6.0" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.0.2" - regexpu-core@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" @@ -14127,23 +12441,11 @@ regexpu-core@^4.7.0: unicode-match-property-ecmascript "^1.0.4" unicode-match-property-value-ecmascript "^1.2.0" -regjsgen@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" - integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== - regjsgen@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== -regjsparser@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" - integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== - dependencies: - jsesc "~0.5.0" - regjsparser@^0.6.4: version "0.6.4" resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" @@ -14194,26 +12496,26 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" -request-promise-core@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" - integrity sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY= +request-promise-core@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" + integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== dependencies: - lodash "^4.13.1" + lodash "^4.17.15" request-promise-native@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" - integrity sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU= + version "1.0.8" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" + integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== dependencies: - request-promise-core "1.1.1" - stealthy-require "^1.1.0" - tough-cookie ">=2.3.3" + request-promise-core "1.1.3" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" request@^2.87.0: - version "2.88.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" - integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -14222,7 +12524,7 @@ request@^2.87.0: extend "~3.0.2" forever-agent "~0.6.1" form-data "~2.3.2" - har-validator "~5.1.0" + har-validator "~5.1.3" http-signature "~1.2.0" is-typedarray "~1.0.0" isstream "~0.1.2" @@ -14232,7 +12534,7 @@ request@^2.87.0: performance-now "^2.1.0" qs "~6.5.2" safe-buffer "^5.1.2" - tough-cookie "~2.4.3" + tough-cookie "~2.5.0" tunnel-agent "^0.6.0" uuid "^3.3.2" @@ -14298,27 +12600,13 @@ resolve@1.1.7: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@^1.1.6, resolve@^1.12.0, resolve@^1.15.1: +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1: version "1.17.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== dependencies: path-parse "^1.0.6" -resolve@^1.10.0, resolve@^1.11.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" - integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== - dependencies: - path-parse "^1.0.6" - -resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1: - version "1.10.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" - integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== - dependencies: - path-parse "^1.0.6" - restore-cursor@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" @@ -14345,14 +12633,14 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= -rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: +rimraf@2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" -rimraf@^2.2.8, rimraf@^2.7.1: +rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== @@ -14413,16 +12701,14 @@ rsvp@^3.3.3: integrity sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw== rsvp@^4.8.4: - version "4.8.4" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911" - integrity sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA== + version "4.8.5" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== -run-async@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" - integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= - dependencies: - is-promise "^2.1.0" +run-async@^2.2.0, run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== run-node@^1.0.0: version "1.0.0" @@ -14454,9 +12740,9 @@ rx-lite@*, rx-lite@^4.0.8: integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= rxjs-compat@^6.3.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/rxjs-compat/-/rxjs-compat-6.5.3.tgz#18440949b2678bf87a78a754009676b2c49183dc" - integrity sha512-BIJX2yovz3TBpjJoAZyls2QYuU6ZiCaZ+U96SmxQpuSP/qDUfiXPKOVLbThBB2WZijNHkdTTJXKRwvv5Y48H7g== + version "6.5.5" + resolved "https://registry.yarnpkg.com/rxjs-compat/-/rxjs-compat-6.5.5.tgz#073c40510f29c45a2a5fc02dde87f8c3ad75f2c2" + integrity sha512-F42sssVbUyWH4vJswEo6m+Eh02xHv3q93n8S7nUJO58R7sbc3CvJIOts605zdaBhWa1xMB9aVSyqPqhQ5q3eXg== rxjs@^5.4.3: version "5.5.12" @@ -14465,17 +12751,10 @@ rxjs@^5.4.3: dependencies: symbol-observable "1.0.1" -rxjs@^6.2.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" - integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA== - dependencies: - tslib "^1.9.0" - -rxjs@^6.4.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.4.0.tgz#f3bb0fe7bda7fb69deac0c16f17b50b0b8790504" - integrity sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw== +rxjs@^6.2.2, rxjs@^6.4.0, rxjs@^6.5.3: + version "6.5.5" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" + integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== dependencies: tslib "^1.9.0" @@ -14484,15 +12763,15 @@ safe-buffer@5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== -safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.2.0, safe-buffer@~5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== safe-json-stringify@~1: version "1.2.0" @@ -14543,9 +12822,9 @@ sane@^4.0.3: walker "~1.0.5" sanitize-filename@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a" - integrity sha1-YS2hyWRz+gLczaktzVtKsWSmdyo= + version "1.6.3" + resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" + integrity sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg== dependencies: truncate-utf8-bytes "^1.0.0" @@ -14562,10 +12841,10 @@ scheduler@0.17.0, scheduler@^0.17.0: loose-envify "^1.1.0" object-assign "^4.1.1" -scheduler@^0.13.6: - version "0.13.6" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889" - integrity sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ== +scheduler@^0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" + integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -14597,10 +12876,10 @@ semver-compare@^1.0.0: resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= -"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" - integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== +"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== semver@7.0.0: version "7.0.0" @@ -14612,40 +12891,11 @@ semver@7.3.2: resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== -semver@^5.7.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.0.0.tgz#05e359ee571e5ad7ed641a6eec1e547ba52dea65" - integrity sha512-0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ== - -semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: +semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -send@0.16.2: - version "0.16.2" - resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" - integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw== - dependencies: - debug "2.6.9" - depd "~1.1.2" - destroy "~1.0.4" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "~1.6.2" - mime "1.4.1" - ms "2.0.0" - on-finished "~2.3.0" - range-parser "~1.2.0" - statuses "~1.4.0" - send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" @@ -14691,7 +12941,7 @@ serve-favicon@^2.5.0: parseurl "~1.3.2" safe-buffer "5.1.1" -serve-static@1.14.1: +serve-static@1.14.1, serve-static@^1.13.1: version "1.14.1" resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== @@ -14701,35 +12951,15 @@ serve-static@1.14.1: parseurl "~1.3.3" send "0.17.1" -serve-static@^1.13.1: - version "1.13.2" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" - integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.2" - send "0.16.2" - set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= -set-value@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" - integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.1" - to-object-path "^0.3.0" - -set-value@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" - integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== dependencies: extend-shallow "^2.0.1" is-extendable "^0.1.1" @@ -14741,11 +12971,6 @@ setimmediate@^1.0.4, setimmediate@^1.0.5: resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - setprototypeof@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" @@ -14760,11 +12985,11 @@ sha.js@^2.4.0, sha.js@^2.4.8: safe-buffer "^5.0.1" shallow-equal@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shallow-equal/-/shallow-equal-1.2.0.tgz#fd828d2029ff4e19569db7e19e535e94e2d1f5cc" - integrity sha512-Z21pVxR4cXsfwpMKMhCEIO1PCi5sp7KEp+CmOpBQ+E8GpHwKOw2sEzk7sgblM3d/j4z4gakoWEoPcjK0VJQogA== + version "1.2.1" + resolved "https://registry.yarnpkg.com/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da" + integrity sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA== -shallowequal@1.1.0, shallowequal@^1.1.0: +shallowequal@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== @@ -14781,7 +13006,7 @@ shebang-regex@^1.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= -shell-quote@1.6.1, shell-quote@^1.6.1: +shell-quote@1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= @@ -14791,7 +13016,7 @@ shell-quote@1.6.1, shell-quote@^1.6.1: array-reduce "~0.0.0" jsonify "~0.0.0" -shell-quote@1.7.2: +shell-quote@1.7.2, shell-quote@^1.6.1: version "1.7.2" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== @@ -14826,31 +13051,38 @@ side-channel@^1.0.2: object-inspect "^1.7.0" signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= + version "3.0.3" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== simple-plist@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.0.0.tgz#bed3085633b22f371e111f45d159a1ccf94b81eb" - integrity sha512-043L2rO80LVF7zfZ+fqhsEkoJFvW8o59rt/l4ctx1TJWoTx7/jkiS1R5TatD15Z1oYnuLJytzE7gcnnBuIPL2g== + version "1.1.0" + resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.0.tgz#8354ab63eb3922a054c78ce96c209c532e907a23" + integrity sha512-2i5Tc0BYAqppM7jVzmNrI+aEUntPolIq4fDgji6WuNNn1D/qYdn2KwoLhZdzQkE04lu9L5tUoeJsjuJAvd+lFg== dependencies: - bplist-creator "0.0.7" - bplist-parser "0.1.1" + bplist-creator "0.0.8" + bplist-parser "0.2.0" plist "^3.0.1" +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + simplebar-react@^1.0.0-alpha.6: - version "1.1.0" - resolved "https://registry.yarnpkg.com/simplebar-react/-/simplebar-react-1.1.0.tgz#9241817265aee28b40abced66d6a2663e046d721" - integrity sha512-0nbUpoB5Gq3z2dbhRjPxwTLlscgFjCw8vKQRmbXIr47JMc5BeHj/WbZdVAESuKAvua7ESh6mkxbzywMNgRdbCw== + version "1.2.3" + resolved "https://registry.yarnpkg.com/simplebar-react/-/simplebar-react-1.2.3.tgz#bd81fa9827628470e9470d06caef6ece15e1c882" + integrity sha512-1EOWJzFC7eqHUp1igD1/tb8GBv5aPQA5ZMvpeDnVkpNJ3jAuvmrL2kir3HuijlxhG7njvw9ssxjjBa89E5DrJg== dependencies: prop-types "^15.6.1" - simplebar "^4.1.0" + simplebar "^4.2.3" -simplebar@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/simplebar/-/simplebar-4.1.0.tgz#c4b78b278dd0ce41ed70a71473bfad8132a6260f" - integrity sha512-kX+CsWbWLeufIsqJl8xg5J4WbYMyq5NONR/aTaehN8XLQxOthSgRT/uAXsqX9Yrw3iiGxD9PPwM1PmEJfWAdcg== +simplebar@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/simplebar/-/simplebar-4.2.3.tgz#dac40aced299c17928329eab3d5e6e795fafc10c" + integrity sha512-9no0pK7/1y+8/oTF3sy/+kx0PjQ3uk4cYwld5F1CJGk2gx+prRyUq8GRfvcVLq5niYWSozZdX73a2wIr1o9l/g== dependencies: can-use-dom "^0.1.0" core-js "^3.0.1" @@ -14864,11 +13096,6 @@ sisteransi@^0.1.1: resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" integrity sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g== -sisteransi@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" - integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ== - sisteransi@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" @@ -14958,11 +13185,11 @@ source-list-map@^2.0.0: integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== source-map-resolve@^0.5.0: - version "0.5.2" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" - integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== dependencies: - atob "^2.1.1" + atob "^2.1.2" decode-uri-component "^0.2.0" resolve-url "^0.2.1" source-map-url "^0.4.0" @@ -14975,15 +13202,7 @@ source-map-support@^0.4.15: dependencies: source-map "^0.5.6" -source-map-support@^0.5.6, source-map-support@^0.5.9: - version "0.5.10" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c" - integrity sha512-YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@~0.5.12: +source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.12: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== @@ -15007,9 +13226,9 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== space-separated-tokens@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.4.tgz#27910835ae00d0adfcdbd0ad7e611fb9544351fa" - integrity sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA== + version "1.1.5" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" + integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== spdx-correct@^3.0.0: version "3.1.0" @@ -15020,22 +13239,22 @@ spdx-correct@^3.0.0: spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" - integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== spdx-expression-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== dependencies: spdx-exceptions "^2.1.0" spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" - integrity sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g== + version "3.0.5" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" + integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== split-on-first@^1.0.0: version "1.1.0" @@ -15100,9 +13319,11 @@ stack-utils@^1.0.1: integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== stacktrace-parser@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz#01397922e5f62ecf30845522c95c4fe1d25e7d4e" - integrity sha1-ATl5IuX2Ls8whFUiyVxP4dJefU4= + version "0.1.10" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" + integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== + dependencies: + type-fest "^0.7.1" static-extend@^0.1.1: version "0.1.2" @@ -15112,30 +13333,20 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" -"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: +"statuses@>= 1.5.0 < 2", statuses@~1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= -statuses@~1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" - integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= - -statuses@~1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" - integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew== - -stealthy-require@^1.1.0: +stealthy-require@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= store2@^2.7.1: - version "2.8.0" - resolved "https://registry.yarnpkg.com/store2/-/store2-2.8.0.tgz#032d5dcbd185a5d74049d67a1765ff1e75faa04b" - integrity sha512-FBJpcOEZQLZBIGL4Yp7W5RgZ0ejaURmcfUjIpyOb64BpI8z/iJXw7zd/NTBeq304dVMxuWVDZEUUCGn7llaVrA== + version "2.11.2" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.11.2.tgz#a298e5e97b21b3ce7419b732540bc7c79cb007db" + integrity sha512-TQMKs+C6n9idtzLpxluikmDCYiDJrTbbIGn9LFxMg0BVTu+8JZKSlXTWYRpOFKlfKD5HlDWLVpJJyNGZ2e9l1A== stream-browserify@^2.0.1: version "2.0.2" @@ -15216,16 +13427,7 @@ string-width@^1.0.1: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string-width@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.0.0.tgz#5a1690a57cc78211fffd9bf24bbe24d090604eb1" - integrity sha512-rr8CUxBbvOZDUvc5lNIJ+OC1nPVpz+Siw9VBtUjB9b6jZehZLFt0JMCZzShFHIsI8cbhm0EsNIfWJMFV3cu3Ew== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.0.0" - -string-width@^3.1.0: +string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== @@ -15234,7 +13436,7 @@ string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string-width@^4.0.0: +string-width@^4.0.0, string-width@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== @@ -15243,15 +13445,6 @@ string-width@^4.0.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -string-width@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.1.0.tgz#ba846d1daa97c3c596155308063e075ed1c99aff" - integrity sha512-NrX+1dVVh+6Y9dnQ19pR0pP4FiEIlUvdTGn8pw6CKTNq5sgib2nIhmUNT5TAmhWmvKr3WcxBcP3E8nWezuipuQ== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^5.2.0" - "string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" @@ -15319,20 +13512,13 @@ string.prototype.trimstart@^1.0.0: define-properties "^1.1.3" es-abstract "^1.17.5" -string_decoder@^1.0.0: +string_decoder@^1.0.0, string_decoder@^1.1.1: version "1.3.0" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" -string_decoder@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" - integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== - dependencies: - safe-buffer "~5.1.0" - string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -15340,7 +13526,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -strip-ansi@5.2.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: +strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== @@ -15361,13 +13547,6 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz#f78f68b5d0866c20b2c9b8c61b5298508dc8756f" - integrity sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow== - dependencies: - ansi-regex "^4.0.0" - strip-ansi@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" @@ -15405,9 +13584,9 @@ strip-json-comments@2.0.1, strip-json-comments@~2.0.1: integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= strip-json-comments@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" - integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== + version "3.1.0" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" + integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== stubs@^3.0.0: version "3.0.0" @@ -15423,9 +13602,9 @@ style-loader@^1.0.0: schema-utils "^2.6.6" sudo-prompt@^9.0.0: - version "9.1.1" - resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.1.1.tgz#73853d729770392caec029e2470db9c221754db0" - integrity sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA== + version "9.2.1" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" + integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== supports-color@6.0.0: version "6.0.0" @@ -15478,9 +13657,9 @@ symbol-observable@^1.2.0: integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== symbol-tree@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" - integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== symbol.prototype.description@^1.0.0: version "1.0.2" @@ -15491,9 +13670,9 @@ symbol.prototype.description@^1.0.0: has-symbols "^1.0.1" table@^5.2.3: - version "5.4.5" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.5.tgz#c8f4ea2d8fee08c0027fac27b0ec0a4fe01dfa42" - integrity sha512-oGa2Hl7CQjfoaogtrOHEJroOcYILTx7BZWLGsJIlzoWmB2zmguhNfPJZsWPKYek/MgCxfco54gEi31d1uN2hFA== + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== dependencies: ajv "^6.10.2" lodash "^4.17.14" @@ -15501,28 +13680,15 @@ table@^5.2.3: string-width "^3.0.0" tail@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/tail/-/tail-2.0.2.tgz#86073f3a9a568807b7fd886897a7350314275b5f" - integrity sha512-raFipiKWdGKEzxbvZwnhUGqjvsv0gpa/1A479rL//NOxnNwYZDN4MPk6xJJdUFs8P2Xrff3nbH5fcyYRLU4UHQ== + version "2.0.3" + resolved "https://registry.yarnpkg.com/tail/-/tail-2.0.3.tgz#37567adc4624a70b35f1d146c3376fa3d6ef7c04" + integrity sha512-s9NOGkLqqiDEtBttQZI7acLS8ycYK5sTlDwNjGnpXG9c8AWj0cfAtwEIzo/hVRMMiC5EYz+bXaJWC1u1u0GPpQ== tapable@^1.0.0, tapable@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tar@^4: - version "4.4.8" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" - integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== - dependencies: - chownr "^1.1.1" - fs-minipass "^1.2.5" - minipass "^2.3.4" - minizlib "^1.1.1" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.2" - teeny-request@6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-6.0.1.tgz#9b1f512cef152945827ba7e34f62523a4ce2c5b0" @@ -15612,9 +13778,9 @@ terser-webpack-plugin@^2.1.2: webpack-sources "^1.4.3" terser@^4.1.2, terser@^4.6.12, terser@^4.6.3: - version "4.6.13" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.13.tgz#e879a7364a5e0db52ba4891ecde007422c56a916" - integrity sha512-wMvqukYgVpQlymbnNbabVZbtM6PN63AzqexpwJL8tbh/mRT9LE5o+ruVduAGL7D6Fpjl+Q+06U5I9Ul82odAhw== + version "4.7.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006" + integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw== dependencies: commander "^2.20.0" source-map "~0.6.1" @@ -15782,16 +13948,7 @@ topo@2.x.x: dependencies: hoek "4.x.x" -tough-cookie@>=2.3.3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.0.tgz#d2bceddebde633153ff20a52fa844a0dc71dacef" - integrity sha512-LHMvg+RBP/mAVNqVbOX8t+iJ+tqhBA/t49DuI7+IDAWHrASnesqSu1vWbKB7UrE2yk+HMFUBMadRGMkB4VCfog== - dependencies: - ip-regex "^3.0.0" - psl "^1.1.28" - punycode "^2.1.1" - -tough-cookie@^2.3.4: +tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== @@ -15799,14 +13956,6 @@ tough-cookie@^2.3.4: psl "^1.1.28" punycode "^2.1.1" -tough-cookie@~2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" - integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== - dependencies: - psl "^1.1.24" - punycode "^1.4.1" - tr46@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" @@ -15841,15 +13990,10 @@ ts-pnp@^1.1.2: resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== -tslib@^1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" - integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== - -tslib@^1.9.0, tslib@^1.9.3: - version "1.9.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" - integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== +tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3: + version "1.13.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" + integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== tty-browserify@0.0.0: version "0.0.0" @@ -15875,16 +14019,21 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" -type-fest@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2" - integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw== +type-fest@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" + integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== +type-fest@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== + type-fest@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" @@ -15927,12 +14076,7 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" -ua-parser-js@^0.7.18: - version "0.7.19" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz#94151be4c0a7fb1d001af7022fdaca4642659e4b" - integrity sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ== - -ua-parser-js@^0.7.21: +ua-parser-js@^0.7.18, ua-parser-js@^0.7.21: version "0.7.21" resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz#853cf9ce93f642f67174273cc34565ae6f308777" integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ== @@ -15946,12 +14090,11 @@ uglify-es@^3.1.9: source-map "~0.6.1" uglify-js@^3.1.4: - version "3.4.9" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" - integrity sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q== + version "3.9.3" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.3.tgz#4a285d1658b8a2ebaef9e51366b3a0f7acd79ec2" + integrity sha512-r5ImcL6QyzQGVimQoov3aL2ZScywrOgBXGndbWrdehKoSvGe/RmiE5Jpw/v+GvxODt6l2tpBXwA7n+qZVlHBMA== dependencies: - commander "~2.17.1" - source-map "~0.6.1" + commander "~2.20.3" uid-safe@^2.0.0: version "2.1.5" @@ -15971,9 +14114,9 @@ ultron@~1.1.0: integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== underscore@^1.8.3: - version "1.9.1" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" - integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== + version "1.10.2" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.10.2.tgz#73d6aa3668f3188e4adb0f1943bd12cfd7efaaaf" + integrity sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg== unfetch@^4.1.0: version "4.1.0" @@ -15993,20 +14136,15 @@ unicode-match-property-ecmascript@^1.0.4: unicode-canonical-property-names-ecmascript "^1.0.4" unicode-property-aliases-ecmascript "^1.0.4" -unicode-match-property-value-ecmascript@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4" - integrity sha512-Rx7yODZC1L/T8XKo/2kNzVAQaRE88AaMvI1EF/Xnj3GW2wzN6fop9DDWuFAKUVFH7vozkz26DzP0qyWLKLIVPQ== - unicode-match-property-value-ecmascript@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== unicode-property-aliases-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" - integrity sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg== + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" + integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== unimodules-app-loader@~1.0.2: version "1.0.2" @@ -16064,14 +14202,14 @@ unimodules-task-manager-interface@~5.1.0: integrity sha512-t7FSWOdw4ev9SlqPzfw9rOKlFyryZbrcmjEr0n6HtPXqZ4NRfPqXtYSjoVWswGb3iGr3GPOIHZ/OQ6Z6StL1NA== union-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" - integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== dependencies: arr-union "^3.1.0" get-value "^2.0.6" is-extendable "^0.1.1" - set-value "^0.4.3" + set-value "^2.0.1" uniq@^1.0.1: version "1.0.1" @@ -16148,7 +14286,7 @@ url-loader@^2.0.1: mime "^2.4.4" schema-utils "^2.5.0" -url-parse@^1.4.3, url-parse@^1.4.7: +url-parse@^1.4.3, url-parse@^1.4.4, url-parse@^1.4.7: version "1.4.7" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== @@ -16156,14 +14294,6 @@ url-parse@^1.4.3, url-parse@^1.4.7: querystringify "^2.1.1" requires-port "^1.0.0" -url-parse@^1.4.4: - version "1.4.4" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8" - integrity sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg== - dependencies: - querystringify "^2.0.0" - requires-port "^1.0.0" - url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" @@ -16199,10 +14329,10 @@ use-sidecar@^1.0.1: detect-node "^2.0.4" tslib "^1.9.3" -use-subscription@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.3.0.tgz#3df13a798e826c8d462899423293289a3362e4e6" - integrity sha512-buZV7FUtnbOr+65dN7PHK7chHhQGfk/yjgqfpRLoWuHIAc4klAD/rdot2FsPNtFthN1ZydvA8tR/mWBMQ+/fDQ== +use-subscription@^1.0.0, use-subscription@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" + integrity sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ== dependencies: object-assign "^4.1.1" @@ -16228,7 +14358,7 @@ util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= -util.promisify@1.0.0, util.promisify@^1.0.0: +util.promisify@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== @@ -16236,6 +14366,16 @@ util.promisify@1.0.0, util.promisify@^1.0.0: define-properties "^1.1.2" object.getownpropertydescriptors "^2.0.3" +util.promisify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" + integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.2" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.0" + util@0.10.3: version "0.10.3" resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" @@ -16265,20 +14405,15 @@ uuid@^2.0.3: resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= -uuid@^3.0.1, uuid@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" - integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== - -uuid@^3.4.0: +uuid@^3.0.1, uuid@^3.3.2, uuid@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== v8-compile-cache@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" - integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== + version "2.1.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" + integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== validate-npm-package-license@^3.0.1: version "3.0.4" @@ -16313,11 +14448,11 @@ vm-browserify@^1.0.1: integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== w3c-hr-time@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" - integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== dependencies: - browser-process-hrtime "^0.1.2" + browser-process-hrtime "^1.0.0" walker@^1.0.7, walker@~1.0.5: version "1.0.7" @@ -16326,14 +14461,7 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" -warning@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" - integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w= - dependencies: - loose-envify "^1.0.0" - -warning@^4.0.2: +warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== @@ -16348,14 +14476,23 @@ watch@~0.18.0: exec-sh "^0.2.0" minimist "^1.2.0" -watchpack@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2" - integrity sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA== +watchpack-chokidar2@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" + integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== dependencies: chokidar "^2.1.8" + +watchpack@^1.6.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" + integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== + dependencies: graceful-fs "^4.1.2" neo-async "^2.5.0" + optionalDependencies: + chokidar "^3.4.0" + watchpack-chokidar2 "^2.0.0" wcwidth@^1.0.1: version "1.0.1" @@ -16483,9 +14620,9 @@ whatwg-url@^6.4.1: webidl-conversions "^4.0.2" whatwg-url@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" @@ -16555,16 +14692,11 @@ word-wrap@~1.2.3: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== -wordwrap@^1.0.0, wordwrap@~1.0.0: +wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= - worker-farm@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" @@ -16620,9 +14752,9 @@ write-file-atomic@^1.2.0: slide "^1.1.5" write-file-atomic@^2.1.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9" - integrity sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g== + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: graceful-fs "^4.1.11" imurmurhash "^0.1.4" @@ -16660,14 +14792,14 @@ ws@^5.2.0: async-limiter "~1.0.0" ws@^7: - version "7.2.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.5.tgz#abb1370d4626a5a9cd79d8de404aa18b3465d10d" - integrity sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA== + version "7.3.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd" + integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w== xcode@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/xcode/-/xcode-2.0.0.tgz#134f1f94c26fbfe8a9aaa9724bfb2772419da1a2" - integrity sha512-5xF6RCjAdDEiEsbbZaS/gBRt3jZ/177otZcpoLCjGN/u1LrfgH7/Sgeeavpr/jELpyDqN2im3AKosl2G2W8hfw== + version "2.1.0" + resolved "https://registry.yarnpkg.com/xcode/-/xcode-2.1.0.tgz#bab64a7e954bb50ca8d19da7e09531c65a43ecfe" + integrity sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ== dependencies: simple-plist "^1.0.0" uuid "^3.3.2" @@ -16718,9 +14850,9 @@ xmldoc@^1.1.2: sax "^1.2.1" xmldom@0.1.x: - version "0.1.27" - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" - integrity sha1-1QH5ezvbQDr4757MIFcxh6rawOk= + version "0.1.31" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" + integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== xpipe@^1.0.5: version "1.0.5" @@ -16744,16 +14876,11 @@ xss-filters@^1.2.6: resolved "https://registry.yarnpkg.com/xss-filters/-/xss-filters-1.2.7.tgz#59fa1de201f36f2f3470dcac5f58ccc2830b0a9a" integrity sha1-Wfod4gHzby80cNysX1jMwoMLCpo= -xtend@^4.0.0: +xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -xtend@^4.0.1, xtend@~4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" - integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= - y18n@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" @@ -16769,10 +14896,10 @@ yallist@^2.1.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= -yallist@^3.0.0, yallist@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" - integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== yallist@^4.0.0: version "4.0.0" @@ -16780,13 +14907,11 @@ yallist@^4.0.0: integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.7.2: - version "1.9.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.9.2.tgz#f0cfa865f003ab707663e4f04b3956957ea564ed" - integrity sha512-HPT7cGGI0DuRcsO51qC1j9O16Dh1mZ2bnXwsi0jrSpsLz0WxOLSLXfkABVl6bZO629py3CU+OMJtpNHDLB97kg== - dependencies: - "@babel/runtime" "^7.9.2" + version "1.10.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" + integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== -yargs-parser@13.1.2, yargs-parser@^13.1.2: +yargs-parser@13.1.2, yargs-parser@^13.0.0, yargs-parser@^13.1.2: version "13.1.2" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== @@ -16802,22 +14927,6 @@ yargs-parser@^11.1.1: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^13.0.0: - version "13.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" - integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^13.1.0, yargs-parser@^13.1.1: - version "13.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" - integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - yargs-parser@^15.0.1: version "15.0.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" @@ -16842,7 +14951,7 @@ yargs-unparser@1.6.0: lodash "^4.17.15" yargs "^13.3.0" -yargs@13.3.2: +yargs@13.3.2, yargs@^13.0.0, yargs@^13.2.2, yargs@^13.3.0: version "13.3.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== @@ -16859,15 +14968,15 @@ yargs@13.3.2: yargs-parser "^13.1.2" yargs@^11.0.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" - integrity sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A== + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.1.tgz#5052efe3446a4df5ed669c995886cc0f13702766" + integrity sha512-PRU7gJrJaXv3q3yQZ/+/X6KBswZiaQ+zOmdprZcouPYtQgvNU35i+68M4b1ZHLZtYFT5QObFLV+ZkmJYcwKdiw== dependencies: cliui "^4.0.0" decamelize "^1.1.1" find-up "^2.1.0" get-caller-file "^1.0.1" - os-locale "^2.0.0" + os-locale "^3.1.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" @@ -16894,56 +15003,6 @@ yargs@^12.0.5: y18n "^3.2.1 || ^4.0.0" yargs-parser "^11.1.1" -yargs@^13.0.0: - version "13.2.4" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" - integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - os-locale "^3.1.0" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.0" - -yargs@^13.2.2: - version "13.2.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" - integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== - dependencies: - cliui "^4.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - os-locale "^3.1.0" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.0.0" - -yargs@^13.3.0: - version "13.3.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" - integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.1" - yargs@^14.2.0: version "14.2.3" resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414"